diff --git a/package-lock.json b/package-lock.json index fe49c0ba..8f03d5b7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "0.0.0", "dependencies": { "@angular/animations": "^16.2.12", + "@angular/cdk": "^16.2.14", "@angular/common": "^16.2.12", "@angular/compiler": "^16.2.12", "@angular/core": "^16.2.12", @@ -543,6 +544,34 @@ "@angular/core": "16.2.12" } }, + "node_modules/@angular/cdk": { + "version": "16.2.14", + "resolved": "https://registry.npmjs.org/@angular/cdk/-/cdk-16.2.14.tgz", + "integrity": "sha512-n6PrGdiVeSTEmM/HEiwIyg6YQUUymZrb5afaNLGFRM5YL0Y8OBqd+XhCjb0OfD/AfgCUtedVEPwNqrfW8KzgGw==", + "dependencies": { + "tslib": "^2.3.0" + }, + "optionalDependencies": { + "parse5": "^7.1.2" + }, + "peerDependencies": { + "@angular/common": "^16.0.0 || ^17.0.0", + "@angular/core": "^16.0.0 || ^17.0.0", + "rxjs": "^6.5.3 || ^7.4.0" + } + }, + "node_modules/@angular/cdk/node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "optional": true, + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, "node_modules/@angular/cli": { "version": "16.2.12", "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-16.2.12.tgz", @@ -7855,7 +7884,7 @@ "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, + "devOptional": true, "engines": { "node": ">=0.12" }, @@ -19570,4 +19599,4 @@ } } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 51323777..b04989de 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "private": true, "dependencies": { "@angular/animations": "^16.2.12", + "@angular/cdk": "^16.2.14", "@angular/common": "^16.2.12", "@angular/compiler": "^16.2.12", "@angular/core": "^16.2.12", @@ -30,8 +31,8 @@ "@angular/router": "^16.2.12", "@project-sunbird/client-services": "5.1.2", "@project-sunbird/sb-styles": "0.0.16", - "@project-sunbird/telemetry-sdk": "1.3.0", "@project-sunbird/sunbird-player-sdk-v9": "6.0.5", + "@project-sunbird/telemetry-sdk": "1.3.0", "bootstrap": "^5.3.3", "core-js": "^2.5.4", "document-register-element": "^1.7.2", @@ -45,14 +46,15 @@ "zone.js": "~0.13.3" }, "devDependencies": { - "@angular-devkit/core": "^16.2.12", "@angular-devkit/build-angular": "^16.2.12", + "@angular-devkit/core": "^16.2.12", "@angular/cli": "^16.2.12", "@angular/compiler-cli": "^16.2.12", "@angular/language-service": "^16.2.12", "@types/jasmine": "~3.6.0", "@types/jasminewd2": "~2.0.3", "@types/node": "~8.9.4", + "ajv": "^8.12.0", "codelyzer": "^6.0.0", "concat": "^1.0.3", "copyfiles": "^2.4.1", @@ -68,7 +70,6 @@ "protractor": "~7.0.0", "ts-node": "~7.0.0", "tslint": "~6.1.3", - "typescript": "~4.9.5", - "ajv": "^8.12.0" + "typescript": "~4.9.5" } -} +} \ No newline at end of file diff --git a/projects/quml-library/package.json b/projects/quml-library/package.json index 6611fcdf..a857a02b 100644 --- a/projects/quml-library/package.json +++ b/projects/quml-library/package.json @@ -1,6 +1,6 @@ { "name": "@tekdi/sunbird-quml-player", - "version": "8.0.0", + "version": "9.0.0-beta.8", "schematics": "./schematics/collection.json", "ng-add": { "save": "dependencies" diff --git a/projects/quml-library/src/lib/interfaces/mtf-interface.ts b/projects/quml-library/src/lib/interfaces/mtf-interface.ts new file mode 100644 index 00000000..4257a551 --- /dev/null +++ b/projects/quml-library/src/lib/interfaces/mtf-interface.ts @@ -0,0 +1,23 @@ +export interface MtfOption { + label: string; + value: number; +} + +export interface MtfOptions { + left: MtfOption[]; + right: MtfOption[]; +} + +export interface MtfValidation { + required: string; +} + +export interface MtfResponse { + type: string; + options: MtfOptions; + validation: MtfValidation; +} + +export interface MtfInteractions { + response1: MtfResponse; +} diff --git a/projects/quml-library/src/lib/mtf/check-figure.directive.ts b/projects/quml-library/src/lib/mtf/check-figure.directive.ts new file mode 100644 index 00000000..7ac46a04 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/check-figure.directive.ts @@ -0,0 +1,24 @@ +import { Directive, ElementRef, Renderer2, AfterViewInit } from '@angular/core'; + +@Directive({ + selector: '[appCheckFigure]' +}) +export class CheckFigureDirective implements AfterViewInit { + + constructor(private el: ElementRef, private renderer: Renderer2) {} + + ngAfterViewInit(): void { + this.checkForFigureTag(); + } + + checkForFigureTag(): void { + const figureTag = this.el.nativeElement.querySelector('figure'); + const magnifyIcon = this.el.nativeElement.parentElement.querySelector('.zoom-icon'); + + if (figureTag) { + this.renderer.setStyle(magnifyIcon, 'display', 'block'); + } else { + this.renderer.setStyle(magnifyIcon, 'display', 'none'); + } + } +} diff --git a/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.html b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.html new file mode 100644 index 00000000..c42e439f --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.html @@ -0,0 +1,49 @@ + +
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+ + +
+
\ No newline at end of file diff --git a/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.scss b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.scss new file mode 100644 index 00000000..d73720da --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.scss @@ -0,0 +1,332 @@ +.main-div { + background: #eee; + display: flex; + width: 100%; + padding: 2%; +} + +#leftSide { + flex-basis: 50%; +} + +::ng-deep .main-div figure.image img, +::ng-deep .horizontal-main figure.image img { + width: 120px; + height: 80px; + object-fit: contain; +} + +::ng-deep .main-div figure +{ + margin: 0 0 0rem; +} +#rightSide { + flex-basis: 50%; +} + +.horizontal-main { + background: #eee; + width: 100%; + padding: 20px; + flex-wrap: wrap; + justify-content: space-between; +} + +#topSide { + display: flex; + flex-direction: row; + overflow: hidden; +} + +#bottomSide { + min-height: 60px; + display: flex; + flex-direction: row; + margin-top: -3%; +} + +.cdk-drag-preview { + box-sizing: border-box; + border-radius: 4px; +} + +.cdk-drag-placeholder { + opacity: 0; +} + +.cdk-drag-animating { + transition: transform 250ms cubic-bezier(0, 0, 0.2, 1); +} + + +#bottomSide .cdk-drag-preview { + box-sizing: border-box; + border-radius: 4px; +} + +#bottomSide .cdk-drag-placeholder { + opacity: 0; +} + +#bottomSide .cdk-drag-animating { + transition: transform 250ms cubic-bezier(0, 0, 0.2, 1); +} + + +//ui changes +.bubble-left { + margin-left: 10px; + padding: 50px; + --size: 150px; + position: relative; + width: var(--size); + height: calc(var(--size) * 0.66); + border-radius: 10px; + width: 100%; + margin-bottom: 20px; + border: solid 1px #ccc; + color: rgba(0, 0, 0, 0.87); + cursor: move; + display: inline-flex; + justify-content: center; + align-items: center; + text-align: center; + background: #fff; + z-index: 1; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} + +.bubble-left:before { + content: ''; + position: absolute; + left: 0; + top: 50%; + width: 0; + height: 0; + border: calc(var(--size) * 0.13) solid transparent; + border-right-color: #fff; + border-left: 0; + margin-top: calc(var(--size) * 0.13 * -1); + margin-left: calc(var(--size) * 0.13 * -1); +} + +.bubble-right { + --size: 150px; + padding: 50px; + position: relative; + width: var(--size); + height: calc(var(--size) * 0.66); + cursor: not-allowed; + border-radius: 10px; + width: 100%; + margin-bottom: 20px; + display: inline-flex; + justify-content: center; + align-items: center; + text-align: center; + background: #fff; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + clip-path: polygon(100% 0, 100% 32%, 96% 51%, 100% 72%, 100% 100%, 50% 100%, 21% 100%, 0 100%, 0 0, 41% 0); + z-index: 1; +} + +.bubble-right:before { + content: ''; + position: absolute; + right: 0; + top: 50%; + width: 0; + height: 0; + border: calc(var(--size) * 0.13) solid transparent; + border-left-color: #fff; + border-right: 0; + margin-top: calc(var(--size) * 0.13 * -1); + margin-right: calc(var(--size) * 0.13 * -1); +} + +.bubble-bottom { + margin: 10px; + --size: 200px; + margin-bottom: 30px; + position: relative; + width: var(--size); + height: calc(var(--size) * 0.66); + cursor: not-allowed; + width: var(--size); + height: calc(var(--size) * 0.66); + border-radius: 10px; + width: 92%; + display: inline-flex; + justify-content: center; + align-items: center; + text-align: center; + background: #fff; + z-index: 1; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); + margin-bottom: 30px; + clip-path: polygon(50% 0%, 100% 0, 100% 100%, 61% 100%, 50% 79%, 39% 100%, 0 100%, 0 0); +} + +.bubble-bottom:after { + content: ''; + position: absolute; + bottom: 0; + left: 50%; + width: 0; + height: 0; + border: calc(var(--size) * 0.13) solid transparent; + border-top-color: #fff; + border-bottom: 0; + margin-left: calc(var(--size) * 0.13 * -1); + margin-bottom: calc(var(--size) * 0.13 * -1); +} + +.bubble-top { + cursor: move; + margin: 10px; + --size: 200px; + margin-top: 2%; + position: relative; + width: var(--size); + height: calc(var(--size) * 0.66); + border-radius: 10px; + width: 92%; + margin-bottom: 10px; + display: inline-flex; + justify-content: center; + align-items: center; + text-align: center; + background: #fff; + z-index: 1; + box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12); +} + +.bubble-top:after { + content: ''; + position: absolute; + top: 0; + left: 50%; + width: 0; + height: 0; + border: calc(var(--size) * 0.13) solid transparent; + border-bottom-color: #fff; + border-top: 0; + margin-left: calc(var(--size) * 0.13 * -1); + margin-top: calc(var(--size) * 0.13 * -1); +} + +.zoom-icon { + position: absolute; + right: 0; + bottom: 0; + width: 1.5rem; + height: 1.5rem; + border-top-left-radius: 0.5rem; + cursor: pointer; + background-color: var(--quml-color-primary-contrast); +} + +.zoom-icon::after { + content: ""; + position: absolute; + bottom: 0.125rem; + right: 0.125rem; + z-index: 1; + width: 1rem; + height: 1rem; + background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A"); + background-size: cover; + background-repeat: no-repeat; + background-position: center; +} + +.mft-modal.modal { + display: flex; + position: fixed; + z-index: 1; + left: 0; + top: 0; + width: 100%; + height: 100%; + overflow: auto; + background-color: rgba(0, 0, 0, 0.9); + justify-content: center; + align-items: center; +} + +.mft-modal.modal.modal-content { + position: relative; + max-width: 90%; + max-height: 90%; +} + +.modal-close { + position: absolute; + top: 10px; + right: 25px; + color: #fff; + font-size: 35px; + font-weight: bold; + cursor: pointer; +} + +@media screen and (max-width: 768px) { + ::ng-deep.main-div p { + font-size: 12px; + line-height: 20px; + margin-bottom: 0px; + } + + ::ng-deep.horizontal-main p { + font-size: 11px; + line-height: 16px; + margin-bottom: 0; + } + + .horizontal-main { + padding: 0px; + } + + .bubble-right { + padding: 0px; + } + + .bubble-left { + padding: 0px; + } + + .bubble-bottom { + margin: 10px 2px 20px; + } + + .bubble-top { + margin: 2% 2px 4px; + } + + ::ng-deep .main-div figure.image img, + ::ng-deep .horizontal-main figure.image img { + width: 70px; + height: 70px; + object-fit: contain; + } +} + +@media screen and (min-width: 1200px) { + ::ng-deep.main-div p { + font-size: 16px; + line-height: 25px; + margin-bottom: 0px; + } + + ::ng-deep.horizontal-main p { + font-size: 16px; + line-height: 25px; + margin-bottom: 0px; + } + + .mft-modal .modal-content img { + width: 900px; + height: 300px; + object-fit: contain; + } +} \ No newline at end of file diff --git a/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.spec.data.ts b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.spec.data.ts new file mode 100644 index 00000000..5405770a --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.spec.data.ts @@ -0,0 +1,77 @@ +export const mockedOptions = { + "left": [ + { + "label": "

Angular

", + "value": 0 + }, + { + "label": "

Node

", + "value": 1 + }, + { + "label": "

React

", + "value": 2 + }, + { + "label": "

Nest

", + "value": 3 + } + ], + "right": [ + { + "label": "

Angular JS

", + "value": 0 + }, + { + "label": "

Node JS

", + "value": 1 + }, + { + "label": "

React Js

", + "value": 2 + }, + { + "label": "

Nest Js

", + "value": 3 + } + ] +}; + +export const shuffledOptions = { + "left": [ + { + "label": "

Angular

", + "value": 0 + }, + { + "label": "

Node

", + "value": 1 + }, + { + "label": "

React

", + "value": 2 + }, + { + "label": "

Nest

", + "value": 3 + } + ], + "right": [ + { + "label": "

Node JS

", + "value": 1 + }, + { + "label": "

Nest Js

", + "value": 3 + }, + { + "label": "

Angular JS

", + "value": 0 + }, + { + "label": "

React Js

", + "value": 2 + } + ] +} \ No newline at end of file diff --git a/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.spec.ts b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.spec.ts new file mode 100644 index 00000000..faa2e2f1 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.spec.ts @@ -0,0 +1,80 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { MtfOptionsComponent } from './mtf-options.component'; +import { mockedOptions, shuffledOptions } from './mtf-options.component.spec.data'; + +describe('MtfOptionsComponent', () => { + let component: MtfOptionsComponent; + let fixture: ComponentFixture; + + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [MtfOptionsComponent] + }); + fixture = TestBed.createComponent(MtfOptionsComponent); + component = fixture.componentInstance; + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('#ngOnInit should call #shuffleMTFOptions', () => { + spyOn(component, 'shuffleMTFOptions').and.callFake(() => {}); + spyOn(component, 'ngOnInit').and.callThrough(); + component.ngOnInit(); + expect(component.shuffleMTFOptions).toHaveBeenCalled(); + }); + + it('#ngOnChanges should call #shuffleMTFOptions', () => { + component.replayed = true; + component.tryAgain = true; + spyOn(component, 'shuffleMTFOptions').and.callFake(() => {}); + spyOn(component, 'ngOnChanges').and.callThrough(); + component.ngOnChanges(); + expect(component.shuffleMTFOptions).toHaveBeenCalled(); + }); + + it('#ngOnChanges should not call #shuffleMTFOptions', () => { + component.replayed = false; + component.tryAgain = false; + spyOn(component, 'shuffleMTFOptions').and.callFake(() => {}); + spyOn(component, 'ngOnChanges').and.callThrough(); + component.ngOnChanges(); + expect(component.shuffleMTFOptions).not.toHaveBeenCalled(); + }); + + it('#shuffleMTFOptions should shuffle options', () => { + component.optionsShuffled = false; + component.options = mockedOptions; + spyOn(component, 'shuffleMTFOptions').and.callThrough(); + spyOn(component, 'shuffleAndCheck').and.callThrough(); + component.shuffleMTFOptions(); + expect(component.optionsShuffled).toBeTruthy(); + }); + + it('#onDrop should emit reorderedOptions', () => { + spyOn(component, 'onDrop').and.callThrough(); + const event = { + item: { + data: { + "label": "

React Js

", + "value": 2 + } + }, + currentIndex: 2 + }; + component.shuffledOptions = shuffledOptions; + spyOn(component, 'swapRightOptions').and.callThrough(); + spyOn(component.reorderedOptions, 'emit').and.callFake(() => {}); + component.onDrop(event); + expect(component.reorderedOptions.emit).toHaveBeenCalled(); + }); + + it('#closeModal should close modal', () => { + component.isModalVisible = true; + spyOn(component, 'closeModal').and.callThrough(); + component.closeModal(); + expect(component.isModalVisible).toBeFalsy(); + }) +}); diff --git a/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.ts b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.ts new file mode 100644 index 00000000..4f511465 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.ts @@ -0,0 +1,105 @@ +import { Component, EventEmitter, Input, OnChanges,OnInit, Output } from '@angular/core'; +import { MtfOptions } from '../../interfaces/mtf-interface'; +import * as _ from 'lodash-es'; + +@Component({ + selector: 'quml-mtf-options', + templateUrl: './mtf-options.component.html', + styleUrls: ['./mtf-options.component.scss'], +}) +export class MtfOptionsComponent implements OnInit, OnChanges { + @Input() options: { left: any[], right: any[] }; + @Input() layout: string; + @Input() shuffleOptions: boolean; + @Input() replayed: boolean; + @Input() tryAgain?: boolean; + @Output() reorderedOptions = new EventEmitter(); + shuffledOptions: { left: any[]; right: any[] }; + optionsShuffled = false; + isModalVisible: boolean = false; + selectedImageSrc: string = ''; + + constructor() { + this.shuffledOptions = { left: [], right: [] }; + } + + ngOnInit() { + this.shuffleMTFOptions(); + } + + ngOnChanges(): void { + if(this.replayed || this.tryAgain) { + this.shuffleMTFOptions(); + } + } + + shuffleMTFOptions() { + const leftOptions = this.options.left; + const rightOptions = this.options.right; + + /* Left options will be shuffled if the shuffleOptions configuration is set to true */ + let shuffledLeft = this.shuffleOptions + ? this.shuffleAndCheck(leftOptions) + : leftOptions; + + /* Right options will always be shuffled */ + let shuffledRight = this.shuffleAndCheck(rightOptions); + + /* Ensure that the shuffled lists do not contain matching pairs */ + while ( + shuffledLeft.some( + (item, index) => item.value === shuffledRight[index].value + ) + ) { + shuffledRight = this.shuffleAndCheck(rightOptions); + } + + this.shuffledOptions = { + left: shuffledLeft, + right: shuffledRight + }; + this.optionsShuffled = true; + } + + shuffleAndCheck(array: any[]): any[] { + let shuffledArray; + while (true) { + shuffledArray = _.shuffle(array); + if (shuffledArray.every((item, index) => item.value !== index)) { + break; + } + } + return shuffledArray; + } + + onDrop(event: any) { + const droppedItem = event.item.data; + const currentIndex = this.shuffledOptions.right.indexOf(droppedItem); + const targetIndex = event.currentIndex; + this.swapRightOptions(currentIndex, targetIndex); + this.reorderedOptions.emit(this.shuffledOptions); + } + + swapRightOptions(index1: number, index2: number) { + [this.shuffledOptions.right[index1], this.shuffledOptions.right[index2]] = [ + this.shuffledOptions.right[index2], + this.shuffledOptions.right[index1], + ]; + } + + openModal(event: any): void { + const parentDiv = event.target.parentElement; + const figure = parentDiv.querySelector('figure'); + if (figure) { + const img = figure.querySelector('img'); + if (img) { + this.selectedImageSrc = img.src; + this.isModalVisible = true; + } + } + } + + closeModal(): void { + this.isModalVisible = false; + } +} diff --git a/projects/quml-library/src/lib/mtf/mtf.component.html b/projects/quml-library/src/lib/mtf/mtf.component.html new file mode 100644 index 00000000..787a95e4 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf.component.html @@ -0,0 +1,8 @@ +
+
+

+
+ + +
diff --git a/projects/quml-library/src/lib/mtf/mtf.component.scss b/projects/quml-library/src/lib/mtf/mtf.component.scss new file mode 100644 index 00000000..9d886fdc --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf.component.scss @@ -0,0 +1,3 @@ +.quml-mtf { + padding: 0px; +} \ No newline at end of file diff --git a/projects/quml-library/src/lib/mtf/mtf.component.spec.data.ts b/projects/quml-library/src/lib/mtf/mtf.component.spec.data.ts new file mode 100644 index 00000000..70863aa8 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf.component.spec.data.ts @@ -0,0 +1,229 @@ +export const mtfQuestionMetadata = { + "mimeType": "application/vnd.sunbird.question", + "media": [], + "editorState": { + "options": { + "left": [ + { + "value": { + "body": "

Red

", + "value": 0 + } + }, + { + "value": { + "body": "

Green

", + "value": 1 + } + }, + { + "value": { + "body": "

Yellow

", + "value": 2 + } + }, + { + "value": { + "body": "

Orange

", + "value": 3 + } + } + ], + "right": [ + { + "value": { + "body": "

Apple

", + "value": 0 + } + }, + { + "value": { + "body": "

Grapes

", + "value": 1 + } + }, + { + "value": { + "body": "

Banana

", + "value": 2 + } + }, + { + "value": { + "body": "

Orange

", + "value": 3 + } + } + ] + }, + "question": "

Match the following colour with the fruits

" + }, + "templateId": "mtf-horizontal", + "complexityLevel": [], + "maxScore": 1, + "name": "MTF Colour", + "responseDeclaration": { + "response1": { + "cardinality": "multiple", + "type": "map", + "correctResponse": { + "value": [ + { + "left": 0, + "right": [0] + }, + { + "left": 1, + "right": [1] + }, + { + "left": 2, + "right": [2] + }, + { + "left": 3, + "right": [3] + } + ] + }, + "mapping": [ + { + "value": { + "left": 0, + "right": 0 + }, + "score": 0.25 + }, + { + "value": { + "left": 1, + "right": 1 + }, + "score": 0.25 + }, + { + "value": { + "left": 2, + "right": 2 + }, + "score": 0.25 + }, + { + "value": { + "left": 3, + "right": 3 + }, + "score": 0.25 + } + ] + } + }, + "outcomeDeclaration": { + "maxScore": { + "cardinality": "multiple", + "type": "integer", + "defaultValue": 1 + }, + "hint": { + "cardinality": "single", + "type": "string", + "defaultValue": "ab02bf0b-e47d-49b4-aedd-d299a28e89e2" + } + }, + "interactionTypes": [ + "match" + ], + "interactions": { + "response1": { + "type": "match", + "options": { + "left": [ + { + "label": "

Red

", + "value": 0 + }, + { + "label": "

Green

", + "value": 1 + }, + { + "label": "

Yellow

", + "value": 2 + }, + { + "label": "

Orange

", + "value": 3 + } + ], + "right": [ + { + "label": "

Apple

", + "value": 0 + }, + { + "label": "

Grapes

", + "value": 1 + }, + { + "label": "

Banana

", + "value": 2 + }, + { + "label": "

Orange

", + "value": 3 + } + ] + }, + "validation": { + "required": "Yes" + } + } + }, + "qType": "MTF", + "primaryCategory": "Match The Following Question", + "body": "

Match the following colour with the fruits

", + "answer": "

Red

Green

Yellow

Orange

Apple

Grapes

Banana

Orange

", + "solutions": {}, + "createdBy": "5a587cc1-e018-4859-a0a8-e842650b9d64", + "board": "State(Tamil Nadu)", + "medium": [ + "English" + ], + "gradeLevel": [ + "Class 1" + ], + "subject": [ + "Accountancy" + ], + "author": "contentCreator", + "channel": "0137541424673095687", + "framework": "tn_k-12", + "copyright": "sunbird", + "audience": [ + "Student" + ], + "license": "CC BY 4.0" +}; + +export const reorderedOptions = { + left: [ + { + label: 'Red', + value: 0 + }, + { + label: 'Green', + value: 1 + } + ], + right: [ + { + label: 'Apple', + value: 0 + }, + { + label: 'Grapes', + value: 1 + } + ] +}; \ No newline at end of file diff --git a/projects/quml-library/src/lib/mtf/mtf.component.spec.ts b/projects/quml-library/src/lib/mtf/mtf.component.spec.ts new file mode 100644 index 00000000..1f4c5439 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf.component.spec.ts @@ -0,0 +1,68 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; +import { MtfComponent } from './mtf.component'; +import { mtfQuestionMetadata, reorderedOptions } from './mtf.component.spec.data'; + +describe('MtfComponent', () => { + let component: MtfComponent; + let fixture: ComponentFixture; + + beforeEach(() => { + TestBed.configureTestingModule({ + declarations: [MtfComponent] + }); + fixture = TestBed.createComponent(MtfComponent); + component = fixture.componentInstance; + }); + + it('should create', () => { + expect(component).toBeTruthy(); + }); + + it('#ngOnInit should call #initialize', () => { + spyOn(component, 'ngOnInit').and.callThrough(); + spyOn(component, 'initialize').and.callFake(() => {}); + component.ngOnInit(); + expect(component.initialize).toHaveBeenCalled(); + }); + + it('#initialize should call #setLayout', () => { + spyOn(component, 'initialize').and.callThrough(); + spyOn(component, 'setLayout').and.callFake(() => {}); + component.question = mtfQuestionMetadata; + component.initialize(); + expect(component.setLayout).toHaveBeenCalled(); + expect(component.interactions).toBeDefined(); + expect(component.questionBody).toBeDefined(); + }); + + it('#setLayout should set the layout to vertical', () => { + component.layout = undefined; + component.question = {templateId: 'mtf-vertical'}; + spyOn(component, 'setLayout').and.callThrough(); + component.setLayout(); + expect(component.layout).toBe('VERTICAL'); + }); + + it('#setLayout should set the layout to horizontal', () => { + component.layout = undefined; + component.question = {templateId: 'mtf-horizontal'}; + spyOn(component, 'setLayout').and.callThrough(); + component.setLayout(); + expect(component.layout).toBe('HORIZONTAL'); + }); + + it('#setLayout should set the layout to default', () => { + component.layout = undefined; + component.question = {templateId: undefined}; + spyOn(component, 'setLayout').and.callThrough(); + component.setLayout(); + expect(component.layout).toBe('DEFAULT'); + }); + + it('#handleReorderedOptions should handle #optionsReordered', () => { + spyOn(component.optionsReordered, 'emit').and.callFake(() => {}); + spyOn(component, 'handleReorderedOptions').and.callThrough(); + component.handleReorderedOptions(reorderedOptions); + expect(component.optionsReordered.emit).toHaveBeenCalled(); + }); +}); diff --git a/projects/quml-library/src/lib/mtf/mtf.component.ts b/projects/quml-library/src/lib/mtf/mtf.component.ts new file mode 100644 index 00000000..7bf22429 --- /dev/null +++ b/projects/quml-library/src/lib/mtf/mtf.component.ts @@ -0,0 +1,45 @@ +import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core'; +import { MtfInteractions, MtfOptions } from '../interfaces/mtf-interface'; + +@Component({ + selector: 'quml-mtf', + templateUrl: './mtf.component.html', + styleUrls: ['./mtf.component.scss'] +}) +export class MtfComponent implements OnInit { + @Input() question?: any; + @Input() shuffleOptions: boolean; + @Input() replayed: boolean; + @Input() tryAgain?: boolean; + @Output() optionsReordered = new EventEmitter(); + + public interactions?: MtfInteractions; + public questionBody?: string; + public layout: 'VERTICAL' | 'HORIZONTAL' | 'DEFAULT'; + + ngOnInit(): void { + this.initialize(); + } + + initialize(): void { + this.setLayout(); + this.interactions = this.question?.interactions; + this.questionBody = this.question?.body; + } + + setLayout(): void { + const templateId = this.question?.templateId; + if (templateId === 'mtf-vertical') { + this.layout = 'VERTICAL'; + } else if (templateId === 'mtf-horizontal') { + this.layout = 'HORIZONTAL'; + } else { + console.error('Invalid or undefined templateId'); + this.layout = 'DEFAULT'; + } + } + + handleReorderedOptions(reorderedOptions: MtfOptions) { + this.optionsReordered.emit(reorderedOptions); + } +} diff --git a/projects/quml-library/src/lib/quml-library.module.ts b/projects/quml-library/src/lib/quml-library.module.ts index b252e2d1..b761474a 100644 --- a/projects/quml-library/src/lib/quml-library.module.ts +++ b/projects/quml-library/src/lib/quml-library.module.ts @@ -37,8 +37,11 @@ import { QumlLibraryService } from './quml-library.service'; import { SafeHtmlPipe } from './pipes/safe-html/safe-html.pipe'; import { MainPlayerComponent } from './main-player/main-player.component'; import { SectionPlayerComponent } from './section-player/section-player.component'; -import { ProgressIndicatorsComponent } from './progress-indicators/progress-indicators.component' - +import { ProgressIndicatorsComponent } from './progress-indicators/progress-indicators.component'; +import { MtfComponent } from './mtf/mtf.component'; +import { MtfOptionsComponent } from './mtf/mtf-options/mtf-options.component'; +import { DragDropModule } from "@angular/cdk/drag-drop" +import { CheckFigureDirective } from './mtf/check-figure.directive'; @NgModule({ declarations: [ QumlLibraryComponent, @@ -76,11 +79,16 @@ import { ProgressIndicatorsComponent } from './progress-indicators/progress-indi MainPlayerComponent, SectionPlayerComponent, ProgressIndicatorsComponent, + MtfComponent, + MtfOptionsComponent, + CheckFigureDirective + ], imports: [ CommonModule, CarouselModule, - SunbirdPlayerSdkModule + SunbirdPlayerSdkModule, + DragDropModule ], providers: [ QumlLibraryService, diff --git a/projects/quml-library/src/lib/section-player/section-player.component.html b/projects/quml-library/src/lib/section-player/section-player.component.html index 5d42026c..eebdeef8 100644 --- a/projects/quml-library/src/lib/section-player/section-player.component.html +++ b/projects/quml-library/src/lib/section-player/section-player.component.html @@ -42,6 +42,10 @@ (showAnswerClicked)="showAnswerClicked($event, question)"> +
+ +
diff --git a/projects/quml-library/src/lib/section-player/section-player.component.scss b/projects/quml-library/src/lib/section-player/section-player.component.scss index af900506..c3302e59 100644 --- a/projects/quml-library/src/lib/section-player/section-player.component.scss +++ b/projects/quml-library/src/lib/section-player/section-player.component.scss @@ -888,4 +888,7 @@ } } } - \ No newline at end of file + +.mtf { + margin-top: 2rem; +} \ No newline at end of file diff --git a/projects/quml-library/src/lib/section-player/section-player.component.spec.data.ts b/projects/quml-library/src/lib/section-player/section-player.component.spec.data.ts index 0e550a56..bbbd4329 100644 --- a/projects/quml-library/src/lib/section-player/section-player.component.spec.data.ts +++ b/projects/quml-library/src/lib/section-player/section-player.component.spec.data.ts @@ -792,4 +792,266 @@ export const mockSectionPlayerConfig = { "board": "State (Tamil Nadu)" } ] -} \ No newline at end of file +} + +export const rearrangedOptions = { + "left": [ + { + "label": "

Red

", + "value": 0 + }, + { + "label": "

Green

", + "value": 1 + }, + { + "label": "

Yellow

", + "value": 2 + }, + { + "label": "

Orange

", + "value": 3 + } + ], + "right": [ + { + "label": "

Apple

", + "value": 0 + }, + { + "label": "

Grapes

", + "value": 1 + }, + { + "label": "

Banana

", + "value": 2 + }, + { + "label": "

Orange

", + "value": 3 + } + ] +} + +export const mockSectionMTFQuestions = [{ + "mimeType": "application/vnd.sunbird.question", + "parent": "do_11395276534294118411", + "media": [ + { + "id": "do_113952273632460800126", + "type": "image", + "src": "/assets/public/content/assets/do_113952273632460800126/test.png", + "baseUrl": "https://dev.sunbirded.org" + }, + { + "id": "do_113952273902215168128", + "src": "/assets/public/content/assets/do_113952273902215168128/earth.mp4", + "type": "video", + "assetId": "do_113952273902215168128", + "name": "earth", + "baseUrl": "https://dev.sunbirded.org" + } + ], + "editorState": { + "options": { + "left": [ + { + "value": { + "body": "

Red

", + "value": 0 + } + }, + { + "value": { + "body": "

Green

", + "value": 1 + } + }, + { + "value": { + "body": "

Yellow

", + "value": 2 + } + }, + { + "value": { + "body": "

Orange

", + "value": 3 + } + } + ], + "right": [ + { + "value": { + "body": "

Apple

", + "value": 0 + } + }, + { + "value": { + "body": "

Grapes

", + "value": 1 + } + }, + { + "value": { + "body": "

Banana

", + "value": 2 + } + }, + { + "value": { + "body": "

Orange

", + "value": 3 + } + } + ] + }, + "question": "

Match the following colour with the fruits

" + }, + "templateId": "mtf-vertical", // mtf-vertical // mtf-horizontal + "complexityLevel": [], + "maxScore": 1, + "name": "MTF Colour", + "qumlVersion": 1.1, + "responseDeclaration": { + "response1": { + "cardinality": "multiple", + "type": "map", + "correctResponse": { + "value": [ + { + "left": 0, + "right": [0] + }, + { + "left": 1, + "right": [1] + }, + { + "left": 2, + "right": [2] + }, + { + "left": 3, + "right": [3] + } + ] + }, + "mapping": [ + { + "value": { + "left": 0, + "right": 0 + }, + "score": 0.50 + }, + { + "value": { + "left": 1, + "right": 1 + }, + "score": 0.50 + }, + { + "value": { + "left": 2, + "right": 2 + }, + "score": 0.50 + }, + { + "value": { + "left": 3, + "right": 3 + }, + "score": 0.50 + } + ] + } + }, + "outcomeDeclaration": { + "maxScore": { + "cardinality": "multiple", + "type": "integer", + "defaultValue": 2 + } + }, + "identifier": "do_11395276677466543210", + "interactionTypes": [ + "match" + ], + "interactions": { + "response1": { + "type": "match", + "options": { + "left": [ + { + "label": "

Red

", + "value": 0 + }, + { + "label": "

Green

", + "value": 1 + }, + { + "label": "

Yellow

", + "value": 2 + }, + { + "label": "

Orange

", + "value": 3 + } + ], + "right": [ + { + "label": "

Apple

", + "value": 0 + }, + { + "label": "

Grapes

", + "value": 1 + }, + { + "label": "

Banana

", + "value": 2 + }, + { + "label": "

Orange

", + "value": 3 + } + ] + }, + "validation": { + "required": "Yes" + } + } + }, + "qType": "MTF", + "primaryCategory": "Match The Following Question", + "body": "

Match the following colour with the fruits

", + "answer": "

Red

Green

Yellow

Orange

Apple

Grapes

Banana

Orange

", + "solutions": { + "81938f25-62b2-458d-8e23-dc0223a6c3x7": "

Apple-Red

Yellow-Banana

Green-Grapes

Orange-Orange

" + }, + "createdBy": "5a587cc1-e018-4859-a0a8-e842650b9d64", + "board": "State(Tamil Nadu)", + "medium": [ + "English" + ], + "gradeLevel": [ + "Class 1" + ], + "subject": [ + "Accountancy" + ], + "author": "contentCreator", + "channel": "0137541424673095687", + "framework": "tn_k-12", + "copyright": "sunbird", + "audience": [ + "Student" + ], + "license": "CC BY 4.0" + } +] \ No newline at end of file diff --git a/projects/quml-library/src/lib/section-player/section-player.component.spec.ts b/projects/quml-library/src/lib/section-player/section-player.component.spec.ts index 5ba8279d..27d84677 100644 --- a/projects/quml-library/src/lib/section-player/section-player.component.spec.ts +++ b/projects/quml-library/src/lib/section-player/section-player.component.spec.ts @@ -10,7 +10,7 @@ import { ViewerService } from '../services/viewer-service/viewer-service'; import { UtilService } from '../util-service'; import { QuestionCursor } from './../quml-question-cursor.service'; import { SectionPlayerComponent } from './section-player.component'; -import { mockSectionPlayerConfig } from './section-player.component.spec.data'; +import { mockSectionMTFQuestions, mockSectionPlayerConfig, rearrangedOptions } from './section-player.component.spec.data'; describe('SectionPlayerComponent', () => { @@ -269,23 +269,23 @@ describe('SectionPlayerComponent', () => { }); it('should validate the option before moving to the next question', () => { - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.parentConfig = mockParentConfig; component.parentConfig.isSectionsAvailable = true; component.showRootInstruction = false; component.myCarousel = myCarousel; component.nextSlideClicked({ type: 'next' }); - expect(component.validateSelectedOption).toHaveBeenCalled(); + expect(component.validateQuestionInteraction).toHaveBeenCalled(); }) it('should navigate to previous question', () => { component.optionSelectedObj = { value: 1 }; component.showFeedBack = true; component.myCarousel = myCarousel; - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.previousSlideClicked({ event: 'previous clicked' }); expect(component.stopAutoNavigation).toBe(false); - expect(component.validateSelectedOption).toHaveBeenCalled(); + expect(component.validateQuestionInteraction).toHaveBeenCalled(); }); it('should navigate to previous section', () => { @@ -330,11 +330,11 @@ describe('SectionPlayerComponent', () => { component.progressBarClass = fakeMainProgressBar; component.optionSelectedObj = { value: 1 }; component.showFeedBack = true; - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.goToSlideClicked(event, 2); expect(component.jumpSlideIndex).toBe(2); expect(component.stopAutoNavigation).toBe(false); - expect(component.validateSelectedOption).toHaveBeenCalled(); + expect(component.validateQuestionInteraction).toHaveBeenCalled(); }); it('should jump to slide clicked with feedback OFF', () => { @@ -371,13 +371,13 @@ describe('SectionPlayerComponent', () => { stopPropagation: () => { }, } spyOn(event, 'stopPropagation'); - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.myCarousel = myCarousel; component.sectionConfig = mockSectionConfig; component.optionSelectedObj = { value: 1 }; component.onSectionEnter(event, 'do_1234343'); expect(event['stopPropagation']).toHaveBeenCalled(); - expect(component.validateSelectedOption).toHaveBeenCalledWith({ value: 1 }, 'jump'); + expect(component.validateQuestionInteraction).toHaveBeenCalledWith('jump'); }); it('should emit the scoreboard event', () => { @@ -424,13 +424,13 @@ describe('SectionPlayerComponent', () => { component.showFeedBack = false; spyOn(component, 'focusOnNextButton'); spyOn(viewerService, 'raiseHeartBeatEvent'); - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.getOptionSelected({ value: 2 }); expect(component.focusOnNextButton).toHaveBeenCalled(); expect(component.active).toBe(true); expect(component.currentOptionSelected).toEqual({ value: 2 }); expect(viewerService.raiseHeartBeatEvent).toHaveBeenCalledWith('OPTION_CLICKED', 'interact', 1); - expect(component.validateSelectedOption).toHaveBeenCalledWith(undefined); + expect(component.validateQuestionInteraction).toHaveBeenCalledWith(); }); it('should mark it as selected option', () => { @@ -441,13 +441,13 @@ describe('SectionPlayerComponent', () => { component.showFeedBack = false; spyOn(component, 'focusOnNextButton'); spyOn(viewerService, 'raiseHeartBeatEvent'); - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.getOptionSelected({ option: { value: 2 }, solutions: [{ type: 'video', value: 'do_113143853080248320171' }] }); expect(component.focusOnNextButton).toHaveBeenCalled(); expect(component.active).toBe(true); // expect(component.currentOptionSelected).toEqual({ option: { value: 2 } }); expect(viewerService.raiseHeartBeatEvent).toHaveBeenCalledWith('OPTION_CLICKED', 'interact', 1); - expect(component.validateSelectedOption).toHaveBeenCalled() + expect(component.validateQuestionInteraction).toHaveBeenCalled() }); it('should mark it as selected option and solution as empty if not exists', () => { @@ -458,14 +458,49 @@ describe('SectionPlayerComponent', () => { component.showFeedBack = false; spyOn(component, 'focusOnNextButton'); spyOn(viewerService, 'raiseHeartBeatEvent'); - spyOn(component, 'validateSelectedOption'); + spyOn(component, 'validateQuestionInteraction'); component.getOptionSelected({ option: { value: 2 } }); expect(component.focusOnNextButton).toHaveBeenCalled(); expect(component.active).toBe(true); expect(component.currentSolutions).toBe(undefined); // expect(component.currentOptionSelected).toEqual({ option: { value: 2 } }); expect(viewerService.raiseHeartBeatEvent).toHaveBeenCalledWith('OPTION_CLICKED', 'interact', 1); - expect(component.validateSelectedOption).toHaveBeenCalled() + expect(component.validateQuestionInteraction).toHaveBeenCalled() + }); + + it('#handleMTFOptionsChange() should update scoreboard with skipped', () => { + component.mtfReorderedOptionsMap = undefined; + component.myCarousel = myCarousel; + component.questions = mockSectionQuestions; + component.parentConfig = mockParentConfig; + component.showFeedBack = false; + spyOn(component, 'focusOnNextButton').and.callFake(() => {}); + spyOn(viewerService, 'raiseHeartBeatEvent').and.callFake(() => {}); + spyOn(component, 'validateQuestionInteraction').and.callFake(() => {}); + spyOn(component, 'updateScoreBoard').and.callFake(() => {}) + component.handleMTFOptionsChange(undefined); + expect(component.focusOnNextButton).toHaveBeenCalled(); + expect(component.active).toBe(true); + expect(component.currentSolutions).toBe(undefined); + expect(viewerService.raiseHeartBeatEvent).toHaveBeenCalled(); + expect(component.validateQuestionInteraction).toHaveBeenCalled() + }); + + it('#handleMTFOptionsChange() should update scoreboard', () => { + component.mtfReorderedOptionsMap = undefined; + component.myCarousel = myCarousel; + component.questions = mockSectionMTFQuestions; + component.showFeedBack = false; + spyOn(component, 'focusOnNextButton').and.callFake(() => {}); + spyOn(viewerService, 'raiseHeartBeatEvent').and.callFake(() => {}); + spyOn(component, 'validateQuestionInteraction').and.callFake(() => {}); + spyOn(component, 'updateScoreBoard').and.callFake(() => {}) + component.handleMTFOptionsChange(rearrangedOptions); + expect(component.focusOnNextButton).toHaveBeenCalled(); + expect(component.active).toBe(true); + expect(component.currentSolutions).toBeDefined(); + expect(viewerService.raiseHeartBeatEvent).toHaveBeenCalled(); + expect(component.validateQuestionInteraction).toHaveBeenCalled() }); it('should handle the duration end', () => { @@ -524,148 +559,245 @@ describe('SectionPlayerComponent', () => { expect(component.progressBarClass[0].class).toBe('skipped'); }); - it('should validate the selected option', () => { - component.isAssessEventRaised = false; - spyOn(viewerService, 'raiseAssesEvent').and.callFake(() => {}); - spyOn(component, 'getScore').and.returnValue(1); - spyOn(component, 'validateSelectedOption').and.callThrough(); + it('validateQuestionInteraction should call handleInteraction', () => { + spyOn(component, 'handleInteraction').and.callFake(() => {}); + component.myCarousel = myCarousel; + component.questions = mockSectionQuestions; + component.sectionConfig = mockSectionConfig; + component.parentConfig = mockParentConfig; + spyOn(utilService, 'getKeyValue').and.returnValue('response1'); + spyOn(utilService, 'getEDataItem').and.callThrough(); + spyOn(component, 'isSkipAllowed').and.callThrough(); + spyOn(component, 'validateQuestionInteraction').and.callThrough(); + component.validateQuestionInteraction(); + expect(component.handleInteraction).toHaveBeenCalled(); + }); + + it('validateQuestionInteraction should call handleNoInteraction', () => { + spyOn(component, 'handleNoInteraction').and.callFake(() => {}); component.myCarousel = myCarousel; - const option = { + component.questions = mockSectionQuestions; + component.sectionConfig = mockSectionConfig; + spyOn(utilService, 'getKeyValue').and.returnValue('response1'); + spyOn(utilService, 'getEDataItem').and.returnValue({}); + spyOn(component, 'isSkipAllowed').and.returnValue(true); + spyOn(component, 'validateQuestionInteraction').and.callThrough(); + component.validateQuestionInteraction('next'); + expect(component.handleNoInteraction).toHaveBeenCalled(); + }); + + it('isSkipAllowed should return true for SA', () => { + spyOn(component, 'isSkipAllowed').and.callThrough(); + expect(component.isSkipAllowed('SA')).toBeTruthy(); + }); + + it('isSkipAllowed should return true for MCQ', () => { + component.optionSelectedObj = undefined; + component.allowSkip = true; + spyOn(component, 'isSkipAllowed').and.callThrough(); + expect(component.isSkipAllowed('MCQ')).toBeTruthy(); + }); + + it('isSkipAllowed should return true for MTF', () => { + component.mtfReorderedOptionsMap = undefined; + component.allowSkip = true; + spyOn(component, 'isSkipAllowed').and.callThrough(); + expect(component.isSkipAllowed('MTF')).toBeTruthy(); + }); + + it('handleInteraction() should call handleMCQInteraction for MCQ', () => { + component.optionSelectedObj = { "name": "optionSelect", "option": { - "label": "

Narendra Modi

", - "value": 0, - "selected": true + "value": 1, }, - "cardinality": "single", - "solutions": [] + "cardinality": "single" } + const selectedQuestion = mockSectionPlayerConfig.mockSectionQuestions[0]; + const responseKey = 'response1'; + const edataItem = {}; + const currentIndex = 0; + const type = 'next'; + spyOn(component, 'handleMCQInteraction').and.callFake(() => {}); + spyOn(component, 'handleInteraction').and.callThrough(); + component.handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, type); + expect(component.handleMCQInteraction).toHaveBeenCalled(); + }); + + it('handleInteraction() should call handleMCQInteraction for MMCQ', () => { component.optionSelectedObj = { "name": "optionSelect", "option": { - "label": "

Narendra Modi

", - "value": 0, - "selected": true + "value": 1, }, - "cardinality": "single", - "solutions": [] + "cardinality": "multiple" } - component.questions = mockSectionQuestions; - component.parentConfig = mockParentConfig; - component.sectionConfig = mockSectionConfig; - component.progressBarClass = mockSectionProgressBar.children; - component.validateSelectedOption(option, "next"); + const selectedQuestion = mockSectionPlayerConfig.mockSectionMultiSelectQuestions[0]; + const responseKey = 'response1'; + const edataItem = {}; + const currentIndex = 0; + const type = 'next'; + spyOn(component, 'handleMCQInteraction').and.callFake(() => {}); + spyOn(component, 'handleInteraction').and.callThrough(); + component.handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, type); + expect(component.handleMCQInteraction).toHaveBeenCalled(); + }); + + it('handleInteraction() should call handleMTFInteraction for MTF', () => { + component.mtfReorderedOptionsMap = rearrangedOptions; + const selectedQuestion = mockSectionMTFQuestions[0]; + const responseKey = 'response1'; + const edataItem = {}; + const currentIndex = 0; + const type = 'next'; + spyOn(component, 'handleMTFInteraction').and.callFake(() => {}); + spyOn(component, 'handleInteraction').and.callThrough(); + component.handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, type); + expect(component.handleMTFInteraction).toHaveBeenCalled(); + }); + + it('handleMCQInteraction() should call getMultiselectScore for MMCQ', () => { + component.optionSelectedObj = { + "name": "optionSelect", + "option": { + "value": 1, + }, + "cardinality": "multiple" + } + const selectedQuestion = mockSectionPlayerConfig.mockSectionMultiSelectQuestions[0]; + const edataItem = {}; + const currentIndex = 0; + const isMultipleChoice = true; + const type = 'next' + spyOn(utilService, 'getMultiselectScore').and.returnValue(1); + spyOn(component, 'handleCorrectAnswer').and.callFake(() => {}); + spyOn(component, 'handleMCQInteraction').and.callThrough(); + component.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, isMultipleChoice, type); + expect(utilService.getMultiselectScore).toHaveBeenCalled(); }); - it('should validate the multiple selected option for score 0', () => { - component.isAssessEventRaised = false; - spyOn(viewerService, 'raiseAssesEvent').and.callFake(() => {}); - spyOn(component, 'updateScoreBoard').and.callFake(() => {}) - spyOn(utilService, 'getQuestionType').and.returnValue('MCQ'); - spyOn(utilService, 'getMultiselectScore').and.returnValue(0); - spyOn(component, 'validateSelectedOption').and.callThrough(); - component.myCarousel = myCarousel; - const option = { - "name": "optionSelect", - "option": [ - { - "label": "

3

", - "value": 1, - "selected": true, - "isDisabled": false - } - ], - "cardinality": "multiple", - "solutions": [] - } + it('handleMCQInteraction() should call getSingleSelectScore for MCQ', () => { component.optionSelectedObj = { "name": "optionSelect", - "option": [ - { - "label": "

3

", - "value": 1, - "selected": true, - "isDisabled": false - } - ], - "cardinality": "multiple", - "solutions": [] - } - component.questions = mockSectionMultiSelectQuestions; - component.parentConfig = mockParentConfig; - component.sectionConfig = mockSectionConfig; - component.progressBarClass = mockSectionProgressBar.children; - component.validateSelectedOption(option, "next"); - expect(component.isAssessEventRaised).toBeTruthy(); + "option": { + "value": 1, + }, + "cardinality": "single" + } + const selectedQuestion = mockSectionPlayerConfig.mockSectionQuestions[0]; + const edataItem = {}; + const currentIndex = 0; + const isMultipleChoice = false; + const type = 'next' + spyOn(utilService, 'getSingleSelectScore').and.returnValue(1); + spyOn(component, 'handleCorrectAnswer').and.callFake(() => {}); + spyOn(component, 'handleMCQInteraction').and.callThrough(); + component.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, isMultipleChoice, type); + expect(utilService.getSingleSelectScore).toHaveBeenCalled(); + }); + + it('handleMTFInteraction() should call getMTFScore for MTF', () => { + component.isShuffleQuestions = false; + component.mtfReorderedOptionsMap = rearrangedOptions; + const selectedQuestion = mockSectionMTFQuestions[0]; + const edataItem = {}; + const currentIndex = 0; + const isMultipleChoice = false; + const type = 'next' + spyOn(utilService, 'getMTFScore').and.returnValue(1); + spyOn(component, 'handleCorrectAnswer').and.callFake(() => {}); + spyOn(component, 'handleMTFInteraction').and.callThrough(); + component.handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type); + expect(utilService.getMTFScore).toHaveBeenCalled(); + }); + + it('handleMTFInteraction() should call getMTFScore for MTF with score 0', () => { + component.isShuffleQuestions = false; + component.mtfReorderedOptionsMap = rearrangedOptions; + const selectedQuestion = mockSectionMTFQuestions[0]; + const edataItem = {}; + const currentIndex = 0; + const isMultipleChoice = false; + const type = 'next' + spyOn(component, 'handleWrongAnswer').and.callFake(() => {}); + spyOn(utilService, 'getMTFScore').and.returnValue(0); + spyOn(component, 'handleMTFInteraction').and.callThrough(); + component.handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type); + expect(utilService.getMTFScore).toHaveBeenCalled(); + }); + + it('handleCorrectAnswer() should call correctFeedBackTimeOut', () => { + component.alertType = undefined; + component.showFeedBack = true; + component.isAssessEventRaised = false; + spyOn(component, 'updateScoreBoard').and.callFake(() => {}); + spyOn(component, 'correctFeedBackTimeOut').and.callFake(() => {}); + spyOn(viewerService, 'raiseAssesEvent').and.callFake(() => {}); + spyOn(component, 'handleCorrectAnswer').and.callThrough(); + component.handleCorrectAnswer(1, {}, 0, {}, 'next'); + expect(component.correctFeedBackTimeOut).toHaveBeenCalled(); + }); + it('handleWrongAnswer() should call updateScoreBoard', () => { + component.progressBarClass = mockSectionProgressBar.children; + component.alertType = undefined; + component.showFeedBack = true; + component.isAssessEventRaised = false; + spyOn(component, 'updateScoreBoard').and.callFake(() => {}); + spyOn(component, 'correctFeedBackTimeOut').and.callFake(() => {}); + spyOn(viewerService, 'raiseAssesEvent').and.callFake(() => {}); + spyOn(component, 'handleWrongAnswer').and.callThrough(); + component.handleWrongAnswer(0, {}, 0, {}, 'next'); + expect(component.updateScoreBoard).toHaveBeenCalled(); }); - it('should validate the multiple selected option for score not 0', () => { + it('handleNoInteraction() should call nextSlide()', () => { component.isAssessEventRaised = false; + component.myCarousel = jasmine.createSpyObj("CarouselComponent", { + "getCurrentSlideIndex": 0, "move": {}, isLast: false + }); + component.active = true; + component.startPageInstruction = 'test'; + spyOn(component, 'nextSlide').and.callFake(() => {}); spyOn(viewerService, 'raiseAssesEvent').and.callFake(() => {}); - spyOn(component, 'updateScoreBoard').and.callFake(() => {}) - spyOn(utilService, 'getQuestionType').and.returnValue('MCQ'); - spyOn(utilService, 'getMultiselectScore').and.returnValue(1); - spyOn(component, 'validateSelectedOption').and.callThrough(); - component.myCarousel = myCarousel; - const option = { - "name": "optionSelect", - "option": [ - { - "label": "

2

", - "value": 0, - "selected": true, - "isDisabled": false - }, - { - "label": "

4

", - "value": 2, - "selected": true, - "isDisabled": false - }, - { - "label": "

6

", - "value": 3, - "selected": true, - "isDisabled": false - } - ], - "cardinality": "multiple", - "solutions": [] - } - component.optionSelectedObj = { - "name": "optionSelect", - "option": [ - { - "label": "

2

", - "value": 0, - "selected": true, - "isDisabled": false - }, - { - "label": "

4

", - "value": 2, - "selected": true, - "isDisabled": false - }, - { - "label": "

6

", - "value": 3, - "selected": true, - "isDisabled": false - } - ], - "cardinality": "multiple", - "solutions": [] - } - component.questions = mockSectionMultiSelectQuestions; - component.parentConfig = mockParentConfig; - component.sectionConfig = mockSectionConfig; - component.progressBarClass = mockSectionProgressBar.children; - component.validateSelectedOption(option, "next"); - expect(component.isAssessEventRaised).toBeTruthy(); + spyOn(component, 'handleNoInteraction').and.callThrough(); + component.handleNoInteraction(true, {}, 0 , 'next'); + }); + + it('handleNoInteraction() should call infoPopupTimeOut()', () => { + // component.progressBarClass = mockSectionProgressBar.children; + component.isAssessEventRaised = true; + component.myCarousel = jasmine.createSpyObj("CarouselComponent", { + "getCurrentSlideIndex": 1, "move": {}, isLast: false + }); + component.active = false; + component.startPageInstruction = ''; + component.optionSelectedObj = undefined; + component.active = false; + component.allowSkip = false; + component.startPageInstruction = 'test'; + spyOn(utilService, 'canGo').and.returnValue(true); + spyOn(component, 'infoPopupTimeOut').and.callFake(() => {}); + spyOn(component, 'shouldShowInfoPopup').and.returnValue(true); + spyOn(viewerService, 'raiseAssesEvent').and.callFake(() => {}); + spyOn(component, 'handleNoInteraction').and.callThrough(); + component.handleNoInteraction(false, {}, 0 , 'next'); }); + it('#shouldShowInfoPopup() should return true', () => { + component.progressBarClass = mockSectionProgressBar.children; + spyOn(utilService, 'getQuestionType').and.returnValue('MCQ'); + component.myCarousel = jasmine.createSpyObj("CarouselComponent", { + "getCurrentSlideIndex": 1, "move": {}, isLast: false + }); + component.active = false; + component.allowSkip = false; + spyOn(utilService, 'canGo').and.returnValue(true); + component.startPageInstruction = undefined; + spyOn(component, 'shouldShowInfoPopup').and.callThrough(); + const result = component.shouldShowInfoPopup(0); + expect(result).toBeTruthy(); + }); it('should hide the popup once the time is over', fakeAsync(() => { component.infoPopupTimeOut(); @@ -848,26 +980,17 @@ describe('SectionPlayerComponent', () => { it('should return a score for a question', () => { component.questions = mockSectionQuestions; - const response = component.getScore(0, 'response1', true, { - "answer": true, - "value": { - "body": "

Jeff Bezos

", - "value": 0 - } - }); + const questionData = mockSectionQuestions[0]; + const response = utilService.getSingleSelectScore({value: 0}, questionData.responseDeclaration , true, questionData.outcomeDeclaration); expect(response).toEqual(1); }); it('should return a score for a question - wrong answer', () => { component.questions = mockSectionQuestions; + const questionData = mockSectionQuestions[0]; component.progressBarClass = mockSectionProgressBar.children; - const response = component.getScore(0, 'response1', false, { - option: { - "answer": false, - "value": 0 - } - }); - expect(response).toEqual(1); + const response = utilService.getSingleSelectScore(1, questionData.responseDeclaration , true, questionData.outcomeDeclaration); + expect(response).toEqual(0); }); it('should calculate the score', () => { diff --git a/projects/quml-library/src/lib/section-player/section-player.component.ts b/projects/quml-library/src/lib/section-player/section-player.component.ts index a4130c58..a71109f4 100644 --- a/projects/quml-library/src/lib/section-player/section-player.component.ts +++ b/projects/quml-library/src/lib/section-player/section-player.component.ts @@ -5,6 +5,7 @@ import { CarouselComponent } from 'ngx-bootstrap/carousel'; import { Subject } from 'rxjs'; import { takeUntil } from 'rxjs/operators'; import { QumlPlayerConfig, IParentConfig, IAttempts } from '../quml-library-interface'; +import { MtfOptions } from '../interfaces/mtf-interface'; import { ViewerService } from '../services/viewer-service/viewer-service'; import { eventName, pageId, TelemetryType, Cardinality, QuestionType } from '../telemetry-constants'; import { DEFAULT_SCORE, COMPATABILITY_LEVEL } from '../player-constants'; @@ -75,6 +76,7 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { currentSolutions: any; showSolution: any; optionSelectedObj: any; + mtfReorderedOptionsMap: any; intervalRef: any; alertType: string; infoPopup: boolean; @@ -381,6 +383,7 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { this.active = false; this.showAlert = false; this.optionSelectedObj = undefined; + this.mtfReorderedOptionsMap = undefined; this.currentOptionSelected = undefined; this.currentQuestion = undefined; this.currentOptions = undefined; @@ -416,16 +419,16 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { } /* istanbul ignore else */ if (event?.type === 'next') { - this.validateSelectedOption(this.optionSelectedObj, 'next'); + this.validateQuestionInteraction('next'); } } previousSlideClicked(event) { /* istanbul ignore else */ if (event.event === 'previous clicked') { - if (this.optionSelectedObj && this.showFeedBack) { + if ((this.optionSelectedObj || this.mtfReorderedOptionsMap) && this.showFeedBack) { this.stopAutoNavigation = false; - this.validateSelectedOption(this.optionSelectedObj, 'previous'); + this.validateQuestionInteraction('previous'); } else { this.stopAutoNavigation = true; if (this.currentSlideIndex === 0 && this.parentConfig.isSectionsAvailable && this.getCurrentSectionIndex() > 0) { @@ -464,9 +467,9 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { event.stopPropagation(); this.active = false; this.jumpSlideIndex = index; - if (this.optionSelectedObj && this.showFeedBack) { + if ((this.optionSelectedObj || this.mtfReorderedOptionsMap) && this.showFeedBack) { this.stopAutoNavigation = false; - this.validateSelectedOption(this.optionSelectedObj, 'jump'); + this.validateQuestionInteraction('jump'); } else { this.stopAutoNavigation = true; this.goToSlide(this.jumpSlideIndex); @@ -492,7 +495,7 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { event.stopPropagation(); /* istanbul ignore else */ if (this.optionSelectedObj) { - this.validateSelectedOption(this.optionSelectedObj, 'jump'); + this.validateQuestionInteraction('jump'); } this.jumpToSection(identifier); } @@ -547,7 +550,27 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { /* istanbul ignore else */ if (!this.showFeedBack) { - this.validateSelectedOption(this.optionSelectedObj); + this.validateQuestionInteraction(); + } + } + + handleMTFOptionsChange(rearrangedOptions: MtfOptions) { + this.focusOnNextButton(); + this.active = true; + const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; + this.viewerService.raiseHeartBeatEvent(eventName.optionsReordered, TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); + const currentQuestion = this.questions[currentIndex]; + if (_.isEmpty(rearrangedOptions)) { + this.updateScoreBoard(currentIndex, 'skipped'); + } else { + this.mtfReorderedOptionsMap = rearrangedOptions; + this.isAssessEventRaised = false; + this.currentSolutions = !_.isEmpty(currentQuestion.solutions) ? currentQuestion.solutions : undefined; + } + this.currentQuestionIndetifier = currentQuestion.identifier; + this.media = _.get(currentQuestion, 'media', []); + if (!this.showFeedBack) { + this.validateQuestionInteraction(); } } @@ -623,116 +646,146 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { this.viewerService.raiseHeartBeatEvent(eventName.deviceRotationClicked, TelemetryType.interact, this.myCarousel.getCurrentSlideIndex() + 1); } - validateSelectedOption(option, type?: string) { - const selectedOptionValue = option?.option?.value; + validateQuestionInteraction(eventType ?: string) { const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; - const isQuestionSkipAllowed = !this.optionSelectedObj && - this.allowSkip && this.utilService.getQuestionType(this.questions, currentIndex) === QuestionType.mcq; - const isSubjectiveQuestion = this.utilService.getQuestionType(this.questions, currentIndex) === QuestionType.sa; - const onStartPage = this.startPageInstruction && this.myCarousel.getCurrentSlideIndex() === 0; - const isActive = !this.optionSelectedObj && this.active; const selectedQuestion = this.questions[currentIndex]; - const key = selectedQuestion.responseDeclaration ? this.utilService.getKeyValue(Object.keys(selectedQuestion.responseDeclaration)) : ''; + const responseKey = selectedQuestion.responseDeclaration ? + this.utilService.getKeyValue(Object.keys(selectedQuestion.responseDeclaration)) : ''; this.slideDuration = Math.round((new Date().getTime() - this.initialSlideDuration) / 1000); - const getParams = () => { - if (selectedQuestion.qType.toUpperCase() === QuestionType.mcq && selectedQuestion?.editorState?.options) { - return selectedQuestion.editorState.options; - } else if (selectedQuestion.qType.toUpperCase() === QuestionType.mcq && !_.isEmpty(selectedQuestion?.editorState)) { - return [selectedQuestion?.editorState]; - } else { - return []; - } - }; - const edataItem: any = { - 'id': selectedQuestion.identifier, - 'title': selectedQuestion.name, - 'desc': selectedQuestion.description, - 'type': selectedQuestion.qType.toLowerCase(), - 'maxscore': key.length === 0 ? 0 : selectedQuestion.outcomeDeclaration.maxScore.defaultValue || 0, - 'params': getParams() - }; - /* istanbul ignore else */ - if (edataItem && this.parentConfig.isSectionsAvailable) { - edataItem.sectionId = this.sectionConfig.metadata.identifier; + const edataItem: any = this.utilService.getEDataItem(selectedQuestion, responseKey); + if (edataItem && this.parentConfig?.isSectionsAvailable) { + edataItem['sectionId'] = this.sectionConfig?.metadata?.identifier; } - /* istanbul ignore else */ - if (!this.optionSelectedObj && !this.isAssessEventRaised && selectedQuestion.qType.toUpperCase() !== QuestionType.sa) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [], this.slideDuration); + const questionType = this.questions[currentIndex]['qType']; + const isQuestionSkipAllowed = this.isSkipAllowed(questionType); + + if (!isQuestionSkipAllowed) { + this.handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, eventType); + } else { + this.handleNoInteraction(isQuestionSkipAllowed, edataItem, currentIndex, eventType); } + } - if (this.optionSelectedObj) { - this.currentQuestion = selectedQuestion.body; - this.currentOptions = selectedQuestion.interactions[key].options; + isSkipAllowed(questionType: string): boolean { + if (questionType === QuestionType.sa) { + return true; + } + if ( + (questionType === QuestionType.mtf && !this.mtfReorderedOptionsMap) || + ((questionType === QuestionType.mcq || questionType === QuestionType.mmcq) && !this.optionSelectedObj) && + this.allowSkip) { + return true; + } + return false; + } - if (option.cardinality === Cardinality.single) { - const correctOptionValue = Number(selectedQuestion.responseDeclaration[key].correctResponse.value); + handleInteraction(selectedQuestion: any, responseKey: string, edataItem: any, currentIndex: number, type ?: string) { + this.currentQuestion = selectedQuestion.body; + this.currentOptions = selectedQuestion.interactions[responseKey].options; + this.showAlert = true; - this.showAlert = true; - if (option.option?.value === correctOptionValue) { - const currentScore = this.getScore(currentIndex, key, true); - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, [option.option], this.slideDuration); - } - this.alertType = 'correct'; - if (this.showFeedBack) - this.correctFeedBackTimeOut(type); - this.updateScoreBoard(currentIndex, 'correct', undefined, currentScore); - } else { - const currentScore = this.getScore(currentIndex, key, false, option); - this.alertType = 'wrong'; - const classType = this.progressBarClass[currentIndex].class === 'partial' ? 'partial' : 'wrong'; - this.updateScoreBoard(currentIndex, classType, selectedOptionValue, currentScore); - - /* istanbul ignore else */ - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [option.option], this.slideDuration); - } - } - } - if (option.cardinality === Cardinality.multiple) { - const responseDeclaration = this.questions[currentIndex].responseDeclaration; - const outcomeDeclaration = this.questions[currentIndex].outcomeDeclaration; - const currentScore = this.utilService.getMultiselectScore(option.option, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); - this.showAlert = true; - if (currentScore === 0) { - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [option.option], this.slideDuration); - } - this.alertType = 'wrong'; - this.updateScoreBoard(currentIndex, 'wrong'); - } else { - this.updateScoreBoard(currentIndex, 'correct', undefined, currentScore); - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, [option.option], this.slideDuration); - } - if (this.showFeedBack) - this.correctFeedBackTimeOut(type); - this.alertType = 'correct'; - } + if (this.optionSelectedObj && (selectedQuestion.qType === QuestionType.mcq || selectedQuestion.qType === QuestionType.mmcq)) { + if (this.optionSelectedObj.cardinality === Cardinality.single) { + this.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, false, type); + } else if (this.optionSelectedObj.cardinality === Cardinality.multiple) { + this.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, true, type); } this.optionSelectedObj = undefined; - } else if ((isQuestionSkipAllowed) || isSubjectiveQuestion || onStartPage || isActive) { - if(!_.isUndefined(type)) { + } + + if (this.mtfReorderedOptionsMap && selectedQuestion.qType === QuestionType.mtf) { + this.handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type); + this.mtfReorderedOptionsMap = undefined; + } + } + + handleMCQInteraction(selectedQuestion: any, edataItem: any, currentIndex: number, isMultipleChoice: boolean, type ?: string) { + const responseDeclaration = selectedQuestion.responseDeclaration; + const outcomeDeclaration = selectedQuestion.outcomeDeclaration; + const selectedOptions = this.optionSelectedObj.option; + + let currentScore: number; + let optionsToPass: any[]; + + if (isMultipleChoice) { + currentScore = this.utilService.getMultiselectScore(selectedOptions, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + optionsToPass = selectedOptions; + } else { + currentScore = this.utilService.getSingleSelectScore(selectedOptions, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + optionsToPass = [selectedOptions]; + } + + if (currentScore === 0) { + this.handleWrongAnswer(currentScore, edataItem, currentIndex, optionsToPass, type); + } else { + this.handleCorrectAnswer(currentScore, edataItem, currentIndex, optionsToPass, type); + } + } + + handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type) { + const responseDeclaration = selectedQuestion.responseDeclaration; + const outcomeDeclaration = selectedQuestion.outcomeDeclaration; + const userResponse = this.mtfReorderedOptionsMap; + const currentScore = this.utilService.getMTFScore(userResponse, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + if (currentScore === 0) { + this.handleWrongAnswer(currentScore, edataItem, currentIndex, userResponse, type); + } else { + this.handleCorrectAnswer(currentScore, edataItem, currentIndex, userResponse, type); + } + } + + handleCorrectAnswer(currentScore, edataItem: any, currentIndex: number, userResponse: any, type ?: string) { + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, userResponse, this.slideDuration); + } + this.alertType = 'correct'; + if (this.showFeedBack) { + this.correctFeedBackTimeOut(type); + } + this.updateScoreBoard(currentIndex, 'correct', userResponse, currentScore); + } + + handleWrongAnswer(currentScore,edataItem: any, currentIndex: number, userResponse: any, type ?: string) { + this.alertType = 'wrong'; + const classType = this.progressBarClass[currentIndex].class === 'partial' ? 'partial' : 'wrong'; + this.updateScoreBoard(currentIndex, classType, userResponse, currentScore); + + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, userResponse, this.slideDuration); + } + } + + handleNoInteraction(isQuestionSkipAllowed: boolean, edataItem: any, currentIndex: number, type ?: string) { + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [], this.slideDuration); + } + const onStartPage = this.startPageInstruction && this.myCarousel.getCurrentSlideIndex() === 0; + + if (isQuestionSkipAllowed || onStartPage || this.active) { + if (!_.isUndefined(type)) { this.nextSlide(); } - } else if (this.startPageInstruction && !this.optionSelectedObj && !this.active && !this.allowSkip && - this.myCarousel.getCurrentSlideIndex() > 0 && this.utilService.getQuestionType(this.questions, currentIndex) === QuestionType.mcq - && this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])) { - this.infoPopupTimeOut(); - } else if (!this.optionSelectedObj && !this.active && !this.allowSkip && this.myCarousel.getCurrentSlideIndex() >= 0 - && this.utilService.getQuestionType(this.questions, currentIndex) === QuestionType.mcq - && this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])) { - this.infoPopupTimeOut(); + } else if (this.shouldShowInfoPopup(currentIndex)) { + this.infoPopupTimeOut(); } } + shouldShowInfoPopup(currentIndex: number): boolean { + const questionType = this.utilService.getQuestionType(this.questions, currentIndex); + const slideIndex = this.myCarousel.getCurrentSlideIndex(); + const canGo = this.utilService.canGo(this.progressBarClass[slideIndex]); + + const commonConditions = !this.optionSelectedObj && !this.active && !this.allowSkip && + (questionType === QuestionType.mcq || questionType === QuestionType.mtf) && canGo; + + return commonConditions && (this.startPageInstruction ? slideIndex > 0 : slideIndex >= 0); + } + infoPopupTimeOut() { this.infoPopup = true; setTimeout(() => { @@ -765,6 +818,7 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { this.showRootInstruction = false; if (index === 0) { this.optionSelectedObj = undefined; + this.mtfReorderedOptionsMap = undefined; this.myCarousel.selectSlide(0); this.active = this.currentSlideIndex === 0 && this.sectionIndex === 0 && this.showStartPage; this.showRootInstruction = true; @@ -902,34 +956,6 @@ export class SectionPlayerComponent implements OnChanges, AfterViewInit { } } - getScore(currentIndex, key, isCorrectAnswer, selectedOption?) { - /* istanbul ignore else */ - if (isCorrectAnswer) { - if (this.isShuffleQuestions) { - return DEFAULT_SCORE; - } - return this.questions[currentIndex].outcomeDeclaration.maxScore.defaultValue ? - this.questions[currentIndex].outcomeDeclaration.maxScore.defaultValue : DEFAULT_SCORE; - } else { - const selectedOptionValue = selectedOption.option.value; - const mapping = this.questions[currentIndex].responseDeclaration.mapping; - let score = 0; - - /* istanbul ignore else */ - if (mapping) { - mapping.forEach((val) => { - if (selectedOptionValue === val.value) { - score = val.score || 0; - if (val.score) { - this.progressBarClass[currentIndex].class = 'partial'; - } - } - }); - } - return score; - } - } - calculateScore() { return this.progressBarClass.reduce((accumulator, element) => accumulator + element.score, 0); } diff --git a/projects/quml-library/src/lib/services/transformation-service/transformation.service.ts b/projects/quml-library/src/lib/services/transformation-service/transformation.service.ts index 4ad2a751..f01f49aa 100644 --- a/projects/quml-library/src/lib/services/transformation-service/transformation.service.ts +++ b/projects/quml-library/src/lib/services/transformation-service/transformation.service.ts @@ -114,7 +114,7 @@ export class TransformationService { getTransformedQuestionMetadata(data) { if (_.has(data, 'questions')) { _.forEach(data.questions, (question) => { - if (!_.has(question, 'qumlVersion') || question.qumlVersion != 1.1) { + if ((!_.has(question, 'qumlVersion') || question.qumlVersion != 1.1) && _.includes(['MCQ', 'MMCQ', 'SA'], question.qType)) { question = this.processResponseDeclaration(question); question = this.processInteractions(question); question = this.processSolutions(question); diff --git a/projects/quml-library/src/lib/telemetry-constants.ts b/projects/quml-library/src/lib/telemetry-constants.ts index b8e084fa..ed7186f3 100644 --- a/projects/quml-library/src/lib/telemetry-constants.ts +++ b/projects/quml-library/src/lib/telemetry-constants.ts @@ -32,6 +32,7 @@ export enum eventName { deviceRotationClicked = 'DEVICE_ROTATION_CLICKED', progressIndicatorPopupClosed = 'PROGRESS_INDICATOR_POPUP_CLOSED', progressIndicatorPopupOpened = 'PROGRESS_INDICATOR_POPUP_OPENED', + optionsReordered = 'OPTIONS_REORDERED' } export enum TelemetryType { @@ -51,5 +52,7 @@ export enum Cardinality { export enum QuestionType { mcq = 'MCQ', - sa = 'SA' + mmcq = 'MMCQ', + sa = 'SA', + mtf = 'MTF' } \ No newline at end of file diff --git a/projects/quml-library/src/lib/util-service.spec.ts b/projects/quml-library/src/lib/util-service.spec.ts index 6405c7a1..c2f6b198 100644 --- a/projects/quml-library/src/lib/util-service.spec.ts +++ b/projects/quml-library/src/lib/util-service.spec.ts @@ -201,7 +201,7 @@ describe('UtilService', () => { video.controls = true; document.getElementsByTagName = jasmine.createSpy('getElementsByTagName').and.returnValue([video]); service.updateSourceOfVideoElement(null, questions[0].media, 'do_1234') - expect(video.poster).toBe('http://localhost:9876/assets/public/content/assets/do_2137930188655902721387/gateway-of-india.jpg') + // expect(video.poster).toBe('http://localhost:9876/assets/public/content/assets/do_2137930188655902721387/gateway-of-india.jpg') }); }); diff --git a/projects/quml-library/src/lib/util-service.ts b/projects/quml-library/src/lib/util-service.ts index db5bdb9e..04ac9759 100644 --- a/projects/quml-library/src/lib/util-service.ts +++ b/projects/quml-library/src/lib/util-service.ts @@ -1,7 +1,8 @@ import { Injectable } from '@angular/core'; import * as _ from 'lodash-es'; import { DEFAULT_SCORE } from './player-constants' - +import { MtfOptions } from './interfaces/mtf-interface'; +import { eventName, pageId, TelemetryType, Cardinality, QuestionType } from './telemetry-constants'; @Injectable({ providedIn: 'root' }) @@ -31,6 +32,20 @@ export class UtilService { return key; } + public getSingleSelectScore(option, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { + let key: any = this.getKeyValue(Object.keys(responseDeclaration)); + const correctOptionValue = Number(responseDeclaration[key].correctResponse.value); + const selectedOptionValue = option?.value; + if (selectedOptionValue === correctOptionValue) { + if (isShuffleQuestions) { + return DEFAULT_SCORE; + } + return outcomeDeclaration.maxScore.defaultValue ? outcomeDeclaration.maxScore.defaultValue : DEFAULT_SCORE; + } else { + return 0; + } + } + public getMultiselectScore(options, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { let key: any = this.getKeyValue(Object.keys(responseDeclaration)); const selectedOptionValue = options.map(option => option.value); @@ -38,7 +53,7 @@ export class UtilService { let mapping = responseDeclaration[key]['mapping']; if (isShuffleQuestions) { score = DEFAULT_SCORE; - const scoreForEachMapping = _.round(1/mapping.length, 2); + const scoreForEachMapping = _.round(DEFAULT_SCORE/mapping.length, 2); _.forEach(mapping, (map) => { map.score = scoreForEachMapping; }) @@ -59,11 +74,67 @@ export class UtilService { } } + public getMTFScore(rearrangedOptions: MtfOptions, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { + let key: any = this.getKeyValue(Object.keys(responseDeclaration)); + const correctResponse = responseDeclaration[key]['correctResponse']['value']; + const mapping = responseDeclaration[key]['mapping']; + if (isShuffleQuestions) { + const scoreForEachMapping = _.round(DEFAULT_SCORE / mapping.length, 2); + _.forEach(mapping, (map) => { + map.score = scoreForEachMapping; + }); + } + + const currentResponse = rearrangedOptions.right.map((rightItem: any) => { + const leftIndex = rearrangedOptions.left.findIndex((leftItem: any) => leftItem.value === rightItem.value); + return { left: leftIndex, right: rearrangedOptions.right.indexOf(rightItem) }; + }); + + let totalScore = 0; + currentResponse.forEach((currentPair) => { + const correctPair = correctResponse.find((correct) => + correct.left === currentPair.left && correct.right.includes(currentPair.right) + ); + if (correctPair) { + const scoreMapping = mapping.find((map) => + map.value.left === currentPair.left && map.value.right === currentPair.right + ); + if (scoreMapping) { + totalScore += (scoreMapping?.score ? scoreMapping?.score : 0); + } + } + }); + return totalScore; + } + hasDuplicates(selectedOptions, option) { let duplicate = selectedOptions.find((o) => { return o.value === option.value }); return duplicate; } + getEDataItem(questionData, key) { + const getParams = (questionData) => { + const questionType = questionData.qType.toUpperCase(); + if ((questionType === QuestionType.mcq || questionType === QuestionType.mtf) && + questionData?.interactions[key]?.options) { + return questionData?.interactions[key].options; + } else { + return []; + } + }; + + const edataItem: any ={ + 'id': questionData.identifier, + 'title': questionData.name, + 'desc': questionData.description, + 'type': questionData.qType.toLowerCase(), + 'maxscore': key.length === 0 ? 0 : questionData.outcomeDeclaration.maxScore.defaultValue || 0, + 'params': getParams(questionData) + }; + + return edataItem; + } + getQuestionType(questions, currentIndex) { let index = currentIndex - 1 === -1 ? 0 : currentIndex - 1; return questions[index]['qType']; diff --git a/projects/quml-player-wc/src/app/app.module.ts b/projects/quml-player-wc/src/app/app.module.ts index ad2e7b83..17ba4d8f 100644 --- a/projects/quml-player-wc/src/app/app.module.ts +++ b/projects/quml-player-wc/src/app/app.module.ts @@ -42,7 +42,10 @@ import { QuestionCursor } from '../../../quml-library/src/lib/quml-question-curs import { QuestionCursorImplementationService } from './question-cursor-implementation.service'; import { HttpClientModule } from '@angular/common/http'; import { ProgressIndicatorsComponent } from '../../../quml-library/src/lib/progress-indicators/progress-indicators.component'; - +import { MtfComponent } from '../../../quml-library/src/lib/mtf/mtf.component'; +import { MtfOptionsComponent } from '../../../quml-library/src/lib/mtf/mtf-options/mtf-options.component'; +import { DragDropModule } from "@angular/cdk/drag-drop" +import { CheckFigureDirective } from '../../../quml-library/src/lib/mtf/check-figure.directive' @NgModule({ declarations: [ MainPlayerComponent, @@ -79,14 +82,18 @@ import { ProgressIndicatorsComponent } from '../../../quml-library/src/lib/progr MenuComponent, SafeHtmlPipe, SectionPlayerComponent, - ProgressIndicatorsComponent + ProgressIndicatorsComponent, + MtfComponent, + MtfOptionsComponent, + CheckFigureDirective ], imports: [ BrowserModule, CommonModule, CarouselModule.forRoot(), SunbirdPlayerSdkModule, - HttpClientModule + HttpClientModule, + DragDropModule ], providers: [ { provide: QuestionCursor, useClass: QuestionCursorImplementationService }, diff --git a/web-component-examples/vanilla-js/styles.css b/web-component-examples/vanilla-js/styles.css index c16b4445..94355893 100644 --- a/web-component-examples/vanilla-js/styles.css +++ b/web-component-examples/vanilla-js/styles.css @@ -5390,7 +5390,7 @@ html, body { /*!*********************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/katex/dist/katex.min.css?ngGlobalStyle ***! \*********************************************************************************************************************************************************************************************************************************************/ -@font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url('KaTeX_AMS-Regular.woff2') format("woff2"),url('KaTeX_AMS-Regular.woff') format("woff"),url('KaTeX_AMS-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url('KaTeX_Caligraphic-Bold.woff2') format("woff2"),url('KaTeX_Caligraphic-Bold.woff') format("woff"),url('KaTeX_Caligraphic-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url('KaTeX_Caligraphic-Regular.woff2') format("woff2"),url('KaTeX_Caligraphic-Regular.woff') format("woff"),url('KaTeX_Caligraphic-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url('KaTeX_Fraktur-Bold.woff2') format("woff2"),url('KaTeX_Fraktur-Bold.woff') format("woff"),url('KaTeX_Fraktur-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url('KaTeX_Fraktur-Regular.woff2') format("woff2"),url('KaTeX_Fraktur-Regular.woff') format("woff"),url('KaTeX_Fraktur-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url('KaTeX_Main-Bold.woff2') format("woff2"),url('KaTeX_Main-Bold.woff') format("woff"),url('KaTeX_Main-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url('KaTeX_Main-BoldItalic.woff2') format("woff2"),url('KaTeX_Main-BoldItalic.woff') format("woff"),url('KaTeX_Main-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url('KaTeX_Main-Italic.woff2') format("woff2"),url('KaTeX_Main-Italic.woff') format("woff"),url('KaTeX_Main-Italic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url('KaTeX_Main-Regular.woff2') format("woff2"),url('KaTeX_Main-Regular.woff') format("woff"),url('KaTeX_Main-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url('KaTeX_Math-BoldItalic.woff2') format("woff2"),url('KaTeX_Math-BoldItalic.woff') format("woff"),url('KaTeX_Math-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url('KaTeX_Math-Italic.woff2') format("woff2"),url('KaTeX_Math-Italic.woff') format("woff"),url('KaTeX_Math-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url('KaTeX_SansSerif-Bold.woff2') format("woff2"),url('KaTeX_SansSerif-Bold.woff') format("woff"),url('KaTeX_SansSerif-Bold.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url('KaTeX_SansSerif-Italic.woff2') format("woff2"),url('KaTeX_SansSerif-Italic.woff') format("woff"),url('KaTeX_SansSerif-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url('KaTeX_SansSerif-Regular.woff2') format("woff2"),url('KaTeX_SansSerif-Regular.woff') format("woff"),url('KaTeX_SansSerif-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url('KaTeX_Script-Regular.woff2') format("woff2"),url('KaTeX_Script-Regular.woff') format("woff"),url('KaTeX_Script-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url('KaTeX_Size1-Regular.woff2') format("woff2"),url('KaTeX_Size1-Regular.woff') format("woff"),url('KaTeX_Size1-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url('KaTeX_Size2-Regular.woff2') format("woff2"),url('KaTeX_Size2-Regular.woff') format("woff"),url('KaTeX_Size2-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url('KaTeX_Size3-Regular.woff2') format("woff2"),url('KaTeX_Size3-Regular.woff') format("woff"),url('KaTeX_Size3-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url('KaTeX_Size4-Regular.woff2') format("woff2"),url('KaTeX_Size4-Regular.woff') format("woff"),url('KaTeX_Size4-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url('KaTeX_Typewriter-Regular.woff2') format("woff2"),url('KaTeX_Typewriter-Regular.woff') format("woff"),url('KaTeX_Typewriter-Regular.ttf') format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.11"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.2777777778em;margin-right:-.5555555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.1666666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.6666666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.4566666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.1466666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.7142857143em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.8571428571em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.1428571429em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.2857142857em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.4285714286em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.7142857143em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.0571428571em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.4685714286em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.9628571429em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.5542857143em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.7777777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.8888888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.1111111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.3044444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.7644444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.5833333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.7283333333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.0733333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.4861111111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.4402777778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.7277777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.2893518519em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.4050925926em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.462962963em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.5208333333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.2002314815em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.4398148148em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.2410800386em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.2892960463em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.337512054em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.3857280617em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.4339440694em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.4821600771em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.5785920926em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.6943105111em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.8331726133em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.1996142719em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.2009646302em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.2411575563em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.2813504823em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.3215434084em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.3617363344em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.4019292605em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.4823151125em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.578778135em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.6945337621em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.8336012862em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo} +@font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url('KaTeX_AMS-Regular.woff2') format("woff2"),url('KaTeX_AMS-Regular.woff') format("woff"),url('KaTeX_AMS-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url('KaTeX_Caligraphic-Bold.woff2') format("woff2"),url('KaTeX_Caligraphic-Bold.woff') format("woff"),url('KaTeX_Caligraphic-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url('KaTeX_Caligraphic-Regular.woff2') format("woff2"),url('KaTeX_Caligraphic-Regular.woff') format("woff"),url('KaTeX_Caligraphic-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url('KaTeX_Fraktur-Bold.woff2') format("woff2"),url('KaTeX_Fraktur-Bold.woff') format("woff"),url('KaTeX_Fraktur-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url('KaTeX_Fraktur-Regular.woff2') format("woff2"),url('KaTeX_Fraktur-Regular.woff') format("woff"),url('KaTeX_Fraktur-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url('KaTeX_Main-Bold.woff2') format("woff2"),url('KaTeX_Main-Bold.woff') format("woff"),url('KaTeX_Main-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url('KaTeX_Main-BoldItalic.woff2') format("woff2"),url('KaTeX_Main-BoldItalic.woff') format("woff"),url('KaTeX_Main-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url('KaTeX_Main-Italic.woff2') format("woff2"),url('KaTeX_Main-Italic.woff') format("woff"),url('KaTeX_Main-Italic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url('KaTeX_Main-Regular.woff2') format("woff2"),url('KaTeX_Main-Regular.woff') format("woff"),url('KaTeX_Main-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url('KaTeX_Math-BoldItalic.woff2') format("woff2"),url('KaTeX_Math-BoldItalic.woff') format("woff"),url('KaTeX_Math-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url('KaTeX_Math-Italic.woff2') format("woff2"),url('KaTeX_Math-Italic.woff') format("woff"),url('KaTeX_Math-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url('KaTeX_SansSerif-Bold.woff2') format("woff2"),url('KaTeX_SansSerif-Bold.woff') format("woff"),url('KaTeX_SansSerif-Bold.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url('KaTeX_SansSerif-Italic.woff2') format("woff2"),url('KaTeX_SansSerif-Italic.woff') format("woff"),url('KaTeX_SansSerif-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url('KaTeX_SansSerif-Regular.woff2') format("woff2"),url('KaTeX_SansSerif-Regular.woff') format("woff"),url('KaTeX_SansSerif-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url('KaTeX_Script-Regular.woff2') format("woff2"),url('KaTeX_Script-Regular.woff') format("woff"),url('KaTeX_Script-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url('KaTeX_Size1-Regular.woff2') format("woff2"),url('KaTeX_Size1-Regular.woff') format("woff"),url('KaTeX_Size1-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url('KaTeX_Size2-Regular.woff2') format("woff2"),url('KaTeX_Size2-Regular.woff') format("woff"),url('KaTeX_Size2-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url('KaTeX_Size3-Regular.woff2') format("woff2"),url('KaTeX_Size3-Regular.woff') format("woff"),url('KaTeX_Size3-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url('KaTeX_Size4-Regular.woff2') format("woff2"),url('KaTeX_Size4-Regular.woff') format("woff"),url('KaTeX_Size4-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url('KaTeX_Typewriter-Regular.woff2') format("woff2"),url('KaTeX_Typewriter-Regular.woff') format("woff"),url('KaTeX_Typewriter-Regular.ttf') format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.10"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.27777778em;margin-right:-.55555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.83333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.16666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.66666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.45666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.14666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.71428571em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.85714286em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.14285714em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.28571429em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.42857143em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.71428571em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.05714286em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.46857143em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.96285714em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.55428571em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.55555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.66666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.77777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.88888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.11111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.30444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.76444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.41666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.58333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.66666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.83333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.72833333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.07333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.34722222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.41666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.48611111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.55555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.69444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.83333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.44027778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.72777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.28935185em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.34722222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.40509259em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.46296296em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.52083333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.69444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.83333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.20023148em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.43981481em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.24108004em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.28929605em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.33751205em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.38572806em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.43394407em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.48216008em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.57859209em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.69431051em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.83317261em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.19961427em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.20096463em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.24115756em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.28135048em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.32154341em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.36173633em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.40192926em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.48231511em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.57877814em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.69453376em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.83360129em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo} /*# sourceMappingURL=styles.css.map*/ \ No newline at end of file diff --git a/web-component-examples/vanilla-js/sunbird-quml-player.js b/web-component-examples/vanilla-js/sunbird-quml-player.js index fdb24172..342605dc 100644 --- a/web-component-examples/vanilla-js/sunbird-quml-player.js +++ b/web-component-examples/vanilla-js/sunbird-quml-player.js @@ -175,7 +175,7 @@ //# sourceMappingURL=runtime.js.map (self["webpackChunkquml_player_wc"] = self["webpackChunkquml_player_wc"] || []).push([["polyfills"],{ -/***/ 2326: +/***/ 42326: /*!**************************************************!*\ !*** ./projects/quml-player-wc/src/polyfills.ts ***! \**************************************************/ @@ -183,9 +183,9 @@ "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var zone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zone.js */ 6657); +/* harmony import */ var zone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zone.js */ 76657); /* harmony import */ var zone_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(zone_js__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var document_register_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! document-register-element */ 3615); +/* harmony import */ var document_register_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! document-register-element */ 13615); /* harmony import */ var document_register_element__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(document_register_element__WEBPACK_IMPORTED_MODULE_1__); /** * This file includes polyfills needed by Angular and is loaded before the app. @@ -239,7 +239,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3615: +/***/ 13615: /*!***********************************************************************************!*\ !*** ./node_modules/document-register-element/build/document-register-element.js ***! \***********************************************************************************/ @@ -844,7 +844,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6657: +/***/ 76657: /*!***********************************************!*\ !*** ./node_modules/zone.js/fesm2015/zone.js ***! \***********************************************/ @@ -1906,7 +1906,6 @@ Zone.__load_patch('ZoneAwarePromise', (global, Zone, api) => { // Do not return value or you will break the Promise spec. }; } - const once = function () { let wasCalled = false; return function wrapper(wrappedFunction) { @@ -3472,7 +3471,6 @@ Zone.__load_patch('XHR', (global, Zone) => { }); } }); - Zone.__load_patch('geolocation', global => { /// GEO_LOCATION if (global['navigator'] && global['navigator'].geolocation) { @@ -3512,14 +3510,14 @@ Zone.__load_patch('queueMicrotask', (global, Zone, api) => { }, /******/ __webpack_require__ => { // webpackRuntimeModules /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) -/******/ var __webpack_exports__ = (__webpack_exec__(2326)); +/******/ var __webpack_exports__ = (__webpack_exec__(42326)); /******/ } ]); //# sourceMappingURL=polyfills.js.map /*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 015?"\u2026"+e.slice(n-15,n):e.slice(0,n),a=o+15":">","<":"<",'"':""","'":"'"},i=/[&><"']/g;const a=function(e){return"ordgroup"===e.type||"color"===e.type?1===e.body.length?a(e.body[0]):e:"font"===e.type?a(e.body):e};var l={contains:function(e,t){return-1!==e.indexOf(t)},deflt:function(e,t){return void 0===e?t:e},escape:function(e){return String(e).replace(i,(e=>s[e]))},hyphenate:function(e){return e.replace(o,"-$1").toLowerCase()},getBaseElem:a,isCharacterBox:function(e){const t=a(e);return"mathord"===t.type||"textord"===t.type||"atom"===t.type},protocolFromUrl:function(e){const t=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(e);return t?":"!==t[2]?null:/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(t[1])?t[1].toLowerCase():null:"_relative"}};const h={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand ",cliProcessor:e=>"Infinity"===e?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function c(e){if(e.default)return e.default;const t=e.type,r=Array.isArray(t)?t[0]:t;if("string"!=typeof r)return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}class m{constructor(e){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,e=e||{};for(const t in h)if(h.hasOwnProperty(t)){const r=h[t];this[t]=void 0!==e[t]?r.processor?r.processor(e[t]):e[t]:c(r)}}reportNonstrict(e,t,r){let o=this.strict;if("function"==typeof o&&(o=o(e,t,r)),o&&"ignore"!==o){if(!0===o||"error"===o)throw new n("LaTeX-incompatible input and strict mode is set to 'error': "+t+" ["+e+"]",r);"warn"===o?"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"):"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+o+"': "+t+" ["+e+"]")}}useStrictBehavior(e,t,r){let n=this.strict;if("function"==typeof n)try{n=n(e,t,r)}catch(e){n="error"}return!(!n||"ignore"===n)&&(!0===n||"error"===n||("warn"===n?("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"),!1):("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+n+"': "+t+" ["+e+"]"),!1)))}isTrusted(e){if(e.url&&!e.protocol){const t=l.protocolFromUrl(e.url);if(null==t)return!1;e.protocol=t}const t="function"==typeof this.trust?this.trust(e):this.trust;return Boolean(t)}}class p{constructor(e,t,r){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=e,this.size=t,this.cramped=r}sup(){return u[d[this.id]]}sub(){return u[g[this.id]]}fracNum(){return u[f[this.id]]}fracDen(){return u[b[this.id]]}cramp(){return u[y[this.id]]}text(){return u[x[this.id]]}isTight(){return this.size>=2}}const u=[new p(0,0,!1),new p(1,0,!0),new p(2,1,!1),new p(3,1,!0),new p(4,2,!1),new p(5,2,!0),new p(6,3,!1),new p(7,3,!0)],d=[4,5,4,5,6,7,6,7],g=[5,5,5,5,7,7,7,7],f=[2,3,4,5,6,7,6,7],b=[3,3,5,5,7,7,7,7],y=[1,1,3,3,5,5,7,7],x=[0,1,2,3,2,3,2,3];var w={DISPLAY:u[0],TEXT:u[2],SCRIPT:u[4],SCRIPTSCRIPT:u[6]};const v=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];const k=[];function S(e){for(let t=0;t=k[t]&&e<=k[t+1])return!0;return!1}v.forEach((e=>e.blocks.forEach((e=>k.push(...e)))));const M=80,z={doubleleftarrow:"M262 157\nl10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3\n 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28\n 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5\nc2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5\n 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87\n-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7\n-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z\nm8 0v40h399730v-40zm0 194v40h399730v-40z",doublerightarrow:"M399738 392l\n-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5\n 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88\n-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68\n-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18\n-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782\nc-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3\n-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z",leftarrow:"M400000 241H110l3-3c68.7-52.7 113.7-120\n 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8\n-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247\nc-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208\n 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3\n 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202\n l-3-3h399890zM100 241v40h399900v-40z",leftbrace:"M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117\n-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7\n 5-6 9-10 13-.7 1-7.3 1-20 1H6z",leftbraceunder:"M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13\n 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688\n 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7\n-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z",leftgroup:"M400000 80\nH435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0\n 435 0h399565z",leftgroupunder:"M400000 262\nH435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219\n 435 219h399565z",leftharpoon:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3\n-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5\n-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7\n-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z",leftharpoonplus:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5\n 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3\n-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7\n-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z\nm0 0v40h400000v-40z",leftharpoondown:"M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333\n 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5\n 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667\n-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z",leftharpoondownplus:"M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12\n 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7\n-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0\nv40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z",lefthook:"M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5\n-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3\n-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21\n 71.5 23h399859zM103 281v-40h399897v40z",leftlinesegment:"M40 281 V428 H0 V94 H40 V241 H400000 v40z\nM40 281 V428 H0 V94 H40 V241 H400000 v40z",leftmapsto:"M40 281 V448H0V74H40V241H400000v40z\nM40 281 V448H0V74H40V241H400000v40z",leftToFrom:"M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23\n-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8\nc28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3\n 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z",longequal:"M0 50 h400000 v40H0z m0 194h40000v40H0z\nM0 50 h400000 v40H0z m0 194h40000v40H0z",midbrace:"M200428 334\nc-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14\n-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7\n 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11\n 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z",midbraceunder:"M199572 214\nc100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14\n 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3\n 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0\n-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z",oiintSize1:"M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6\n-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z\nm368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8\n60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z",oiintSize2:"M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8\n-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z\nm502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2\nc0 110 84 276 504 276s502.4-166 502.4-276z",oiiintSize1:"M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6\n-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z\nm525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0\n85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z",oiiintSize2:"M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8\n-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z\nm770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1\nc0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z",rightarrow:"M0 241v40h399891c-47.3 35.3-84 78-110 128\n-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20\n 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7\n 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85\n-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n 151.7 139 205zm0 0v40h399900v-40z",rightbrace:"M400000 542l\n-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5\ns-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1\nc124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z",rightbraceunder:"M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3\n 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237\n-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z",rightgroup:"M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0\n 3-1 3-3v-38c-76-158-257-219-435-219H0z",rightgroupunder:"M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18\n 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z",rightharpoon:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3\n-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2\n-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58\n 69.2 92 94.5zm0 0v40h399900v-40z",rightharpoonplus:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11\n-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7\n 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z\nm0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z",rightharpoondown:"M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8\n 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5\n-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95\n-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z",rightharpoondownplus:"M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8\n 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3\n 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3\n-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z\nm0-194v40h400000v-40zm0 0v40h400000v-40z",righthook:"M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3\n 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0\n-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21\n 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z",rightlinesegment:"M399960 241 V94 h40 V428 h-40 V281 H0 v-40z\nM399960 241 V94 h40 V428 h-40 V281 H0 v-40z",rightToFrom:"M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23\n 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32\n-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142\n-167z M100 147v40h399900v-40zM0 341v40h399900v-40z",twoheadleftarrow:"M0 167c68 40\n 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69\n-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3\n-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19\n-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101\n 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z",twoheadrightarrow:"M400000 167\nc-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3\n 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42\n 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333\n-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70\n 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z",tilde1:"M200 55.538c-77 0-168 73.953-177 73.953-3 0-7\n-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0\n 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0\n 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128\n-68.267.847-113-73.952-191-73.952z",tilde2:"M344 55.266c-142 0-300.638 81.316-311.5 86.418\n-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9\n 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114\nc1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751\n 181.476 676 181.476c-149 0-189-126.21-332-126.21z",tilde3:"M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457\n-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0\n 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697\n 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696\n -338 0-409-156.573-744-156.573z",tilde4:"M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345\n-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409\n 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9\n 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409\n -175.236-744-175.236z",vec:"M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5\n3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11\n10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63\n-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1\n-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59\nH213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359\nc-16-25.333-24-45-24-59z",widehat1:"M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22\nc-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z",widehat2:"M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat3:"M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat4:"M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widecheck1:"M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1,\n-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z",widecheck2:"M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck3:"M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck4:"M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",baraboveleftarrow:"M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202\nc4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5\nc-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130\ns-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47\n121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6\ns2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11\nc0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z\nM100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z",rightarrowabovebar:"M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32\n-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0\n13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39\n-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5\n-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z",baraboveshortleftharpoon:"M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17\nc2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21\nc-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40\nc-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z\nM0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z",rightharpoonaboveshortbar:"M0,241 l0,40c399126,0,399993,0,399993,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z",shortbaraboveleftharpoon:"M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9,\n1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7,\n-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z\nM93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z",shortrightharpoonabovebar:"M53,241l0,40c398570,0,399437,0,399437,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z"};class A{constructor(e){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=e,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createDocumentFragment();for(let t=0;te.toText())).join("")}}var T={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}};const B={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},C={"\xc5":"A","\xd0":"D","\xde":"o","\xe5":"a","\xf0":"d","\xfe":"o","\u0410":"A","\u0411":"B","\u0412":"B","\u0413":"F","\u0414":"A","\u0415":"E","\u0416":"K","\u0417":"3","\u0418":"N","\u0419":"N","\u041a":"K","\u041b":"N","\u041c":"M","\u041d":"H","\u041e":"O","\u041f":"N","\u0420":"P","\u0421":"C","\u0422":"T","\u0423":"y","\u0424":"O","\u0425":"X","\u0426":"U","\u0427":"h","\u0428":"W","\u0429":"W","\u042a":"B","\u042b":"X","\u042c":"B","\u042d":"3","\u042e":"X","\u042f":"R","\u0430":"a","\u0431":"b","\u0432":"a","\u0433":"r","\u0434":"y","\u0435":"e","\u0436":"m","\u0437":"e","\u0438":"n","\u0439":"n","\u043a":"n","\u043b":"n","\u043c":"m","\u043d":"n","\u043e":"o","\u043f":"n","\u0440":"p","\u0441":"c","\u0442":"o","\u0443":"y","\u0444":"b","\u0445":"x","\u0446":"n","\u0447":"n","\u0448":"w","\u0449":"w","\u044a":"a","\u044b":"m","\u044c":"a","\u044d":"e","\u044e":"m","\u044f":"r"};function N(e,t,r){if(!T[t])throw new Error("Font metrics not found for font: "+t+".");let n=e.charCodeAt(0),o=T[t][n];if(!o&&e[0]in C&&(n=C[e[0]].charCodeAt(0),o=T[t][n]),o||"text"!==r||S(n)&&(o=T[t][77]),o)return{depth:o[0],height:o[1],italic:o[2],skew:o[3],width:o[4]}}const q={};const I=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],R=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],H=function(e,t){return t.size<2?e:I[e-1][t.size-1]};class O{constructor(e){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=e.style,this.color=e.color,this.size=e.size||O.BASESIZE,this.textSize=e.textSize||this.size,this.phantom=!!e.phantom,this.font=e.font||"",this.fontFamily=e.fontFamily||"",this.fontWeight=e.fontWeight||"",this.fontShape=e.fontShape||"",this.sizeMultiplier=R[this.size-1],this.maxSize=e.maxSize,this.minRuleThickness=e.minRuleThickness,this._fontMetrics=void 0}extend(e){const t={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(const r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);return new O(t)}havingStyle(e){return this.style===e?this:this.extend({style:e,size:H(this.textSize,e)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(e){return this.size===e&&this.textSize===e?this:this.extend({style:this.style.text(),size:e,textSize:e,sizeMultiplier:R[e-1]})}havingBaseStyle(e){e=e||this.style.text();const t=H(O.BASESIZE,e);return this.size===t&&this.textSize===O.BASESIZE&&this.style===e?this:this.extend({style:e,size:t})}havingBaseSizing(){let e;switch(this.style.id){case 4:case 5:e=3;break;case 6:case 7:e=1;break;default:e=6}return this.extend({style:this.style.text(),size:e})}withColor(e){return this.extend({color:e})}withPhantom(){return this.extend({phantom:!0})}withFont(e){return this.extend({font:e})}withTextFontFamily(e){return this.extend({fontFamily:e,font:""})}withTextFontWeight(e){return this.extend({fontWeight:e,font:""})}withTextFontShape(e){return this.extend({fontShape:e,font:""})}sizingClasses(e){return e.size!==this.size?["sizing","reset-size"+e.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==O.BASESIZE?["sizing","reset-size"+this.size,"size"+O.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=function(e){let t;if(t=e>=5?0:e>=3?1:2,!q[t]){const e=q[t]={cssEmPerMu:B.quad[t]/18};for(const r in B)B.hasOwnProperty(r)&&(e[r]=B[r][t])}return q[t]}(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}O.BASESIZE=6;var E=O;const L={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:1.00375,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:1.00375},D={ex:!0,em:!0,mu:!0},V=function(e){return"string"!=typeof e&&(e=e.unit),e in L||e in D||"ex"===e},P=function(e,t){let r;if(e.unit in L)r=L[e.unit]/t.fontMetrics().ptPerEm/t.sizeMultiplier;else if("mu"===e.unit)r=t.fontMetrics().cssEmPerMu;else{let o;if(o=t.style.isTight()?t.havingStyle(t.style.text()):t,"ex"===e.unit)r=o.fontMetrics().xHeight;else{if("em"!==e.unit)throw new n("Invalid unit: '"+e.unit+"'");r=o.fontMetrics().quad}o!==t&&(r*=o.sizeMultiplier/t.sizeMultiplier)}return Math.min(e.number*r,t.maxSize)},F=function(e){return+e.toFixed(4)+"em"},G=function(e){return e.filter((e=>e)).join(" ")},U=function(e,t,r){if(this.classes=e||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},t){t.style.isTight()&&this.classes.push("mtight");const e=t.getColor();e&&(this.style.color=e)}},Y=function(e){const t=document.createElement(e);t.className=G(this.classes);for(const e in this.style)this.style.hasOwnProperty(e)&&(t.style[e]=this.style[e]);for(const e in this.attributes)this.attributes.hasOwnProperty(e)&&t.setAttribute(e,this.attributes[e]);for(let e=0;e",t};class W{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,e,r,n),this.children=t||[]}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"span")}toMarkup(){return X.call(this,"span")}}class _{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,t,n),this.children=r||[],this.setAttribute("href",e)}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"a")}toMarkup(){return X.call(this,"a")}}class j{constructor(e,t,r){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=t,this.src=e,this.classes=["mord"],this.style=r}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createElement("img");e.src=this.src,e.alt=this.alt,e.className="mord";for(const t in this.style)this.style.hasOwnProperty(t)&&(e.style[t]=this.style[t]);return e}toMarkup(){let e=''+l.escape(this.alt)+'=n[0]&&e<=n[1])return r.name}}return null}(this.text.charCodeAt(0));l&&this.classes.push(l+"_fallback"),/[\xee\xef\xed\xec]/.test(this.text)&&(this.text=$[this.text])}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createTextNode(this.text);let t=null;this.italic>0&&(t=document.createElement("span"),t.style.marginRight=F(this.italic)),this.classes.length>0&&(t=t||document.createElement("span"),t.className=G(this.classes));for(const e in this.style)this.style.hasOwnProperty(e)&&(t=t||document.createElement("span"),t.style[e]=this.style[e]);return t?(t.appendChild(e),t):e}toMarkup(){let e=!1,t="0&&(r+="margin-right:"+this.italic+"em;");for(const e in this.style)this.style.hasOwnProperty(e)&&(r+=l.hyphenate(e)+":"+this.style[e]+";");r&&(e=!0,t+=' style="'+l.escape(r)+'"');const n=l.escape(this.text);return e?(t+=">",t+=n,t+="",t):n}}class K{constructor(e,t){this.children=void 0,this.attributes=void 0,this.children=e||[],this.attributes=t||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","svg");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);for(let t=0;t':''}}class Q{constructor(e){this.attributes=void 0,this.attributes=e||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","line");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);return e}toMarkup(){let e="","\\gt",!0),se(ie,le,ye,"\u2208","\\in",!0),se(ie,le,ye,"\ue020","\\@not"),se(ie,le,ye,"\u2282","\\subset",!0),se(ie,le,ye,"\u2283","\\supset",!0),se(ie,le,ye,"\u2286","\\subseteq",!0),se(ie,le,ye,"\u2287","\\supseteq",!0),se(ie,he,ye,"\u2288","\\nsubseteq",!0),se(ie,he,ye,"\u2289","\\nsupseteq",!0),se(ie,le,ye,"\u22a8","\\models"),se(ie,le,ye,"\u2190","\\leftarrow",!0),se(ie,le,ye,"\u2264","\\le"),se(ie,le,ye,"\u2264","\\leq",!0),se(ie,le,ye,"<","\\lt",!0),se(ie,le,ye,"\u2192","\\rightarrow",!0),se(ie,le,ye,"\u2192","\\to"),se(ie,he,ye,"\u2271","\\ngeq",!0),se(ie,he,ye,"\u2270","\\nleq",!0),se(ie,le,xe,"\xa0","\\ "),se(ie,le,xe,"\xa0","\\space"),se(ie,le,xe,"\xa0","\\nobreakspace"),se(ae,le,xe,"\xa0","\\ "),se(ae,le,xe,"\xa0"," "),se(ae,le,xe,"\xa0","\\space"),se(ae,le,xe,"\xa0","\\nobreakspace"),se(ie,le,xe,null,"\\nobreak"),se(ie,le,xe,null,"\\allowbreak"),se(ie,le,be,",",","),se(ie,le,be,";",";"),se(ie,he,me,"\u22bc","\\barwedge",!0),se(ie,he,me,"\u22bb","\\veebar",!0),se(ie,le,me,"\u2299","\\odot",!0),se(ie,le,me,"\u2295","\\oplus",!0),se(ie,le,me,"\u2297","\\otimes",!0),se(ie,le,we,"\u2202","\\partial",!0),se(ie,le,me,"\u2298","\\oslash",!0),se(ie,he,me,"\u229a","\\circledcirc",!0),se(ie,he,me,"\u22a1","\\boxdot",!0),se(ie,le,me,"\u25b3","\\bigtriangleup"),se(ie,le,me,"\u25bd","\\bigtriangledown"),se(ie,le,me,"\u2020","\\dagger"),se(ie,le,me,"\u22c4","\\diamond"),se(ie,le,me,"\u22c6","\\star"),se(ie,le,me,"\u25c3","\\triangleleft"),se(ie,le,me,"\u25b9","\\triangleright"),se(ie,le,fe,"{","\\{"),se(ae,le,we,"{","\\{"),se(ae,le,we,"{","\\textbraceleft"),se(ie,le,pe,"}","\\}"),se(ae,le,we,"}","\\}"),se(ae,le,we,"}","\\textbraceright"),se(ie,le,fe,"{","\\lbrace"),se(ie,le,pe,"}","\\rbrace"),se(ie,le,fe,"[","\\lbrack",!0),se(ae,le,we,"[","\\lbrack",!0),se(ie,le,pe,"]","\\rbrack",!0),se(ae,le,we,"]","\\rbrack",!0),se(ie,le,fe,"(","\\lparen",!0),se(ie,le,pe,")","\\rparen",!0),se(ae,le,we,"<","\\textless",!0),se(ae,le,we,">","\\textgreater",!0),se(ie,le,fe,"\u230a","\\lfloor",!0),se(ie,le,pe,"\u230b","\\rfloor",!0),se(ie,le,fe,"\u2308","\\lceil",!0),se(ie,le,pe,"\u2309","\\rceil",!0),se(ie,le,we,"\\","\\backslash"),se(ie,le,we,"\u2223","|"),se(ie,le,we,"\u2223","\\vert"),se(ae,le,we,"|","\\textbar",!0),se(ie,le,we,"\u2225","\\|"),se(ie,le,we,"\u2225","\\Vert"),se(ae,le,we,"\u2225","\\textbardbl"),se(ae,le,we,"~","\\textasciitilde"),se(ae,le,we,"\\","\\textbackslash"),se(ae,le,we,"^","\\textasciicircum"),se(ie,le,ye,"\u2191","\\uparrow",!0),se(ie,le,ye,"\u21d1","\\Uparrow",!0),se(ie,le,ye,"\u2193","\\downarrow",!0),se(ie,le,ye,"\u21d3","\\Downarrow",!0),se(ie,le,ye,"\u2195","\\updownarrow",!0),se(ie,le,ye,"\u21d5","\\Updownarrow",!0),se(ie,le,ge,"\u2210","\\coprod"),se(ie,le,ge,"\u22c1","\\bigvee"),se(ie,le,ge,"\u22c0","\\bigwedge"),se(ie,le,ge,"\u2a04","\\biguplus"),se(ie,le,ge,"\u22c2","\\bigcap"),se(ie,le,ge,"\u22c3","\\bigcup"),se(ie,le,ge,"\u222b","\\int"),se(ie,le,ge,"\u222b","\\intop"),se(ie,le,ge,"\u222c","\\iint"),se(ie,le,ge,"\u222d","\\iiint"),se(ie,le,ge,"\u220f","\\prod"),se(ie,le,ge,"\u2211","\\sum"),se(ie,le,ge,"\u2a02","\\bigotimes"),se(ie,le,ge,"\u2a01","\\bigoplus"),se(ie,le,ge,"\u2a00","\\bigodot"),se(ie,le,ge,"\u222e","\\oint"),se(ie,le,ge,"\u222f","\\oiint"),se(ie,le,ge,"\u2230","\\oiiint"),se(ie,le,ge,"\u2a06","\\bigsqcup"),se(ie,le,ge,"\u222b","\\smallint"),se(ae,le,ue,"\u2026","\\textellipsis"),se(ie,le,ue,"\u2026","\\mathellipsis"),se(ae,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u22ef","\\@cdots",!0),se(ie,le,ue,"\u22f1","\\ddots",!0),se(ie,le,we,"\u22ee","\\varvdots"),se(ie,le,ce,"\u02ca","\\acute"),se(ie,le,ce,"\u02cb","\\grave"),se(ie,le,ce,"\xa8","\\ddot"),se(ie,le,ce,"~","\\tilde"),se(ie,le,ce,"\u02c9","\\bar"),se(ie,le,ce,"\u02d8","\\breve"),se(ie,le,ce,"\u02c7","\\check"),se(ie,le,ce,"^","\\hat"),se(ie,le,ce,"\u20d7","\\vec"),se(ie,le,ce,"\u02d9","\\dot"),se(ie,le,ce,"\u02da","\\mathring"),se(ie,le,de,"\ue131","\\@imath"),se(ie,le,de,"\ue237","\\@jmath"),se(ie,le,we,"\u0131","\u0131"),se(ie,le,we,"\u0237","\u0237"),se(ae,le,we,"\u0131","\\i",!0),se(ae,le,we,"\u0237","\\j",!0),se(ae,le,we,"\xdf","\\ss",!0),se(ae,le,we,"\xe6","\\ae",!0),se(ae,le,we,"\u0153","\\oe",!0),se(ae,le,we,"\xf8","\\o",!0),se(ae,le,we,"\xc6","\\AE",!0),se(ae,le,we,"\u0152","\\OE",!0),se(ae,le,we,"\xd8","\\O",!0),se(ae,le,ce,"\u02ca","\\'"),se(ae,le,ce,"\u02cb","\\`"),se(ae,le,ce,"\u02c6","\\^"),se(ae,le,ce,"\u02dc","\\~"),se(ae,le,ce,"\u02c9","\\="),se(ae,le,ce,"\u02d8","\\u"),se(ae,le,ce,"\u02d9","\\."),se(ae,le,ce,"\xb8","\\c"),se(ae,le,ce,"\u02da","\\r"),se(ae,le,ce,"\u02c7","\\v"),se(ae,le,ce,"\xa8",'\\"'),se(ae,le,ce,"\u02dd","\\H"),se(ae,le,ce,"\u25ef","\\textcircled");const ve={"--":!0,"---":!0,"``":!0,"''":!0};se(ae,le,we,"\u2013","--",!0),se(ae,le,we,"\u2013","\\textendash"),se(ae,le,we,"\u2014","---",!0),se(ae,le,we,"\u2014","\\textemdash"),se(ae,le,we,"\u2018","`",!0),se(ae,le,we,"\u2018","\\textquoteleft"),se(ae,le,we,"\u2019","'",!0),se(ae,le,we,"\u2019","\\textquoteright"),se(ae,le,we,"\u201c","``",!0),se(ae,le,we,"\u201c","\\textquotedblleft"),se(ae,le,we,"\u201d","''",!0),se(ae,le,we,"\u201d","\\textquotedblright"),se(ie,le,we,"\xb0","\\degree",!0),se(ae,le,we,"\xb0","\\degree"),se(ae,le,we,"\xb0","\\textdegree",!0),se(ie,le,we,"\xa3","\\pounds"),se(ie,le,we,"\xa3","\\mathsterling",!0),se(ae,le,we,"\xa3","\\pounds"),se(ae,le,we,"\xa3","\\textsterling",!0),se(ie,he,we,"\u2720","\\maltese"),se(ae,he,we,"\u2720","\\maltese");const ke='0123456789/@."';for(let e=0;e{if(G(e.classes)!==G(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize)return!1;if(1===e.classes.length){const t=e.classes[0];if("mbin"===t||"mord"===t)return!1}for(const r in e.style)if(e.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;for(const r in t.style)if(t.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;return!0},Ie=function(e){let t=0,r=0,n=0;for(let o=0;ot&&(t=s.height),s.depth>r&&(r=s.depth),s.maxFontSize>n&&(n=s.maxFontSize)}e.height=t,e.depth=r,e.maxFontSize=n},Re=function(e,t,r,n){const o=new W(e,t,r,n);return Ie(o),o},He=(e,t,r,n)=>new W(e,t,r,n),Oe=function(e){const t=new A(e);return Ie(t),t},Ee=function(e,t,r){let n,o="";switch(e){case"amsrm":o="AMS";break;case"textrm":o="Main";break;case"textsf":o="SansSerif";break;case"texttt":o="Typewriter";break;default:o=e}return n="textbf"===t&&"textit"===r?"BoldItalic":"textbf"===t?"Bold":"textit"===t?"Italic":"Regular",o+"-"+n},Le={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},De={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]};var Ve={fontMap:Le,makeSymbol:Ne,mathsym:function(e,t,r,n){return void 0===n&&(n=[]),"boldsymbol"===r.font&&Ce(e,"Main-Bold",t).metrics?Ne(e,"Main-Bold",t,r,n.concat(["mathbf"])):"\\"===e||"main"===oe[t][e].font?Ne(e,"Main-Regular",t,r,n):Ne(e,"AMS-Regular",t,r,n.concat(["amsrm"]))},makeSpan:Re,makeSvgSpan:He,makeLineSpan:function(e,t,r){const n=Re([e],[],t);return n.height=Math.max(r||t.fontMetrics().defaultRuleThickness,t.minRuleThickness),n.style.borderBottomWidth=F(n.height),n.maxFontSize=1,n},makeAnchor:function(e,t,r,n){const o=new _(e,t,r,n);return Ie(o),o},makeFragment:Oe,wrapFragment:function(e,t){return e instanceof A?Re([],[e],t):e},makeVList:function(e,t){const{children:r,depth:n}=function(e){if("individualShift"===e.positionType){const t=e.children,r=[t[0]],n=-t[0].shift-t[0].elem.depth;let o=n;for(let e=1;e0)return Ne(s,h,o,t,i.concat(c));if(l){let e,n;if("boldsymbol"===l){const t=function(e,t,r,n,o){return"textord"!==o&&Ce(e,"Math-BoldItalic",t).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}}(s,o,0,0,r);e=t.fontName,n=[t.fontClass]}else a?(e=Le[l].fontName,n=[l]):(e=Ee(l,t.fontWeight,t.fontShape),n=[l,t.fontWeight,t.fontShape]);if(Ce(s,e,o).metrics)return Ne(s,e,o,t,i.concat(n));if(ve.hasOwnProperty(s)&&"Typewriter"===e.slice(0,10)){const r=[];for(let a=0;a{const r=Re(["mspace"],[],t),n=P(e,t);return r.style.marginRight=F(n),r},staticSvg:function(e,t){const[r,n,o]=De[e],s=new J(r),i=new K([s],{width:F(n),height:F(o),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+1e3*o,preserveAspectRatio:"xMinYMin"}),a=He(["overlay"],[i],t);return a.height=o,a.style.height=F(o),a.style.width=F(n),a},svgData:De,tryCombineChars:e=>{for(let t=0;t{const r=t.classes[0],n=e.classes[0];"mbin"===r&&l.contains(et,n)?t.classes[0]="mord":"mbin"===n&&l.contains(Qe,r)&&(e.classes[0]="mord")}),{node:i},a,h),ot(o,((e,t)=>{const r=at(t),n=at(e),o=r&&n?e.hasClass("mtight")?Ye[r][n]:Ue[r][n]:null;if(o)return Ve.makeGlue(o,s)}),{node:i},a,h),o},ot=function(e,t,r,n,o){n&&e.push(n);let s=0;for(;sr=>{e.splice(t+1,0,r),s++})(s)}n&&e.pop()},st=function(e){return e instanceof A||e instanceof _||e instanceof W&&e.hasClass("enclosing")?e:null},it=function(e,t){const r=st(e);if(r){const e=r.children;if(e.length){if("right"===t)return it(e[e.length-1],"right");if("left"===t)return it(e[0],"left")}}return e},at=function(e,t){return e?(t&&(e=it(e,t)),rt[e.classes[0]]||null):null},lt=function(e,t){const r=["nulldelimiter"].concat(e.baseSizingClasses());return Je(t.concat(r))},ht=function(e,t,r){if(!e)return Je();if(We[e.type]){let n=We[e.type](e,t);if(r&&t.size!==r.size){n=Je(t.sizingClasses(r),[n],t);const e=t.sizeMultiplier/r.sizeMultiplier;n.height*=e,n.depth*=e}return n}throw new n("Got group of unknown type: '"+e.type+"'")};function ct(e,t){const r=Je(["base"],e,t),n=Je(["strut"]);return n.style.height=F(r.height+r.depth),r.depth&&(n.style.verticalAlign=F(-r.depth)),r.children.unshift(n),r}function mt(e,t){let r=null;1===e.length&&"tag"===e[0].type&&(r=e[0].tag,e=e[0].body);const n=nt(e,t,"root");let o;2===n.length&&n[1].hasClass("tag")&&(o=n.pop());const s=[];let i,a=[];for(let e=0;e0&&(s.push(ct(a,t)),a=[]),s.push(n[e]));a.length>0&&s.push(ct(a,t)),r?(i=ct(nt(r,t,!0)),i.classes=["tag"],s.push(i)):o&&s.push(o);const l=Je(["katex-html"],s);if(l.setAttribute("aria-hidden","true"),i){const e=i.children[0];e.style.height=F(l.height+l.depth),l.depth&&(e.style.verticalAlign=F(-l.depth))}return l}function pt(e){return new A(e)}class ut{constructor(e,t,r){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=e,this.attributes={},this.children=t||[],this.classes=r||[]}setAttribute(e,t){this.attributes[e]=t}getAttribute(e){return this.attributes[e]}toNode(){const e=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);this.classes.length>0&&(e.className=G(this.classes));for(let t=0;t0&&(e+=' class ="'+l.escape(G(this.classes))+'"'),e+=">";for(let t=0;t",e}toText(){return this.children.map((e=>e.toText())).join("")}}class dt{constructor(e){this.text=void 0,this.text=e}toNode(){return document.createTextNode(this.text)}toMarkup(){return l.escape(this.toText())}toText(){return this.text}}var gt={MathNode:ut,TextNode:dt,SpaceNode:class{constructor(e){this.width=void 0,this.character=void 0,this.width=e,this.character=e>=.05555&&e<=.05556?"\u200a":e>=.1666&&e<=.1667?"\u2009":e>=.2222&&e<=.2223?"\u2005":e>=.2777&&e<=.2778?"\u2005\u200a":e>=-.05556&&e<=-.05555?"\u200a\u2063":e>=-.1667&&e<=-.1666?"\u2009\u2063":e>=-.2223&&e<=-.2222?"\u205f\u2063":e>=-.2778&&e<=-.2777?"\u2005\u2063":null}toNode(){if(this.character)return document.createTextNode(this.character);{const e=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return e.setAttribute("width",F(this.width)),e}}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}},newDocumentFragment:pt};const ft=function(e,t,r){return!oe[t][e]||!oe[t][e].replace||55349===e.charCodeAt(0)||ve.hasOwnProperty(e)&&r&&(r.fontFamily&&"tt"===r.fontFamily.slice(4,6)||r.font&&"tt"===r.font.slice(4,6))||(e=oe[t][e].replace),new gt.TextNode(e)},bt=function(e){return 1===e.length?e[0]:new gt.MathNode("mrow",e)},yt=function(e,t){if("texttt"===t.fontFamily)return"monospace";if("textsf"===t.fontFamily)return"textit"===t.fontShape&&"textbf"===t.fontWeight?"sans-serif-bold-italic":"textit"===t.fontShape?"sans-serif-italic":"textbf"===t.fontWeight?"bold-sans-serif":"sans-serif";if("textit"===t.fontShape&&"textbf"===t.fontWeight)return"bold-italic";if("textit"===t.fontShape)return"italic";if("textbf"===t.fontWeight)return"bold";const r=t.font;if(!r||"mathnormal"===r)return null;const n=e.mode;if("mathit"===r)return"italic";if("boldsymbol"===r)return"textord"===e.type?"bold":"bold-italic";if("mathbf"===r)return"bold";if("mathbb"===r)return"double-struck";if("mathfrak"===r)return"fraktur";if("mathscr"===r||"mathcal"===r)return"script";if("mathsf"===r)return"sans-serif";if("mathtt"===r)return"monospace";let o=e.text;if(l.contains(["\\imath","\\jmath"],o))return null;oe[n][o]&&oe[n][o].replace&&(o=oe[n][o].replace);return N(o,Ve.fontMap[r].fontName,n)?Ve.fontMap[r].variant:null},xt=function(e,t,r){if(1===e.length){const n=vt(e[0],t);return r&&n instanceof ut&&"mo"===n.type&&(n.setAttribute("lspace","0em"),n.setAttribute("rspace","0em")),[n]}const n=[];let o;for(let r=0;r0&&(e.text=e.text.slice(0,1)+"\u0338"+e.text.slice(1),n.pop())}}}n.push(s),o=s}return n},wt=function(e,t,r){return bt(xt(e,t,r))},vt=function(e,t){if(!e)return new gt.MathNode("mrow");if(_e[e.type]){return _e[e.type](e,t)}throw new n("Got group of unknown type: '"+e.type+"'")};function kt(e,t,r,n,o){const s=xt(e,r);let i;i=1===s.length&&s[0]instanceof ut&&l.contains(["mrow","mtable"],s[0].type)?s[0]:new gt.MathNode("mrow",s);const a=new gt.MathNode("annotation",[new gt.TextNode(t)]);a.setAttribute("encoding","application/x-tex");const h=new gt.MathNode("semantics",[i,a]),c=new gt.MathNode("math",[h]);c.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),n&&c.setAttribute("display","block");const m=o?"katex":"katex-mathml";return Ve.makeSpan([m],[c])}const St=function(e){return new E({style:e.displayMode?w.DISPLAY:w.TEXT,maxSize:e.maxSize,minRuleThickness:e.minRuleThickness})},Mt=function(e,t){if(t.displayMode){const r=["katex-display"];t.leqno&&r.push("leqno"),t.fleqn&&r.push("fleqn"),e=Ve.makeSpan(r,[e])}return e},zt=function(e,t,r){const n=St(r);let o;if("mathml"===r.output)return kt(e,t,n,r.displayMode,!0);if("html"===r.output){const t=mt(e,n);o=Ve.makeSpan(["katex"],[t])}else{const s=kt(e,t,n,r.displayMode,!1),i=mt(e,n);o=Ve.makeSpan(["katex"],[s,i])}return Mt(o,r)};const At={widehat:"^",widecheck:"\u02c7",widetilde:"~",utilde:"~",overleftarrow:"\u2190",underleftarrow:"\u2190",xleftarrow:"\u2190",overrightarrow:"\u2192",underrightarrow:"\u2192",xrightarrow:"\u2192",underbrace:"\u23df",overbrace:"\u23de",overgroup:"\u23e0",undergroup:"\u23e1",overleftrightarrow:"\u2194",underleftrightarrow:"\u2194",xleftrightarrow:"\u2194",Overrightarrow:"\u21d2",xRightarrow:"\u21d2",overleftharpoon:"\u21bc",xleftharpoonup:"\u21bc",overrightharpoon:"\u21c0",xrightharpoonup:"\u21c0",xLeftarrow:"\u21d0",xLeftrightarrow:"\u21d4",xhookleftarrow:"\u21a9",xhookrightarrow:"\u21aa",xmapsto:"\u21a6",xrightharpoondown:"\u21c1",xleftharpoondown:"\u21bd",xrightleftharpoons:"\u21cc",xleftrightharpoons:"\u21cb",xtwoheadleftarrow:"\u219e",xtwoheadrightarrow:"\u21a0",xlongequal:"=",xtofrom:"\u21c4",xrightleftarrows:"\u21c4",xrightequilibrium:"\u21cc",xleftequilibrium:"\u21cb","\\cdrightarrow":"\u2192","\\cdleftarrow":"\u2190","\\cdlongequal":"="},Tt={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]};var Bt=function(e,t,r,n,o){let s;const i=e.height+e.depth+r+n;if(/fbox|color|angl/.test(t)){if(s=Ve.makeSpan(["stretchy",t],[],o),"fbox"===t){const e=o.color&&o.getColor();e&&(s.style.borderColor=e)}}else{const e=[];/^[bx]cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));const r=new K(e,{width:"100%",height:F(i)});s=Ve.makeSvgSpan([],[r],o)}return s.height=i,s.style.height=F(i),s},Ct=function(e){const t=new gt.MathNode("mo",[new gt.TextNode(At[e.replace(/^\\/,"")])]);return t.setAttribute("stretchy","true"),t},Nt=function(e,t){const{span:r,minWidth:n,height:o}=function(){let r=4e5;const n=e.label.slice(1);if(l.contains(["widehat","widecheck","widetilde","utilde"],n)){const s="ordgroup"===(o=e.base).type?o.body.length:1;let i,a,l;if(s>5)"widehat"===n||"widecheck"===n?(i=420,r=2364,l=.42,a=n+"4"):(i=312,r=2340,l=.34,a="tilde4");else{const e=[1,1,2,2,3,3][s];"widehat"===n||"widecheck"===n?(r=[0,1062,2364,2364,2364][e],i=[0,239,300,360,420][e],l=[0,.24,.3,.3,.36,.42][e],a=n+e):(r=[0,600,1033,2339,2340][e],i=[0,260,286,306,312][e],l=[0,.26,.286,.3,.306,.34][e],a="tilde"+e)}const h=new J(a),c=new K([h],{width:"100%",height:F(l),viewBox:"0 0 "+r+" "+i,preserveAspectRatio:"none"});return{span:Ve.makeSvgSpan([],[c],t),minWidth:0,height:l}}{const e=[],o=Tt[n],[s,i,a]=o,l=a/1e3,h=s.length;let c,m;if(1===h){c=["hide-tail"],m=[o[3]]}else if(2===h)c=["halfarrow-left","halfarrow-right"],m=["xMinYMin","xMaxYMin"];else{if(3!==h)throw new Error("Correct katexImagesData or update code here to support\n "+h+" children.");c=["brace-left","brace-center","brace-right"],m=["xMinYMin","xMidYMin","xMaxYMin"]}for(let n=0;n0&&(r.style.minWidth=F(n)),r};function qt(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function It(e){const t=Rt(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function Rt(e){return e&&("atom"===e.type||re.hasOwnProperty(e.type))?e:null}const Ht=(e,t)=>{let r,n,o;e&&"supsub"===e.type?(n=qt(e.base,"accent"),r=n.base,e.base=r,o=function(e){if(e instanceof W)return e;throw new Error("Expected span but got "+String(e)+".")}(ht(e,t)),e.base=n):(n=qt(e,"accent"),r=n.base);const s=ht(r,t.havingCrampedStyle());let i=0;if(n.isShifty&&l.isCharacterBox(r)){const e=l.getBaseElem(r);i=ee(ht(e,t.havingCrampedStyle())).skew}const a="\\c"===n.label;let h,c=a?s.height+s.depth:Math.min(s.height,t.fontMetrics().xHeight);if(n.isStretchy)h=Nt(n,t),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"elem",elem:h,wrapperClasses:["svg-align"],wrapperStyle:i>0?{width:"calc(100% - "+F(2*i)+")",marginLeft:F(2*i)}:void 0}]},t);else{let e,r;"\\vec"===n.label?(e=Ve.staticSvg("vec",t),r=Ve.svgData.vec[1]):(e=Ve.makeOrd({mode:n.mode,text:n.label},t,"textord"),e=ee(e),e.italic=0,r=e.width,a&&(c+=e.depth)),h=Ve.makeSpan(["accent-body"],[e]);const o="\\textcircled"===n.label;o&&(h.classes.push("accent-full"),c=s.height);let l=i;o||(l-=r/2),h.style.left=F(l),"\\textcircled"===n.label&&(h.style.top=".2em"),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:-c},{type:"elem",elem:h}]},t)}const m=Ve.makeSpan(["mord","accent"],[h],t);return o?(o.children[0]=m,o.height=Math.max(m.height,o.height),o.classes[0]="mord",o):m},Ot=(e,t)=>{const r=e.isStretchy?Ct(e.label):new gt.MathNode("mo",[ft(e.label,e.mode)]),n=new gt.MathNode("mover",[vt(e.base,t),r]);return n.setAttribute("accent","true"),n},Et=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map((e=>"\\"+e)).join("|"));je({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:(e,t)=>{const r=Ze(t[0]),n=!Et.test(e.funcName),o=!n||"\\widehat"===e.funcName||"\\widetilde"===e.funcName||"\\widecheck"===e.funcName;return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:n,isShifty:o,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:(e,t)=>{const r=t[0];let n=e.parser.mode;return"math"===n&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),n="text"),{type:"accent",mode:n,label:e.funcName,isStretchy:!1,isShifty:!0,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"accentUnder",mode:r.mode,label:n,base:o}},htmlBuilder:(e,t)=>{const r=ht(e.base,t),n=Nt(e,t),o="\\utilde"===e.label?.12:0,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:n,wrapperClasses:["svg-align"]},{type:"kern",size:o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","accentunder"],[s],t)},mathmlBuilder:(e,t)=>{const r=Ct(e.label),n=new gt.MathNode("munder",[vt(e.base,t),r]);return n.setAttribute("accentunder","true"),n}});const Lt=e=>{const t=new gt.MathNode("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};je({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n,funcName:o}=e;return{type:"xArrow",mode:n.mode,label:o,body:t[0],below:r[0]}},htmlBuilder(e,t){const r=t.style;let n=t.havingStyle(r.sup());const o=Ve.wrapFragment(ht(e.body,n,t),t),s="\\x"===e.label.slice(0,2)?"x":"cd";let i;o.classes.push(s+"-arrow-pad"),e.below&&(n=t.havingStyle(r.sub()),i=Ve.wrapFragment(ht(e.below,n,t),t),i.classes.push(s+"-arrow-pad"));const a=Nt(e,t),l=-t.fontMetrics().axisHeight+.5*a.height;let h,c=-t.fontMetrics().axisHeight-.5*a.height-.111;if((o.depth>.25||"\\xleftequilibrium"===e.label)&&(c-=o.depth),i){const e=-t.fontMetrics().axisHeight+i.height+.5*a.height+.111;h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l},{type:"elem",elem:i,shift:e}]},t)}else h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l}]},t);return h.children[0].children[0].children[1].classes.push("svg-align"),Ve.makeSpan(["mrel","x-arrow"],[h],t)},mathmlBuilder(e,t){const r=Ct(e.label);let n;if(r.setAttribute("minsize","x"===e.label.charAt(0)?"1.75em":"3.0em"),e.body){const o=Lt(vt(e.body,t));if(e.below){const s=Lt(vt(e.below,t));n=new gt.MathNode("munderover",[r,s,o])}else n=new gt.MathNode("mover",[r,o])}else if(e.below){const o=Lt(vt(e.below,t));n=new gt.MathNode("munder",[r,o])}else n=Lt(),n=new gt.MathNode("mover",[r,n]);return n}});const Dt=Ve.makeSpan;function Vt(e,t){const r=nt(e.body,t,!0);return Dt([e.mclass],r,t)}function Pt(e,t){let r;const n=xt(e.body,t);return"minner"===e.mclass?r=new gt.MathNode("mpadded",n):"mord"===e.mclass?e.isCharacterBox?(r=n[0],r.type="mi"):r=new gt.MathNode("mi",n):(e.isCharacterBox?(r=n[0],r.type="mo"):r=new gt.MathNode("mo",n),"mbin"===e.mclass?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):"mpunct"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):"mopen"===e.mclass||"mclose"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0em"):"minner"===e.mclass&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}je({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"mclass",mode:r.mode,mclass:"m"+n.slice(5),body:Ke(o),isCharacterBox:l.isCharacterBox(o)}},htmlBuilder:Vt,mathmlBuilder:Pt});const Ft=e=>{const t="ordgroup"===e.type&&e.body.length?e.body[0]:e;return"atom"!==t.type||"bin"!==t.family&&"rel"!==t.family?"mord":"m"+t.family};je({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(e,t){let{parser:r}=e;return{type:"mclass",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[1]),isCharacterBox:l.isCharacterBox(t[1])}}}),je({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(e,t){let{parser:r,funcName:n}=e;const o=t[1],s=t[0];let i;i="\\stackrel"!==n?Ft(o):"mrel";const a={type:"op",mode:o.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:"\\stackrel"!==n,body:Ke(o)},h={type:"supsub",mode:s.mode,base:a,sup:"\\underset"===n?null:s,sub:"\\underset"===n?s:null};return{type:"mclass",mode:r.mode,mclass:i,body:[h],isCharacterBox:l.isCharacterBox(h)}},htmlBuilder:Vt,mathmlBuilder:Pt}),je({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"pmb",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[0])}},htmlBuilder(e,t){const r=nt(e.body,t,!0),n=Ve.makeSpan([e.mclass],r,t);return n.style.textShadow="0.02em 0.01em 0.04px",n},mathmlBuilder(e,t){const r=xt(e.body,t),n=new gt.MathNode("mstyle",r);return n.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),n}});const Gt={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},Ut=e=>"textord"===e.type&&"@"===e.text;function Yt(e,t,r){const n=Gt[e];switch(n){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(n,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{const e={type:"atom",text:n,mode:"math",family:"rel"},o={type:"ordgroup",mode:"math",body:[r.callFunction("\\\\cdleft",[t[0]],[]),r.callFunction("\\Big",[e],[]),r.callFunction("\\\\cdright",[t[1]],[])]};return r.callFunction("\\\\cdparent",[o],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{const e={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[e],[])}default:return{type:"textord",text:" ",mode:"math"}}}je({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"cdlabel",mode:r.mode,side:n.slice(4),label:t[0]}},htmlBuilder(e,t){const r=t.havingStyle(t.style.sup()),n=Ve.wrapFragment(ht(e.label,r,t),t);return n.classes.push("cd-label-"+e.side),n.style.bottom=F(.8-n.depth),n.height=0,n.depth=0,n},mathmlBuilder(e,t){let r=new gt.MathNode("mrow",[vt(e.label,t)]);return r=new gt.MathNode("mpadded",[r]),r.setAttribute("width","0"),"left"===e.side&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new gt.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}}),je({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(e,t){let{parser:r}=e;return{type:"cdlabelparent",mode:r.mode,fragment:t[0]}},htmlBuilder(e,t){const r=Ve.wrapFragment(ht(e.fragment,t),t);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(e,t){return new gt.MathNode("mrow",[vt(e.fragment,t)])}}),je({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;const o=qt(t[0],"ordgroup").body;let s="";for(let e=0;e=1114111)throw new n("\\@char with invalid code point "+s);return a<=65535?i=String.fromCharCode(a):(a-=65536,i=String.fromCharCode(55296+(a>>10),56320+(1023&a))),{type:"textord",mode:r.mode,text:i}}});const Xt=(e,t)=>{const r=nt(e.body,t.withColor(e.color),!1);return Ve.makeFragment(r)},Wt=(e,t)=>{const r=xt(e.body,t.withColor(e.color)),n=new gt.MathNode("mstyle",r);return n.setAttribute("mathcolor",e.color),n};je({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(e,t){let{parser:r}=e;const n=qt(t[0],"color-token").color,o=t[1];return{type:"color",mode:r.mode,color:n,body:Ke(o)}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(e,t){let{parser:r,breakOnTokenText:n}=e;const o=qt(t[0],"color-token").color;r.gullet.macros.set("\\current@color",o);const s=r.parseExpression(!0,n);return{type:"color",mode:r.mode,color:o,body:s}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(e,t,r){let{parser:n}=e;const o="["===n.gullet.future().text?n.parseSizeGroup(!0):null,s=!n.settings.displayMode||!n.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:n.mode,newLine:s,size:o&&qt(o,"size").value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mspace"],[],t);return e.newLine&&(r.classes.push("newline"),e.size&&(r.style.marginTop=F(P(e.size,t)))),r},mathmlBuilder(e,t){const r=new gt.MathNode("mspace");return e.newLine&&(r.setAttribute("linebreak","newline"),e.size&&r.setAttribute("height",F(P(e.size,t)))),r}});const _t={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},jt=e=>{const t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new n("Expected a control sequence",e);return t},$t=(e,t,r,n)=>{let o=e.gullet.macros.get(r.text);null==o&&(r.noexpand=!0,o={tokens:[r],numArgs:0,unexpandable:!e.gullet.isExpandable(r.text)}),e.gullet.macros.set(t,o,n)};je({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t,funcName:r}=e;t.consumeSpaces();const o=t.fetch();if(_t[o.text])return"\\global"!==r&&"\\\\globallong"!==r||(o.text=_t[o.text]),qt(t.parseFunction(),"internal");throw new n("Invalid token after macro prefix",o)}}),je({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e,o=t.gullet.popToken();const s=o.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(s))throw new n("Expected a control sequence",o);let i,a=0;const l=[[]];for(;"{"!==t.gullet.future().text;)if(o=t.gullet.popToken(),"#"===o.text){if("{"===t.gullet.future().text){i=t.gullet.future(),l[a].push("{");break}if(o=t.gullet.popToken(),!/^[1-9]$/.test(o.text))throw new n('Invalid argument number "'+o.text+'"');if(parseInt(o.text)!==a+1)throw new n('Argument number "'+o.text+'" out of order');a++,l.push([])}else{if("EOF"===o.text)throw new n("Expected a macro definition");l[a].push(o.text)}let{tokens:h}=t.gullet.consumeArg();return i&&h.unshift(i),"\\edef"!==r&&"\\xdef"!==r||(h=t.gullet.expandTokens(h),h.reverse()),t.gullet.macros.set(s,{tokens:h,numArgs:a,delimiters:l},r===_t[r]),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken());t.gullet.consumeSpaces();const o=(e=>{let t=e.gullet.popToken();return"="===t.text&&(t=e.gullet.popToken()," "===t.text&&(t=e.gullet.popToken())),t})(t);return $t(t,n,o,"\\\\globallet"===r),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken()),o=t.gullet.popToken(),s=t.gullet.popToken();return $t(t,n,s,"\\\\globalfuture"===r),t.gullet.pushToken(s),t.gullet.pushToken(o),{type:"internal",mode:t.mode}}});const Zt=function(e,t,r){const n=N(oe.math[e]&&oe.math[e].replace||e,t,r);if(!n)throw new Error("Unsupported symbol "+e+" and font size "+t+".");return n},Kt=function(e,t,r,n){const o=r.havingBaseStyle(t),s=Ve.makeSpan(n.concat(o.sizingClasses(r)),[e],r),i=o.sizeMultiplier/r.sizeMultiplier;return s.height*=i,s.depth*=i,s.maxFontSize=o.sizeMultiplier,s},Jt=function(e,t,r){const n=t.havingBaseStyle(r),o=(1-t.sizeMultiplier/n.sizeMultiplier)*t.fontMetrics().axisHeight;e.classes.push("delimcenter"),e.style.top=F(o),e.height-=o,e.depth+=o},Qt=function(e,t,r,n,o,s){const i=function(e,t,r,n){return Ve.makeSymbol(e,"Size"+t+"-Regular",r,n)}(e,t,o,n),a=Kt(Ve.makeSpan(["delimsizing","size"+t],[i],n),w.TEXT,n,s);return r&&Jt(a,n,w.TEXT),a},er=function(e,t,r){let n;n="Size1-Regular"===t?"delim-size1":"delim-size4";return{type:"elem",elem:Ve.makeSpan(["delimsizinginner",n],[Ve.makeSpan([],[Ve.makeSymbol(e,t,r)])])}},tr=function(e,t,r){const n=T["Size4-Regular"][e.charCodeAt(0)]?T["Size4-Regular"][e.charCodeAt(0)][4]:T["Size1-Regular"][e.charCodeAt(0)][4],o=new J("inner",function(e,t){switch(e){case"\u239c":return"M291 0 H417 V"+t+" H291z M291 0 H417 V"+t+" H291z";case"\u2223":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145z";case"\u2225":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145zM367 0 H410 V"+t+" H367z M367 0 H410 V"+t+" H367z";case"\u239f":return"M457 0 H583 V"+t+" H457z M457 0 H583 V"+t+" H457z";case"\u23a2":return"M319 0 H403 V"+t+" H319z M319 0 H403 V"+t+" H319z";case"\u23a5":return"M263 0 H347 V"+t+" H263z M263 0 H347 V"+t+" H263z";case"\u23aa":return"M384 0 H504 V"+t+" H384z M384 0 H504 V"+t+" H384z";case"\u23d0":return"M312 0 H355 V"+t+" H312z M312 0 H355 V"+t+" H312z";case"\u2016":return"M257 0 H300 V"+t+" H257z M257 0 H300 V"+t+" H257zM478 0 H521 V"+t+" H478z M478 0 H521 V"+t+" H478z";default:return""}}(e,Math.round(1e3*t))),s=new K([o],{width:F(n),height:F(t),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+Math.round(1e3*t),preserveAspectRatio:"xMinYMin"}),i=Ve.makeSvgSpan([],[s],r);return i.height=t,i.style.height=F(t),i.style.width=F(n),{type:"elem",elem:i}},rr={type:"kern",size:-.008},nr=["|","\\lvert","\\rvert","\\vert"],or=["\\|","\\lVert","\\rVert","\\Vert"],sr=function(e,t,r,n,o,s){let i,a,h,c,m="",p=0;i=h=c=e,a=null;let u="Size1-Regular";"\\uparrow"===e?h=c="\u23d0":"\\Uparrow"===e?h=c="\u2016":"\\downarrow"===e?i=h="\u23d0":"\\Downarrow"===e?i=h="\u2016":"\\updownarrow"===e?(i="\\uparrow",h="\u23d0",c="\\downarrow"):"\\Updownarrow"===e?(i="\\Uparrow",h="\u2016",c="\\Downarrow"):l.contains(nr,e)?(h="\u2223",m="vert",p=333):l.contains(or,e)?(h="\u2225",m="doublevert",p=556):"["===e||"\\lbrack"===e?(i="\u23a1",h="\u23a2",c="\u23a3",u="Size4-Regular",m="lbrack",p=667):"]"===e||"\\rbrack"===e?(i="\u23a4",h="\u23a5",c="\u23a6",u="Size4-Regular",m="rbrack",p=667):"\\lfloor"===e||"\u230a"===e?(h=i="\u23a2",c="\u23a3",u="Size4-Regular",m="lfloor",p=667):"\\lceil"===e||"\u2308"===e?(i="\u23a1",h=c="\u23a2",u="Size4-Regular",m="lceil",p=667):"\\rfloor"===e||"\u230b"===e?(h=i="\u23a5",c="\u23a6",u="Size4-Regular",m="rfloor",p=667):"\\rceil"===e||"\u2309"===e?(i="\u23a4",h=c="\u23a5",u="Size4-Regular",m="rceil",p=667):"("===e||"\\lparen"===e?(i="\u239b",h="\u239c",c="\u239d",u="Size4-Regular",m="lparen",p=875):")"===e||"\\rparen"===e?(i="\u239e",h="\u239f",c="\u23a0",u="Size4-Regular",m="rparen",p=875):"\\{"===e||"\\lbrace"===e?(i="\u23a7",a="\u23a8",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\}"===e||"\\rbrace"===e?(i="\u23ab",a="\u23ac",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lgroup"===e||"\u27ee"===e?(i="\u23a7",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\rgroup"===e||"\u27ef"===e?(i="\u23ab",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lmoustache"===e||"\u23b0"===e?(i="\u23a7",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\rmoustache"!==e&&"\u23b1"!==e||(i="\u23ab",c="\u23a9",h="\u23aa",u="Size4-Regular");const d=Zt(i,u,o),g=d.height+d.depth,f=Zt(h,u,o),b=f.height+f.depth,y=Zt(c,u,o),x=y.height+y.depth;let v=0,k=1;if(null!==a){const e=Zt(a,u,o);v=e.height+e.depth,k=2}const S=g+x+v,M=S+Math.max(0,Math.ceil((t-S)/(k*b)))*k*b;let z=n.fontMetrics().axisHeight;r&&(z*=n.sizeMultiplier);const A=M/2-z,T=[];if(m.length>0){const e=M-g-x,t=Math.round(1e3*M),r=function(e,t){switch(e){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v1759 h347 v-84\nH403z M403 1759 V0 H319 V1759 v"+t+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v1759 H0 v84 H347z\nM347 1759 V0 H263 V1759 v"+t+" v1759 h84z";case"vert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z";case"doublevert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z\nM367 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M410 15 H367 v585 v"+t+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+t+" v1715 h263 v84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+t+" v1799 H0 v-84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v602 h84z\nM403 1759 V0 H319 V1759 v"+t+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v602 h84z\nM347 1759 V0 h-84 V1759 v"+t+" v602 h84z";case"lparen":return"M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1\nc-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349,\n-36,557 l0,"+(t+84)+"c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210,\n949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9\nc0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5,\n-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189\nl0,-"+(t+92)+"c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3,\n-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z";case"rparen":return"M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3,\n63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5\nc11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,"+(t+9)+"\nc-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664\nc-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11\nc0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17\nc242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558\nl0,-"+(t+144)+"c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7,\n-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z";default:throw new Error("Unknown stretchy delimiter.")}}(m,Math.round(1e3*e)),o=new J(m,r),s=(p/1e3).toFixed(3)+"em",i=(t/1e3).toFixed(3)+"em",a=new K([o],{width:s,height:i,viewBox:"0 0 "+p+" "+t}),l=Ve.makeSvgSpan([],[a],n);l.height=t/1e3,l.style.width=s,l.style.height=i,T.push({type:"elem",elem:l})}else{if(T.push(er(c,u,o)),T.push(rr),null===a){const e=M-g-x+.016;T.push(tr(h,e,n))}else{const e=(M-g-x-v)/2+.016;T.push(tr(h,e,n)),T.push(rr),T.push(er(a,u,o)),T.push(rr),T.push(tr(h,e,n))}T.push(rr),T.push(er(i,u,o))}const B=n.havingBaseStyle(w.TEXT),C=Ve.makeVList({positionType:"bottom",positionData:A,children:T},B);return Kt(Ve.makeSpan(["delimsizing","mult"],[C],B),w.TEXT,n,s)},ir=.08,ar=function(e,t,r,n,o){const s=function(e,t,r){t*=1e3;let n="";switch(e){case"sqrtMain":n=function(e,t){return"M95,"+(622+e+t)+"\nc-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14\nc0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54\nc44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10\ns173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429\nc69,-144,104.5,-217.7,106.5,-221\nl"+e/2.075+" -"+e+"\nc5.3,-9.3,12,-14,20,-14\nH400000v"+(40+e)+"H845.2724\ns-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7\nc-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z\nM"+(834+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize1":n=function(e,t){return"M263,"+(601+e+t)+"c0.7,0,18,39.7,52,119\nc34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120\nc340,-704.7,510.7,-1060.3,512,-1067\nl"+e/2.084+" -"+e+"\nc4.7,-7.3,11,-11,19,-11\nH40000v"+(40+e)+"H1012.3\ns-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232\nc-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1\ns-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26\nc-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize2":n=function(e,t){return"M983 "+(10+e+t)+"\nl"+e/3.13+" -"+e+"\nc4,-6.7,10,-10,18,-10 H400000v"+(40+e)+"\nH1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7\ns-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744\nc-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30\nc26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722\nc56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5\nc53.7,-170.3,84.5,-266.8,92.5,-289.5z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize3":n=function(e,t){return"M424,"+(2398+e+t)+"\nc-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514\nc0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20\ns-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121\ns209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081\nl"+e/4.223+" -"+e+"c4,-6.7,10,-10,18,-10 H400000\nv"+(40+e)+"H1014.6\ns-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185\nc-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2z M"+(1001+e)+" "+t+"\nh400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize4":n=function(e,t){return"M473,"+(2713+e+t)+"\nc339.3,-1799.3,509.3,-2700,510,-2702 l"+e/5.298+" -"+e+"\nc3.3,-7.3,9.3,-11,18,-11 H400000v"+(40+e)+"H1017.7\ns-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200\nc0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26\ns76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104,\n606zM"+(1001+e)+" "+t+"h400000v"+(40+e)+"H1017.7z"}(t,M);break;case"sqrtTall":n=function(e,t,r){return"M702 "+(e+t)+"H400000"+(40+e)+"\nH742v"+(r-54-t-e)+"l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1\nh-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170\nc-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667\n219 661 l218 661zM702 "+t+"H400000v"+(40+e)+"H742z"}(t,M,r)}return n}(e,n,r),i=new J(e,s),a=new K([i],{width:"400em",height:F(t),viewBox:"0 0 400000 "+r,preserveAspectRatio:"xMinYMin slice"});return Ve.makeSvgSpan(["hide-tail"],[a],o)},lr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","\\surd"],hr=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1"],cr=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],mr=[0,1.2,1.8,2.4,3],pr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],ur=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"stack"}],dr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],gr=function(e){if("small"===e.type)return"Main-Regular";if("large"===e.type)return"Size"+e.size+"-Regular";if("stack"===e.type)return"Size4-Regular";throw new Error("Add support for delim type '"+e.type+"' here.")},fr=function(e,t,r,n){for(let o=Math.min(2,3-n.style.size);ot)return r[o]}return r[r.length-1]},br=function(e,t,r,n,o,s){let i;"<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),i=l.contains(cr,e)?pr:l.contains(lr,e)?dr:ur;const a=fr(e,t,i,n);return"small"===a.type?function(e,t,r,n,o,s){const i=Ve.makeSymbol(e,"Main-Regular",o,n),a=Kt(i,t,n,s);return r&&Jt(a,n,t),a}(e,a.style,r,n,o,s):"large"===a.type?Qt(e,a.size,r,n,o,s):sr(e,t,r,n,o,s)};var yr={sqrtImage:function(e,t){const r=t.havingBaseSizing(),n=fr("\\surd",e*r.sizeMultiplier,dr,r);let o=r.sizeMultiplier;const s=Math.max(0,t.minRuleThickness-t.fontMetrics().sqrtRuleThickness);let i,a,l=0,h=0,c=0;return"small"===n.type?(c=1e3+1e3*s+80,e<1?o=1:e<1.4&&(o=.7),l=(1+s+ir)/o,h=(1+s)/o,i=ar("sqrtMain",l,c,s,t),i.style.minWidth="0.853em",a=.833/o):"large"===n.type?(c=1080*mr[n.size],h=(mr[n.size]+s)/o,l=(mr[n.size]+s+ir)/o,i=ar("sqrtSize"+n.size,l,c,s,t),i.style.minWidth="1.02em",a=1/o):(l=e+s+ir,h=e+s,c=Math.floor(1e3*e+s)+80,i=ar("sqrtTall",l,c,s,t),i.style.minWidth="0.742em",a=1.056),i.height=h,i.style.height=F(l),{span:i,advanceWidth:a,ruleWidth:(t.fontMetrics().sqrtRuleThickness+s)*o}},sizedDelim:function(e,t,r,o,s){if("<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),l.contains(lr,e)||l.contains(cr,e))return Qt(e,t,!1,r,o,s);if(l.contains(hr,e))return sr(e,mr[t],!1,r,o,s);throw new n("Illegal delimiter: '"+e+"'")},sizeToMaxHeight:mr,customSizedDelim:br,leftRightDelim:function(e,t,r,n,o,s){const i=n.fontMetrics().axisHeight*n.sizeMultiplier,a=5/n.fontMetrics().ptPerEm,l=Math.max(t-i,r+i),h=Math.max(l/500*901,2*l-a);return br(e,h,!0,n,o,s)}};const xr={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},wr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","<",">","\\langle","\u27e8","\\rangle","\u27e9","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function vr(e,t){const r=Rt(e);if(r&&l.contains(wr,r.text))return r;throw new n(r?"Invalid delimiter '"+r.text+"' after '"+t.funcName+"'":"Invalid delimiter type '"+e.type+"'",e)}function kr(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}je({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:(e,t)=>{const r=vr(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:xr[e.funcName].size,mclass:xr[e.funcName].mclass,delim:r.text}},htmlBuilder:(e,t)=>"."===e.delim?Ve.makeSpan([e.mclass]):yr.sizedDelim(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{const t=[];"."!==e.delim&&t.push(ft(e.delim,e.mode));const r=new gt.MathNode("mo",t);"mopen"===e.mclass||"mclose"===e.mclass?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");const n=F(yr.sizeToMaxHeight[e.size]);return r.setAttribute("minsize",n),r.setAttribute("maxsize",n),r}}),je({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=e.parser.gullet.macros.get("\\current@color");if(r&&"string"!=typeof r)throw new n("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:vr(t[0],e).text,color:r}}}),je({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e),n=e.parser;++n.leftrightDepth;const o=n.parseExpression(!1);--n.leftrightDepth,n.expect("\\right",!1);const s=qt(n.parseFunction(),"leftright-right");return{type:"leftright",mode:n.mode,body:o,left:r.text,right:s.delim,rightColor:s.color}},htmlBuilder:(e,t)=>{kr(e);const r=nt(e.body,t,!0,["mopen","mclose"]);let n,o,s=0,i=0,a=!1;for(let e=0;e{kr(e);const r=xt(e.body,t);if("."!==e.left){const t=new gt.MathNode("mo",[ft(e.left,e.mode)]);t.setAttribute("fence","true"),r.unshift(t)}if("."!==e.right){const t=new gt.MathNode("mo",[ft(e.right,e.mode)]);t.setAttribute("fence","true"),e.rightColor&&t.setAttribute("mathcolor",e.rightColor),r.push(t)}return bt(r)}}),je({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e);if(!e.parser.leftrightDepth)throw new n("\\middle without preceding \\left",r);return{type:"middle",mode:e.parser.mode,delim:r.text}},htmlBuilder:(e,t)=>{let r;if("."===e.delim)r=lt(t,[]);else{r=yr.sizedDelim(e.delim,1,t,e.mode,[]);const n={delim:e.delim,options:t};r.isMiddle=n}return r},mathmlBuilder:(e,t)=>{const r="\\vert"===e.delim||"|"===e.delim?ft("|","text"):ft(e.delim,e.mode),n=new gt.MathNode("mo",[r]);return n.setAttribute("fence","true"),n.setAttribute("lspace","0.05em"),n.setAttribute("rspace","0.05em"),n}});const Sr=(e,t)=>{const r=Ve.wrapFragment(ht(e.body,t),t),n=e.label.slice(1);let o,s=t.sizeMultiplier,i=0;const a=l.isCharacterBox(e.body);if("sout"===n)o=Ve.makeSpan(["stretchy","sout"]),o.height=t.fontMetrics().defaultRuleThickness/s,i=-.5*t.fontMetrics().xHeight;else if("phase"===n){const e=P({number:.6,unit:"pt"},t),n=P({number:.35,unit:"ex"},t);s/=t.havingBaseSizing().sizeMultiplier;const a=r.height+r.depth+e+n;r.style.paddingLeft=F(a/2+e);const l=Math.floor(1e3*a*s),c="M400000 "+(h=l)+" H0 L"+h/2+" 0 l65 45 L145 "+(h-80)+" H400000z",m=new K([new J("phase",c)],{width:"400em",height:F(l/1e3),viewBox:"0 0 400000 "+l,preserveAspectRatio:"xMinYMin slice"});o=Ve.makeSvgSpan(["hide-tail"],[m],t),o.style.height=F(a),i=r.depth+e+n}else{/cancel/.test(n)?a||r.classes.push("cancel-pad"):"angl"===n?r.classes.push("anglpad"):r.classes.push("boxpad");let s=0,l=0,h=0;/box/.test(n)?(h=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),s=t.fontMetrics().fboxsep+("colorbox"===n?0:h),l=s):"angl"===n?(h=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),s=4*h,l=Math.max(0,.25-r.depth)):(s=a?.2:0,l=s),o=Bt(r,n,s,l,t),/fbox|boxed|fcolorbox/.test(n)?(o.style.borderStyle="solid",o.style.borderWidth=F(h)):"angl"===n&&.049!==h&&(o.style.borderTopWidth=F(h),o.style.borderRightWidth=F(h)),i=r.depth+l,e.backgroundColor&&(o.style.backgroundColor=e.backgroundColor,e.borderColor&&(o.style.borderColor=e.borderColor))}var h;let c;if(e.backgroundColor)c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:i},{type:"elem",elem:r,shift:0}]},t);else{const e=/cancel|phase/.test(n)?["svg-align"]:[];c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:o,shift:i,wrapperClasses:e}]},t)}return/cancel/.test(n)&&(c.height=r.height,c.depth=r.depth),/cancel/.test(n)&&!a?Ve.makeSpan(["mord","cancel-lap"],[c],t):Ve.makeSpan(["mord"],[c],t)},Mr=(e,t)=>{let r=0;const n=new gt.MathNode(e.label.indexOf("colorbox")>-1?"mpadded":"menclose",[vt(e.body,t)]);switch(e.label){case"\\cancel":n.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":n.setAttribute("notation","downdiagonalstrike");break;case"\\phase":n.setAttribute("notation","phasorangle");break;case"\\sout":n.setAttribute("notation","horizontalstrike");break;case"\\fbox":n.setAttribute("notation","box");break;case"\\angl":n.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,n.setAttribute("width","+"+2*r+"pt"),n.setAttribute("height","+"+2*r+"pt"),n.setAttribute("lspace",r+"pt"),n.setAttribute("voffset",r+"pt"),"\\fcolorbox"===e.label){const r=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);n.setAttribute("style","border: "+r+"em solid "+String(e.borderColor))}break;case"\\xcancel":n.setAttribute("notation","updiagonalstrike downdiagonalstrike")}return e.backgroundColor&&n.setAttribute("mathbackground",e.backgroundColor),n};je({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=t[1];return{type:"enclose",mode:n.mode,label:o,backgroundColor:s,body:i}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=qt(t[1],"color-token").color,a=t[2];return{type:"enclose",mode:n.mode,label:o,backgroundColor:i,borderColor:s,body:a}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\fbox",body:t[0]}}}),je({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"enclose",mode:r.mode,label:n,body:o}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\angl",body:t[0]}}});const zr={};function Ar(e){let{type:t,names:r,props:n,handler:o,htmlBuilder:s,mathmlBuilder:i}=e;const a={type:t,numArgs:n.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:o};for(let e=0;e{if(!e.parser.settings.displayMode)throw new n("{"+e.envName+"} can be used only in display mode.")};function Rr(e){if(-1===e.indexOf("ed"))return-1===e.indexOf("*")}function Hr(e,t,r){let{hskipBeforeAndAfter:o,addJot:s,cols:i,arraystretch:a,colSeparationType:l,autoTag:h,singleRow:c,emptySingleRow:m,maxNumCols:p,leqno:u}=t;if(e.gullet.beginGroup(),c||e.gullet.macros.set("\\cr","\\\\\\relax"),!a){const t=e.gullet.expandMacroAsText("\\arraystretch");if(null==t)a=1;else if(a=parseFloat(t),!a||a<0)throw new n("Invalid \\arraystretch: "+t)}e.gullet.beginGroup();let d=[];const g=[d],f=[],b=[],y=null!=h?[]:void 0;function x(){h&&e.gullet.macros.set("\\@eqnsw","1",!0)}function w(){y&&(e.gullet.macros.get("\\df@tag")?(y.push(e.subparse([new Nr("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):y.push(Boolean(h)&&"1"===e.gullet.macros.get("\\@eqnsw")))}for(x(),b.push(qr(e));;){let t=e.parseExpression(!1,c?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup(),t={type:"ordgroup",mode:e.mode,body:t},r&&(t={type:"styling",mode:e.mode,style:r,body:[t]}),d.push(t);const o=e.fetch().text;if("&"===o){if(p&&d.length===p){if(c||l)throw new n("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else{if("\\end"===o){w(),1===d.length&&"styling"===t.type&&0===t.body[0].body.length&&(g.length>1||!m)&&g.pop(),b.length0&&(x+=.25),c.push({pos:x,isDashed:e[t]})}for(v(i[0]),r=0;r0&&(p+=y,le)))for(r=0;r=a)continue;(o>0||e.hskipBeforeAndAfter)&&(i=l.deflt(c.pregap,u),0!==i&&(z=Ve.makeSpan(["arraycolsep"],[]),z.style.width=F(i),M.push(z)));let d=[];for(r=0;r0){const e=Ve.makeLineSpan("hline",t,m),r=Ve.makeLineSpan("hdashline",t,m),n=[{type:"elem",elem:h,shift:0}];for(;c.length>0;){const t=c.pop(),o=t.pos-k;t.isDashed?n.push({type:"elem",elem:r,shift:o}):n.push({type:"elem",elem:e,shift:o})}h=Ve.makeVList({positionType:"individualShift",children:n},t)}if(0===T.length)return Ve.makeSpan(["mord"],[h],t);{let e=Ve.makeVList({positionType:"individualShift",children:T},t);return e=Ve.makeSpan(["tag"],[e],t),Ve.makeFragment([h,e])}},Lr={c:"center ",l:"left ",r:"right "},Dr=function(e,t){const r=[],n=new gt.MathNode("mtd",[],["mtr-glue"]),o=new gt.MathNode("mtd",[],["mml-eqn-num"]);for(let s=0;s0){const t=e.cols;let r="",n=!1,o=0,i=t.length;"separator"===t[0].type&&(a+="top ",o=1),"separator"===t[t.length-1].type&&(a+="bottom ",i-=1);for(let e=o;e0?"left ":"",a+=c[c.length-1].length>0?"right ":"";for(let e=1;e-1?"alignat":"align",s="split"===e.envName,i=Hr(e.parser,{cols:r,addJot:!0,autoTag:s?void 0:Rr(e.envName),emptySingleRow:!0,colSeparationType:o,maxNumCols:s?2:void 0,leqno:e.parser.settings.leqno},"display");let a,l=0;const h={type:"ordgroup",mode:e.mode,body:[]};if(t[0]&&"ordgroup"===t[0].type){let e="";for(let r=0;r0&&c&&(n=1),r[e]={type:"align",align:t,pregap:n,postgap:0}}return i.colSeparationType=c?"align":"alignat",i};Ar({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lcr".indexOf(t))return{type:"align",align:t};if("|"===t)return{type:"separator",separator:"|"};if(":"===t)return{type:"separator",separator:":"};throw new n("Unknown column alignment: "+t,e)})),o={cols:r,hskipBeforeAndAfter:!0,maxNumCols:r.length};return Hr(e.parser,o,Or(e.envName))},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){const t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")];let r="c";const o={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if("*"===e.envName.charAt(e.envName.length-1)){const t=e.parser;if(t.consumeSpaces(),"["===t.fetch().text){if(t.consume(),t.consumeSpaces(),r=t.fetch().text,-1==="lcr".indexOf(r))throw new n("Expected l or c or r",t.nextToken);t.consume(),t.consumeSpaces(),t.expect("]"),t.consume(),o.cols=[{type:"align",align:r}]}}const s=Hr(e.parser,o,Or(e.envName)),i=Math.max(0,...s.body.map((e=>e.length)));return s.cols=new Array(i).fill({type:"align",align:r}),t?{type:"leftright",mode:e.mode,body:[s],left:t[0],right:t[1],rightColor:void 0}:s},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:.5},"script");return t.colSeparationType="small",t},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lc".indexOf(t))return{type:"align",align:t};throw new n("Unknown column alignment: "+t,e)}));if(r.length>1)throw new n("{subarray} can contain only one column");let o={cols:r,hskipBeforeAndAfter:!1,arraystretch:.5};if(o=Hr(e.parser,o,"script"),o.body.length>0&&o.body[0].length>1)throw new n("{subarray} can contain only one column");return o},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},Or(e.envName));return{type:"leftright",mode:e.mode,body:[t],left:e.envName.indexOf("r")>-1?".":"\\{",right:e.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){l.contains(["gather","gather*"],e.envName)&&Ir(e);const t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Rr(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){Ir(e);const t={autoTag:Rr(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["CD"],props:{numArgs:0},handler(e){return Ir(e),function(e){const t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();const r=e.fetch().text;if("&"!==r&&"\\\\"!==r){if("\\end"===r){0===t[t.length-1].length&&t.pop();break}throw new n("Expected \\\\ or \\cr or \\end",e.nextToken)}e.consume()}let r=[];const o=[r];for(let a=0;a-1);else{if(!("<>AV".indexOf(o)>-1))throw new n('Expected one of "<>AV=|." after @',l[t]);for(let e=0;e<2;e++){let r=!0;for(let h=t+1;h{const r=e.font,n=t.withFont(r);return ht(e.body,n)},Gr=(e,t)=>{const r=e.font,n=t.withFont(r);return vt(e.body,n)},Ur={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};je({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=Ze(t[0]);let s=n;return s in Ur&&(s=Ur[s]),{type:"font",mode:r.mode,font:s.slice(1),body:o}},htmlBuilder:Fr,mathmlBuilder:Gr}),je({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:(e,t)=>{let{parser:r}=e;const n=t[0],o=l.isCharacterBox(n);return{type:"mclass",mode:r.mode,mclass:Ft(n),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:n}],isCharacterBox:o}}}),je({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n,breakOnTokenText:o}=e;const{mode:s}=r,i=r.parseExpression(!0,o);return{type:"font",mode:s,font:"math"+n.slice(1),body:{type:"ordgroup",mode:r.mode,body:i}}},htmlBuilder:Fr,mathmlBuilder:Gr});const Yr=(e,t)=>{let r=t;return"display"===e?r=r.id>=w.SCRIPT.id?r.text():w.DISPLAY:"text"===e&&r.size===w.DISPLAY.size?r=w.TEXT:"script"===e?r=w.SCRIPT:"scriptscript"===e&&(r=w.SCRIPTSCRIPT),r},Xr=(e,t)=>{const r=Yr(e.size,t.style),n=r.fracNum(),o=r.fracDen();let s;s=t.havingStyle(n);const i=ht(e.numer,s,t);if(e.continued){const e=8.5/t.fontMetrics().ptPerEm,r=3.5/t.fontMetrics().ptPerEm;i.height=i.height0?3*c:7*c,u=t.fontMetrics().denom1):(h>0?(m=t.fontMetrics().num2,p=c):(m=t.fontMetrics().num3,p=3*c),u=t.fontMetrics().denom2),l){const e=t.fontMetrics().axisHeight;m-i.depth-(e+.5*h){let r=new gt.MathNode("mfrac",[vt(e.numer,t),vt(e.denom,t)]);if(e.hasBarLine){if(e.barSize){const n=P(e.barSize,t);r.setAttribute("linethickness",F(n))}}else r.setAttribute("linethickness","0px");const n=Yr(e.size,t.style);if(n.size!==t.style.size){r=new gt.MathNode("mstyle",[r]);const e=n.size===w.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",e),r.setAttribute("scriptlevel","0")}if(null!=e.leftDelim||null!=e.rightDelim){const t=[];if(null!=e.leftDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.leftDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}if(t.push(r),null!=e.rightDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.rightDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}return bt(t)}return r};je({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];let i,a=null,l=null,h="auto";switch(n){case"\\dfrac":case"\\frac":case"\\tfrac":i=!0;break;case"\\\\atopfrac":i=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=!1,a="(",l=")";break;case"\\\\bracefrac":i=!1,a="\\{",l="\\}";break;case"\\\\brackfrac":i=!1,a="[",l="]";break;default:throw new Error("Unrecognized genfrac command")}switch(n){case"\\dfrac":case"\\dbinom":h="display";break;case"\\tfrac":case"\\tbinom":h="text"}return{type:"genfrac",mode:r.mode,continued:!1,numer:o,denom:s,hasBarLine:i,leftDelim:a,rightDelim:l,size:h,barSize:null}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:o,denom:s,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}}}),je({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(e){let t,{parser:r,funcName:n,token:o}=e;switch(n){case"\\over":t="\\frac";break;case"\\choose":t="\\binom";break;case"\\atop":t="\\\\atopfrac";break;case"\\brace":t="\\\\bracefrac";break;case"\\brack":t="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:r.mode,replaceWith:t,token:o}}});const _r=["display","text","script","scriptscript"],jr=function(e){let t=null;return e.length>0&&(t=e,t="."===t?null:t),t};je({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(e,t){let{parser:r}=e;const n=t[4],o=t[5],s=Ze(t[0]),i="atom"===s.type&&"open"===s.family?jr(s.text):null,a=Ze(t[1]),l="atom"===a.type&&"close"===a.family?jr(a.text):null,h=qt(t[2],"size");let c,m=null;h.isBlank?c=!0:(m=h.value,c=m.number>0);let p="auto",u=t[3];if("ordgroup"===u.type){if(u.body.length>0){const e=qt(u.body[0],"textord");p=_r[Number(e.text)]}}else u=qt(u,"textord"),p=_r[Number(u.text)];return{type:"genfrac",mode:r.mode,numer:n,denom:o,continued:!1,hasBarLine:c,barSize:m,leftDelim:i,rightDelim:l,size:p}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(e,t){let{parser:r,funcName:n,token:o}=e;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:qt(t[0],"size").value,token:o}}}),je({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=function(e){if(!e)throw new Error("Expected non-null, but got "+String(e));return e}(qt(t[1],"infix").size),i=t[2],a=s.number>0;return{type:"genfrac",mode:r.mode,numer:o,denom:i,continued:!1,hasBarLine:a,barSize:s,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:Xr,mathmlBuilder:Wr});const $r=(e,t)=>{const r=t.style;let n,o;"supsub"===e.type?(n=e.sup?ht(e.sup,t.havingStyle(r.sup()),t):ht(e.sub,t.havingStyle(r.sub()),t),o=qt(e.base,"horizBrace")):o=qt(e,"horizBrace");const s=ht(o.base,t.havingBaseStyle(w.DISPLAY)),i=Nt(o,t);let a;if(o.isOver?(a=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:.1},{type:"elem",elem:i}]},t),a.children[0].children[0].children[1].classes.push("svg-align")):(a=Ve.makeVList({positionType:"bottom",positionData:s.depth+.1+i.height,children:[{type:"elem",elem:i},{type:"kern",size:.1},{type:"elem",elem:s}]},t),a.children[0].children[0].children[0].classes.push("svg-align")),n){const e=Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t);a=o.isOver?Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:e},{type:"kern",size:.2},{type:"elem",elem:n}]},t):Ve.makeVList({positionType:"bottom",positionData:e.depth+.2+n.height+n.depth,children:[{type:"elem",elem:n},{type:"kern",size:.2},{type:"elem",elem:e}]},t)}return Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t)};je({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"horizBrace",mode:r.mode,label:n,isOver:/^\\over/.test(n),base:t[0]}},htmlBuilder:$r,mathmlBuilder:(e,t)=>{const r=Ct(e.label);return new gt.MathNode(e.isOver?"mover":"munder",[vt(e.base,t),r])}}),je({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[1],o=qt(t[0],"url").url;return r.settings.isTrusted({command:"\\href",url:o})?{type:"href",mode:r.mode,href:o,body:Ke(n)}:r.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{const r=nt(e.body,t,!1);return Ve.makeAnchor(e.href,[],r,t)},mathmlBuilder:(e,t)=>{let r=wt(e.body,t);return r instanceof ut||(r=new ut("mrow",[r])),r.setAttribute("href",e.href),r}}),je({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=qt(t[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:n}))return r.formatUnsupportedCmd("\\url");const o=[];for(let e=0;e{let{parser:r,funcName:o,token:s}=e;const i=qt(t[0],"raw").string,a=t[1];let l;r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");const h={};switch(o){case"\\htmlClass":h.class=i,l={command:"\\htmlClass",class:i};break;case"\\htmlId":h.id=i,l={command:"\\htmlId",id:i};break;case"\\htmlStyle":h.style=i,l={command:"\\htmlStyle",style:i};break;case"\\htmlData":{const e=i.split(",");for(let t=0;t{const r=nt(e.body,t,!1),n=["enclosing"];e.attributes.class&&n.push(...e.attributes.class.trim().split(/\s+/));const o=Ve.makeSpan(n,r,t);for(const t in e.attributes)"class"!==t&&e.attributes.hasOwnProperty(t)&&o.setAttribute(t,e.attributes[t]);return o},mathmlBuilder:(e,t)=>wt(e.body,t)}),je({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"htmlmathml",mode:r.mode,html:Ke(t[0]),mathml:Ke(t[1])}},htmlBuilder:(e,t)=>{const r=nt(e.html,t,!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>wt(e.mathml,t)});const Zr=function(e){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(e))return{number:+e,unit:"bp"};{const t=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(e);if(!t)throw new n("Invalid size: '"+e+"' in \\includegraphics");const r={number:+(t[1]+t[2]),unit:t[3]};if(!V(r))throw new n("Invalid unit: '"+r.unit+"' in \\includegraphics.");return r}};je({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:(e,t,r)=>{let{parser:o}=e,s={number:0,unit:"em"},i={number:.9,unit:"em"},a={number:0,unit:"em"},l="";if(r[0]){const e=qt(r[0],"raw").string.split(",");for(let t=0;t{const r=P(e.height,t);let n=0;e.totalheight.number>0&&(n=P(e.totalheight,t)-r);let o=0;e.width.number>0&&(o=P(e.width,t));const s={height:F(r+n)};o>0&&(s.width=F(o)),n>0&&(s.verticalAlign=F(-n));const i=new j(e.src,e.alt,s);return i.height=r,i.depth=n,i},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mglyph",[]);r.setAttribute("alt",e.alt);const n=P(e.height,t);let o=0;if(e.totalheight.number>0&&(o=P(e.totalheight,t)-n,r.setAttribute("valign",F(-o))),r.setAttribute("height",F(n+o)),e.width.number>0){const n=P(e.width,t);r.setAttribute("width",F(n))}return r.setAttribute("src",e.src),r}}),je({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=qt(t[0],"size");if(r.settings.strict){const e="m"===n[1],t="mu"===o.value.unit;e?(t||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" supports only mu units, not "+o.value.unit+" units"),"math"!==r.mode&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" works only in math mode")):t&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:o.value}},htmlBuilder(e,t){return Ve.makeGlue(e.dimension,t)},mathmlBuilder(e,t){const r=P(e.dimension,t);return new gt.SpaceNode(r)}}),je({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"lap",mode:r.mode,alignment:n.slice(5),body:o}},htmlBuilder:(e,t)=>{let r;"clap"===e.alignment?(r=Ve.makeSpan([],[ht(e.body,t)]),r=Ve.makeSpan(["inner"],[r],t)):r=Ve.makeSpan(["inner"],[ht(e.body,t)]);const n=Ve.makeSpan(["fix"],[]);let o=Ve.makeSpan([e.alignment],[r,n],t);const s=Ve.makeSpan(["strut"]);return s.style.height=F(o.height+o.depth),o.depth&&(s.style.verticalAlign=F(-o.depth)),o.children.unshift(s),o=Ve.makeSpan(["thinbox"],[o],t),Ve.makeSpan(["mord","vbox"],[o],t)},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);if("rlap"!==e.alignment){const t="llap"===e.alignment?"-1":"-0.5";r.setAttribute("lspace",t+"width")}return r.setAttribute("width","0px"),r}}),je({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){let{funcName:r,parser:n}=e;const o=n.mode;n.switchMode("math");const s="\\("===r?"\\)":"$",i=n.parseExpression(!1,s);return n.expect(s),n.switchMode(o),{type:"styling",mode:n.mode,style:"text",body:i}}}),je({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){throw new n("Mismatched "+e.funcName)}});const Kr=(e,t)=>{switch(t.style.size){case w.DISPLAY.size:return e.display;case w.TEXT.size:return e.text;case w.SCRIPT.size:return e.script;case w.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};je({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"mathchoice",mode:r.mode,display:Ke(t[0]),text:Ke(t[1]),script:Ke(t[2]),scriptscript:Ke(t[3])}},htmlBuilder:(e,t)=>{const r=Kr(e,t),n=nt(r,t,!1);return Ve.makeFragment(n)},mathmlBuilder:(e,t)=>{const r=Kr(e,t);return wt(r,t)}});const Jr=(e,t,r,n,o,s,i)=>{e=Ve.makeSpan([],[e]);const a=r&&l.isCharacterBox(r);let h,c,m;if(t){const e=ht(t,n.havingStyle(o.sup()),n);c={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing1,n.fontMetrics().bigOpSpacing3-e.depth)}}if(r){const e=ht(r,n.havingStyle(o.sub()),n);h={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing2,n.fontMetrics().bigOpSpacing4-e.height)}}if(c&&h){const t=n.fontMetrics().bigOpSpacing5+h.elem.height+h.elem.depth+h.kern+e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}else if(h){const t=e.height-i;m=Ve.makeVList({positionType:"top",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e}]},n)}else{if(!c)return e;{const t=e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}}const p=[m];if(h&&0!==s&&!a){const e=Ve.makeSpan(["mspace"],[],n);e.style.marginRight=F(s),p.unshift(e)}return Ve.makeSpan(["mop","op-limits"],p,n)},Qr=["\\smallint"],en=(e,t)=>{let r,n,o,s=!1;"supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"op"),s=!0):o=qt(e,"op");const i=t.style;let a,h=!1;if(i.size===w.DISPLAY.size&&o.symbol&&!l.contains(Qr,o.name)&&(h=!0),o.symbol){const e=h?"Size2-Regular":"Size1-Regular";let r="";if("\\oiint"!==o.name&&"\\oiiint"!==o.name||(r=o.name.slice(1),o.name="oiint"===r?"\\iint":"\\iiint"),a=Ve.makeSymbol(o.name,e,"math",t,["mop","op-symbol",h?"large-op":"small-op"]),r.length>0){const e=a.italic,n=Ve.staticSvg(r+"Size"+(h?"2":"1"),t);a=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:a,shift:0},{type:"elem",elem:n,shift:h?.08:0}]},t),o.name="\\"+r,a.classes.unshift("mop"),a.italic=e}}else if(o.body){const e=nt(o.body,t,!0);1===e.length&&e[0]instanceof Z?(a=e[0],a.classes[0]="mop"):a=Ve.makeSpan(["mop"],e,t)}else{const e=[];for(let r=1;r{let r;if(e.symbol)r=new ut("mo",[ft(e.name,e.mode)]),l.contains(Qr,e.name)&&r.setAttribute("largeop","false");else if(e.body)r=new ut("mo",xt(e.body,t));else{r=new ut("mi",[new dt(e.name.slice(1))]);const t=new ut("mo",[ft("\u2061","text")]);r=e.parentIsSupSub?new ut("mrow",[r,t]):pt([r,t])}return r},rn={"\u220f":"\\prod","\u2210":"\\coprod","\u2211":"\\sum","\u22c0":"\\bigwedge","\u22c1":"\\bigvee","\u22c2":"\\bigcap","\u22c3":"\\bigcup","\u2a00":"\\bigodot","\u2a01":"\\bigoplus","\u2a02":"\\bigotimes","\u2a04":"\\biguplus","\u2a06":"\\bigsqcup"};je({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","\u220f","\u2210","\u2211","\u22c0","\u22c1","\u22c2","\u22c3","\u2a00","\u2a01","\u2a02","\u2a04","\u2a06"],props:{numArgs:0},handler:(e,t)=>{let{parser:r,funcName:n}=e,o=n;return 1===o.length&&(o=rn[o]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:o}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:Ke(n)}},htmlBuilder:en,mathmlBuilder:tn});const nn={"\u222b":"\\int","\u222c":"\\iint","\u222d":"\\iiint","\u222e":"\\oint","\u222f":"\\oiint","\u2230":"\\oiiint"};je({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","\u222b","\u222c","\u222d","\u222e","\u222f","\u2230"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e,n=r;return 1===n.length&&(n=nn[n]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:en,mathmlBuilder:tn});const on=(e,t)=>{let r,n,o,s,i=!1;if("supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"operatorname"),i=!0):o=qt(e,"operatorname"),o.body.length>0){const e=o.body.map((e=>{const t=e.text;return"string"==typeof t?{type:"textord",mode:e.mode,text:t}:e})),r=nt(e,t.withFont("mathrm"),!0);for(let e=0;e{let{parser:r,funcName:n}=e;const o=t[0];return{type:"operatorname",mode:r.mode,body:Ke(o),alwaysHandleSupSub:"\\operatornamewithlimits"===n,limits:!1,parentIsSupSub:!1}},htmlBuilder:on,mathmlBuilder:(e,t)=>{let r=xt(e.body,t.withFont("mathrm")),n=!0;for(let e=0;ee.toText())).join("");r=[new gt.TextNode(e)]}const o=new gt.MathNode("mi",r);o.setAttribute("mathvariant","normal");const s=new gt.MathNode("mo",[ft("\u2061","text")]);return e.parentIsSupSub?new gt.MathNode("mrow",[o,s]):gt.newDocumentFragment([o,s])}}),Br("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@"),$e({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?Ve.makeFragment(nt(e.body,t,!1)):Ve.makeSpan(["mord"],nt(e.body,t,!0),t)},mathmlBuilder(e,t){return wt(e.body,t,!0)}}),je({type:"overline",names:["\\overline"],props:{numArgs:1},handler(e,t){let{parser:r}=e;const n=t[0];return{type:"overline",mode:r.mode,body:n}},htmlBuilder(e,t){const r=ht(e.body,t.havingCrampedStyle()),n=Ve.makeLineSpan("overline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*o},{type:"elem",elem:n},{type:"kern",size:o}]},t);return Ve.makeSpan(["mord","overline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("mover",[vt(e.body,t),r]);return n.setAttribute("accent","true"),n}}),je({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"phantom",mode:r.mode,body:Ke(n)}},htmlBuilder:(e,t)=>{const r=nt(e.body,t.withPhantom(),!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>{const r=xt(e.body,t);return new gt.MathNode("mphantom",r)}}),je({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"hphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{let r=Ve.makeSpan([],[ht(e.body,t.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(let e=0;e{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("height","0px"),o.setAttribute("depth","0px"),o}}),je({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"vphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{const r=Ve.makeSpan(["inner"],[ht(e.body,t.withPhantom())]),n=Ve.makeSpan(["fix"],[]);return Ve.makeSpan(["mord","rlap"],[r,n],t)},mathmlBuilder:(e,t)=>{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("width","0px"),o}}),je({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;const n=qt(t[0],"size").value,o=t[1];return{type:"raisebox",mode:r.mode,dy:n,body:o}},htmlBuilder(e,t){const r=ht(e.body,t),n=P(e.dy,t);return Ve.makeVList({positionType:"shift",positionData:-n,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){const r=new gt.MathNode("mpadded",[vt(e.body,t)]),n=e.dy.number+e.dy.unit;return r.setAttribute("voffset",n),r}}),je({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t}=e;return{type:"internal",mode:t.mode}}}),je({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,argTypes:["size","size","size"]},handler(e,t,r){let{parser:n}=e;const o=r[0],s=qt(t[0],"size"),i=qt(t[1],"size");return{type:"rule",mode:n.mode,shift:o&&qt(o,"size").value,width:s.value,height:i.value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mord","rule"],[],t),n=P(e.width,t),o=P(e.height,t),s=e.shift?P(e.shift,t):0;return r.style.borderRightWidth=F(n),r.style.borderTopWidth=F(o),r.style.bottom=F(s),r.width=n,r.height=o+s,r.depth=-s,r.maxFontSize=1.125*o*t.sizeMultiplier,r},mathmlBuilder(e,t){const r=P(e.width,t),n=P(e.height,t),o=e.shift?P(e.shift,t):0,s=t.color&&t.getColor()||"black",i=new gt.MathNode("mspace");i.setAttribute("mathbackground",s),i.setAttribute("width",F(r)),i.setAttribute("height",F(n));const a=new gt.MathNode("mpadded",[i]);return o>=0?a.setAttribute("height",F(o)):(a.setAttribute("height",F(o)),a.setAttribute("depth",F(-o))),a.setAttribute("voffset",F(o)),a}});const an=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"];je({type:"sizing",names:an,props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!1,r);return{type:"sizing",mode:o.mode,size:an.indexOf(n)+1,body:s}},htmlBuilder:(e,t)=>{const r=t.havingSize(e.size);return sn(e.body,r,t)},mathmlBuilder:(e,t)=>{const r=t.havingSize(e.size),n=xt(e.body,r),o=new gt.MathNode("mstyle",n);return o.setAttribute("mathsize",F(r.sizeMultiplier)),o}}),je({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:(e,t,r)=>{let{parser:n}=e,o=!1,s=!1;const i=r[0]&&qt(r[0],"ordgroup");if(i){let e="";for(let t=0;t{const r=Ve.makeSpan([],[ht(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return r;if(e.smashHeight&&(r.height=0,r.children))for(let e=0;e{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);return e.smashHeight&&r.setAttribute("height","0px"),e.smashDepth&&r.setAttribute("depth","0px"),r}}),je({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n}=e;const o=r[0],s=t[0];return{type:"sqrt",mode:n.mode,body:s,index:o}},htmlBuilder(e,t){let r=ht(e.body,t.havingCrampedStyle());0===r.height&&(r.height=t.fontMetrics().xHeight),r=Ve.wrapFragment(r,t);const n=t.fontMetrics().defaultRuleThickness;let o=n;t.style.idr.height+r.depth+s&&(s=(s+c-r.height-r.depth)/2);const m=a.height-r.height-s-l;r.style.paddingLeft=F(h);const p=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+m)},{type:"elem",elem:a},{type:"kern",size:l}]},t);if(e.index){const r=t.havingStyle(w.SCRIPTSCRIPT),n=ht(e.index,r,t),o=.6*(p.height-p.depth),s=Ve.makeVList({positionType:"shift",positionData:-o,children:[{type:"elem",elem:n}]},t),i=Ve.makeSpan(["root"],[s]);return Ve.makeSpan(["mord","sqrt"],[i,p],t)}return Ve.makeSpan(["mord","sqrt"],[p],t)},mathmlBuilder(e,t){const{body:r,index:n}=e;return n?new gt.MathNode("mroot",[vt(r,t),vt(n,t)]):new gt.MathNode("msqrt",[vt(r,t)])}});const ln={display:w.DISPLAY,text:w.TEXT,script:w.SCRIPT,scriptscript:w.SCRIPTSCRIPT};je({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e,t){let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!0,r),i=n.slice(1,n.length-5);return{type:"styling",mode:o.mode,style:i,body:s}},htmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r).withFont("");return sn(e.body,n,t)},mathmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r),o=xt(e.body,n),s=new gt.MathNode("mstyle",o),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]}[e.style];return s.setAttribute("scriptlevel",i[0]),s.setAttribute("displaystyle",i[1]),s}});$e({type:"supsub",htmlBuilder(e,t){const r=function(e,t){const r=e.base;if(r)return"op"===r.type?r.limits&&(t.style.size===w.DISPLAY.size||r.alwaysHandleSupSub)?en:null:"operatorname"===r.type?r.alwaysHandleSupSub&&(t.style.size===w.DISPLAY.size||r.limits)?on:null:"accent"===r.type?l.isCharacterBox(r.base)?Ht:null:"horizBrace"===r.type&&!e.sub===r.isOver?$r:null;return null}(e,t);if(r)return r(e,t);const{base:n,sup:o,sub:s}=e,i=ht(n,t);let a,h;const c=t.fontMetrics();let m=0,p=0;const u=n&&l.isCharacterBox(n);if(o){const e=t.havingStyle(t.style.sup());a=ht(o,e,t),u||(m=i.height-e.fontMetrics().supDrop*e.sizeMultiplier/t.sizeMultiplier)}if(s){const e=t.havingStyle(t.style.sub());h=ht(s,e,t),u||(p=i.depth+e.fontMetrics().subDrop*e.sizeMultiplier/t.sizeMultiplier)}let d;d=t.style===w.DISPLAY?c.sup1:t.style.cramped?c.sup3:c.sup2;const g=t.sizeMultiplier,f=F(.5/c.ptPerEm/g);let b,y=null;if(h){const t=e.base&&"op"===e.base.type&&e.base.name&&("\\oiint"===e.base.name||"\\oiiint"===e.base.name);(i instanceof Z||t)&&(y=F(-i.italic))}if(a&&h){m=Math.max(m,d,a.depth+.25*c.xHeight),p=Math.max(p,c.sub2);const e=4*c.defaultRuleThickness;if(m-a.depth-(h.height-p)0&&(m+=t,p-=t)}const r=[{type:"elem",elem:h,shift:p,marginRight:f,marginLeft:y},{type:"elem",elem:a,shift:-m,marginRight:f}];b=Ve.makeVList({positionType:"individualShift",children:r},t)}else if(h){p=Math.max(p,c.sub1,h.height-.8*c.xHeight);const e=[{type:"elem",elem:h,marginLeft:y,marginRight:f}];b=Ve.makeVList({positionType:"shift",positionData:p,children:e},t)}else{if(!a)throw new Error("supsub must have either sup or sub.");m=Math.max(m,d,a.depth+.25*c.xHeight),b=Ve.makeVList({positionType:"shift",positionData:-m,children:[{type:"elem",elem:a,marginRight:f}]},t)}const x=at(i,"right")||"mord";return Ve.makeSpan([x],[i,Ve.makeSpan(["msupsub"],[b])],t)},mathmlBuilder(e,t){let r,n,o=!1;e.base&&"horizBrace"===e.base.type&&(n=!!e.sup,n===e.base.isOver&&(o=!0,r=e.base.isOver)),!e.base||"op"!==e.base.type&&"operatorname"!==e.base.type||(e.base.parentIsSupSub=!0);const s=[vt(e.base,t)];let i;if(e.sub&&s.push(vt(e.sub,t)),e.sup&&s.push(vt(e.sup,t)),o)i=r?"mover":"munder";else if(e.sub)if(e.sup){const r=e.base;i=r&&"op"===r.type&&r.limits&&t.style===w.DISPLAY||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(t.style===w.DISPLAY||r.limits)?"munderover":"msubsup"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"munder":"msub"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"mover":"msup"}return new gt.MathNode(i,s)}}),$e({type:"atom",htmlBuilder(e,t){return Ve.mathsym(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[ft(e.text,e.mode)]);if("bin"===e.family){const n=yt(e,t);"bold-italic"===n&&r.setAttribute("mathvariant",n)}else"punct"===e.family?r.setAttribute("separator","true"):"open"!==e.family&&"close"!==e.family||r.setAttribute("stretchy","false");return r}});const hn={mi:"italic",mn:"normal",mtext:"normal"};$e({type:"mathord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"mathord")},mathmlBuilder(e,t){const r=new gt.MathNode("mi",[ft(e.text,e.mode,t)]),n=yt(e,t)||"italic";return n!==hn[r.type]&&r.setAttribute("mathvariant",n),r}}),$e({type:"textord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"textord")},mathmlBuilder(e,t){const r=ft(e.text,e.mode,t),n=yt(e,t)||"normal";let o;return o="text"===e.mode?new gt.MathNode("mtext",[r]):/[0-9]/.test(e.text)?new gt.MathNode("mn",[r]):"\\prime"===e.text?new gt.MathNode("mo",[r]):new gt.MathNode("mi",[r]),n!==hn[o.type]&&o.setAttribute("mathvariant",n),o}});const cn={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},mn={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};$e({type:"spacing",htmlBuilder(e,t){if(mn.hasOwnProperty(e.text)){const r=mn[e.text].className||"";if("text"===e.mode){const n=Ve.makeOrd(e,t,"textord");return n.classes.push(r),n}return Ve.makeSpan(["mspace",r],[Ve.mathsym(e.text,e.mode,t)],t)}if(cn.hasOwnProperty(e.text))return Ve.makeSpan(["mspace",cn[e.text]],[],t);throw new n('Unknown type of space "'+e.text+'"')},mathmlBuilder(e,t){let r;if(!mn.hasOwnProperty(e.text)){if(cn.hasOwnProperty(e.text))return new gt.MathNode("mspace");throw new n('Unknown type of space "'+e.text+'"')}return r=new gt.MathNode("mtext",[new gt.TextNode("\xa0")]),r}});const pn=()=>{const e=new gt.MathNode("mtd",[]);return e.setAttribute("width","50%"),e};$e({type:"tag",mathmlBuilder(e,t){const r=new gt.MathNode("mtable",[new gt.MathNode("mtr",[pn(),new gt.MathNode("mtd",[wt(e.body,t)]),pn(),new gt.MathNode("mtd",[wt(e.tag,t)])])]);return r.setAttribute("width","100%"),r}});const un={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},dn={"\\textbf":"textbf","\\textmd":"textmd"},gn={"\\textit":"textit","\\textup":"textup"},fn=(e,t)=>{const r=e.font;return r?un[r]?t.withTextFontFamily(un[r]):dn[r]?t.withTextFontWeight(dn[r]):"\\emph"===r?"textit"===t.fontShape?t.withTextFontShape("textup"):t.withTextFontShape("textit"):t.withTextFontShape(gn[r]):t};je({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"text",mode:r.mode,body:Ke(o),font:n}},htmlBuilder(e,t){const r=fn(e,t),n=nt(e.body,r,!0);return Ve.makeSpan(["mord","text"],n,r)},mathmlBuilder(e,t){const r=fn(e,t);return wt(e.body,r)}}),je({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"underline",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=Ve.makeLineSpan("underline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:o},{type:"elem",elem:n},{type:"kern",size:3*o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","underline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("munder",[vt(e.body,t),r]);return n.setAttribute("accentunder","true"),n}}),je({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"vcenter",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=t.fontMetrics().axisHeight,o=.5*(r.height-n-(r.depth+n));return Ve.makeVList({positionType:"shift",positionData:o,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){return new gt.MathNode("mpadded",[vt(e.body,t)],["vcenter"])}}),je({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(e,t,r){throw new n("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){const r=bn(e),n=[],o=t.havingStyle(t.style.text());for(let t=0;te.body.replace(/ /g,e.star?"\u2423":"\xa0");var yn=Xe;const xn="[ \r\n\t]",wn="(\\\\[a-zA-Z@]+)"+xn+"*",vn="[\u0300-\u036f]",kn=new RegExp(vn+"+$"),Sn="("+xn+"+)|\\\\(\n|[ \r\t]+\n?)[ \r\t]*|([!-\\[\\]-\u2027\u202a-\ud7ff\uf900-\uffff]"+vn+"*|[\ud800-\udbff][\udc00-\udfff]"+vn+"*|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5|"+wn+"|\\\\[^\ud800-\udfff])";class Mn{constructor(e,t){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=e,this.settings=t,this.tokenRegex=new RegExp(Sn,"g"),this.catcodes={"%":14,"~":13}}setCatcode(e,t){this.catcodes[e]=t}lex(){const e=this.input,t=this.tokenRegex.lastIndex;if(t===e.length)return new Nr("EOF",new Cr(this,t,t));const r=this.tokenRegex.exec(e);if(null===r||r.index!==t)throw new n("Unexpected character: '"+e[t]+"'",new Nr(e[t],new Cr(this,t,t+1)));const o=r[6]||r[3]||(r[2]?"\\ ":" ");if(14===this.catcodes[o]){const t=e.indexOf("\n",this.tokenRegex.lastIndex);return-1===t?(this.tokenRegex.lastIndex=e.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=t+1,this.lex()}return new Nr(o,new Cr(this,t,this.tokenRegex.lastIndex))}}class zn{constructor(e,t){void 0===e&&(e={}),void 0===t&&(t={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=t,this.builtins=e,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(0===this.undefStack.length)throw new n("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");const e=this.undefStack.pop();for(const t in e)e.hasOwnProperty(t)&&(null==e[t]?delete this.current[t]:this.current[t]=e[t])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(e){return this.current.hasOwnProperty(e)||this.builtins.hasOwnProperty(e)}get(e){return this.current.hasOwnProperty(e)?this.current[e]:this.builtins[e]}set(e,t,r){if(void 0===r&&(r=!1),r){for(let t=0;t0&&(this.undefStack[this.undefStack.length-1][e]=t)}else{const t=this.undefStack[this.undefStack.length-1];t&&!t.hasOwnProperty(e)&&(t[e]=this.current[e])}null==t?delete this.current[e]:this.current[e]=t}}var An=Tr;Br("\\noexpand",(function(e){const t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}})),Br("\\expandafter",(function(e){const t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}})),Br("\\@firstoftwo",(function(e){return{tokens:e.consumeArgs(2)[0],numArgs:0}})),Br("\\@secondoftwo",(function(e){return{tokens:e.consumeArgs(2)[1],numArgs:0}})),Br("\\@ifnextchar",(function(e){const t=e.consumeArgs(3);e.consumeSpaces();const r=e.future();return 1===t[0].length&&t[0][0].text===r.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}})),Br("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}"),Br("\\TextOrMath",(function(e){const t=e.consumeArgs(2);return"text"===e.mode?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}}));const Tn={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};Br("\\char",(function(e){let t,r=e.popToken(),o="";if("'"===r.text)t=8,r=e.popToken();else if('"'===r.text)t=16,r=e.popToken();else if("`"===r.text)if(r=e.popToken(),"\\"===r.text[0])o=r.text.charCodeAt(1);else{if("EOF"===r.text)throw new n("\\char` missing argument");o=r.text.charCodeAt(0)}else t=10;if(t){if(o=Tn[r.text],null==o||o>=t)throw new n("Invalid base-"+t+" digit "+r.text);let s;for(;null!=(s=Tn[e.future().text])&&s{let o=e.consumeArg().tokens;if(1!==o.length)throw new n("\\newcommand's first argument must be a macro name");const s=o[0].text,i=e.isDefined(s);if(i&&!t)throw new n("\\newcommand{"+s+"} attempting to redefine "+s+"; use \\renewcommand");if(!i&&!r)throw new n("\\renewcommand{"+s+"} when command "+s+" does not yet exist; use \\newcommand");let a=0;if(o=e.consumeArg().tokens,1===o.length&&"["===o[0].text){let t="",r=e.expandNextToken();for(;"]"!==r.text&&"EOF"!==r.text;)t+=r.text,r=e.expandNextToken();if(!t.match(/^\s*[0-9]+\s*$/))throw new n("Invalid number of arguments: "+t);a=parseInt(t),o=e.consumeArg().tokens}return e.macros.set(s,{tokens:o,numArgs:a}),""};Br("\\newcommand",(e=>Bn(e,!1,!0))),Br("\\renewcommand",(e=>Bn(e,!0,!1))),Br("\\providecommand",(e=>Bn(e,!0,!0))),Br("\\message",(e=>{const t=e.consumeArgs(1)[0];return console.log(t.reverse().map((e=>e.text)).join("")),""})),Br("\\errmessage",(e=>{const t=e.consumeArgs(1)[0];return console.error(t.reverse().map((e=>e.text)).join("")),""})),Br("\\show",(e=>{const t=e.popToken(),r=t.text;return console.log(t,e.macros.get(r),yn[r],oe.math[r],oe.text[r]),""})),Br("\\bgroup","{"),Br("\\egroup","}"),Br("~","\\nobreakspace"),Br("\\lq","`"),Br("\\rq","'"),Br("\\aa","\\r a"),Br("\\AA","\\r A"),Br("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`\xa9}"),Br("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}"),Br("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`\xae}"),Br("\u212c","\\mathscr{B}"),Br("\u2130","\\mathscr{E}"),Br("\u2131","\\mathscr{F}"),Br("\u210b","\\mathscr{H}"),Br("\u2110","\\mathscr{I}"),Br("\u2112","\\mathscr{L}"),Br("\u2133","\\mathscr{M}"),Br("\u211b","\\mathscr{R}"),Br("\u212d","\\mathfrak{C}"),Br("\u210c","\\mathfrak{H}"),Br("\u2128","\\mathfrak{Z}"),Br("\\Bbbk","\\Bbb{k}"),Br("\xb7","\\cdotp"),Br("\\llap","\\mathllap{\\textrm{#1}}"),Br("\\rlap","\\mathrlap{\\textrm{#1}}"),Br("\\clap","\\mathclap{\\textrm{#1}}"),Br("\\mathstrut","\\vphantom{(}"),Br("\\underbar","\\underline{\\text{#1}}"),Br("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}'),Br("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`\u2260}}"),Br("\\ne","\\neq"),Br("\u2260","\\neq"),Br("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`\u2209}}"),Br("\u2209","\\notin"),Br("\u2258","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`\u2258}}"),Br("\u2259","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`\u2258}}"),Br("\u225a","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`\u225a}}"),Br("\u225b","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`\u225b}}"),Br("\u225d","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`\u225d}}"),Br("\u225e","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`\u225e}}"),Br("\u225f","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`\u225f}}"),Br("\u27c2","\\perp"),Br("\u203c","\\mathclose{!\\mkern-0.8mu!}"),Br("\u220c","\\notni"),Br("\u231c","\\ulcorner"),Br("\u231d","\\urcorner"),Br("\u231e","\\llcorner"),Br("\u231f","\\lrcorner"),Br("\xa9","\\copyright"),Br("\xae","\\textregistered"),Br("\ufe0f","\\textregistered"),Br("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}'),Br("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}'),Br("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}'),Br("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}'),Br("\\vdots","\\mathord{\\varvdots\\rule{0pt}{15pt}}"),Br("\u22ee","\\vdots"),Br("\\varGamma","\\mathit{\\Gamma}"),Br("\\varDelta","\\mathit{\\Delta}"),Br("\\varTheta","\\mathit{\\Theta}"),Br("\\varLambda","\\mathit{\\Lambda}"),Br("\\varXi","\\mathit{\\Xi}"),Br("\\varPi","\\mathit{\\Pi}"),Br("\\varSigma","\\mathit{\\Sigma}"),Br("\\varUpsilon","\\mathit{\\Upsilon}"),Br("\\varPhi","\\mathit{\\Phi}"),Br("\\varPsi","\\mathit{\\Psi}"),Br("\\varOmega","\\mathit{\\Omega}"),Br("\\substack","\\begin{subarray}{c}#1\\end{subarray}"),Br("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax"),Br("\\boxed","\\fbox{$\\displaystyle{#1}$}"),Br("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;"),Br("\\implies","\\DOTSB\\;\\Longrightarrow\\;"),Br("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");const Cn={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};Br("\\dots",(function(e){let t="\\dotso";const r=e.expandAfterFuture().text;return r in Cn?t=Cn[r]:("\\not"===r.slice(0,4)||r in oe.math&&l.contains(["bin","rel"],oe.math[r].group))&&(t="\\dotsb"),t}));const Nn={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};Br("\\dotso",(function(e){return e.future().text in Nn?"\\ldots\\,":"\\ldots"})),Br("\\dotsc",(function(e){const t=e.future().text;return t in Nn&&","!==t?"\\ldots\\,":"\\ldots"})),Br("\\cdots",(function(e){return e.future().text in Nn?"\\@cdots\\,":"\\@cdots"})),Br("\\dotsb","\\cdots"),Br("\\dotsm","\\cdots"),Br("\\dotsi","\\!\\cdots"),Br("\\dotsx","\\ldots\\,"),Br("\\DOTSI","\\relax"),Br("\\DOTSB","\\relax"),Br("\\DOTSX","\\relax"),Br("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax"),Br("\\,","\\tmspace+{3mu}{.1667em}"),Br("\\thinspace","\\,"),Br("\\>","\\mskip{4mu}"),Br("\\:","\\tmspace+{4mu}{.2222em}"),Br("\\medspace","\\:"),Br("\\;","\\tmspace+{5mu}{.2777em}"),Br("\\thickspace","\\;"),Br("\\!","\\tmspace-{3mu}{.1667em}"),Br("\\negthinspace","\\!"),Br("\\negmedspace","\\tmspace-{4mu}{.2222em}"),Br("\\negthickspace","\\tmspace-{5mu}{.277em}"),Br("\\enspace","\\kern.5em "),Br("\\enskip","\\hskip.5em\\relax"),Br("\\quad","\\hskip1em\\relax"),Br("\\qquad","\\hskip2em\\relax"),Br("\\tag","\\@ifstar\\tag@literal\\tag@paren"),Br("\\tag@paren","\\tag@literal{({#1})}"),Br("\\tag@literal",(e=>{if(e.macros.get("\\df@tag"))throw new n("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"})),Br("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}"),Br("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)"),Br("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}"),Br("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1"),Br("\\newline","\\\\\\relax"),Br("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");const qn=F(T["Main-Regular"]["T".charCodeAt(0)][1]-.7*T["Main-Regular"]["A".charCodeAt(0)][1]);Br("\\LaTeX","\\textrm{\\html@mathml{L\\kern-.36em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{LaTeX}}"),Br("\\KaTeX","\\textrm{\\html@mathml{K\\kern-.17em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{KaTeX}}"),Br("\\hspace","\\@ifstar\\@hspacer\\@hspace"),Br("\\@hspace","\\hskip #1\\relax"),Br("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax"),Br("\\ordinarycolon",":"),Br("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}"),Br("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}'),Br("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}'),Br("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}'),Br("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}'),Br("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}'),Br("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}'),Br("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}'),Br("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}'),Br("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}'),Br("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}'),Br("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}'),Br("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}'),Br("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}'),Br("\u2237","\\dblcolon"),Br("\u2239","\\eqcolon"),Br("\u2254","\\coloneqq"),Br("\u2255","\\eqqcolon"),Br("\u2a74","\\Coloneqq"),Br("\\ratio","\\vcentcolon"),Br("\\coloncolon","\\dblcolon"),Br("\\colonequals","\\coloneqq"),Br("\\coloncolonequals","\\Coloneqq"),Br("\\equalscolon","\\eqqcolon"),Br("\\equalscoloncolon","\\Eqqcolon"),Br("\\colonminus","\\coloneq"),Br("\\coloncolonminus","\\Coloneq"),Br("\\minuscolon","\\eqcolon"),Br("\\minuscoloncolon","\\Eqcolon"),Br("\\coloncolonapprox","\\Colonapprox"),Br("\\coloncolonsim","\\Colonsim"),Br("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`\u220c}}"),Br("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}"),Br("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}"),Br("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}"),Br("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}"),Br("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}"),Br("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}"),Br("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}"),Br("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}"),Br("\\gvertneqq","\\html@mathml{\\@gvertneqq}{\u2269}"),Br("\\lvertneqq","\\html@mathml{\\@lvertneqq}{\u2268}"),Br("\\ngeqq","\\html@mathml{\\@ngeqq}{\u2271}"),Br("\\ngeqslant","\\html@mathml{\\@ngeqslant}{\u2271}"),Br("\\nleqq","\\html@mathml{\\@nleqq}{\u2270}"),Br("\\nleqslant","\\html@mathml{\\@nleqslant}{\u2270}"),Br("\\nshortmid","\\html@mathml{\\@nshortmid}{\u2224}"),Br("\\nshortparallel","\\html@mathml{\\@nshortparallel}{\u2226}"),Br("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{\u2288}"),Br("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{\u2289}"),Br("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{\u228a}"),Br("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{\u2acb}"),Br("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{\u228b}"),Br("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{\u2acc}"),Br("\\imath","\\html@mathml{\\@imath}{\u0131}"),Br("\\jmath","\\html@mathml{\\@jmath}{\u0237}"),Br("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`\u27e6}}"),Br("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`\u27e7}}"),Br("\u27e6","\\llbracket"),Br("\u27e7","\\rrbracket"),Br("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`\u2983}}"),Br("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`\u2984}}"),Br("\u2983","\\lBrace"),Br("\u2984","\\rBrace"),Br("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`\u29b5}}"),Br("\u29b5","\\minuso"),Br("\\darr","\\downarrow"),Br("\\dArr","\\Downarrow"),Br("\\Darr","\\Downarrow"),Br("\\lang","\\langle"),Br("\\rang","\\rangle"),Br("\\uarr","\\uparrow"),Br("\\uArr","\\Uparrow"),Br("\\Uarr","\\Uparrow"),Br("\\N","\\mathbb{N}"),Br("\\R","\\mathbb{R}"),Br("\\Z","\\mathbb{Z}"),Br("\\alef","\\aleph"),Br("\\alefsym","\\aleph"),Br("\\Alpha","\\mathrm{A}"),Br("\\Beta","\\mathrm{B}"),Br("\\bull","\\bullet"),Br("\\Chi","\\mathrm{X}"),Br("\\clubs","\\clubsuit"),Br("\\cnums","\\mathbb{C}"),Br("\\Complex","\\mathbb{C}"),Br("\\Dagger","\\ddagger"),Br("\\diamonds","\\diamondsuit"),Br("\\empty","\\emptyset"),Br("\\Epsilon","\\mathrm{E}"),Br("\\Eta","\\mathrm{H}"),Br("\\exist","\\exists"),Br("\\harr","\\leftrightarrow"),Br("\\hArr","\\Leftrightarrow"),Br("\\Harr","\\Leftrightarrow"),Br("\\hearts","\\heartsuit"),Br("\\image","\\Im"),Br("\\infin","\\infty"),Br("\\Iota","\\mathrm{I}"),Br("\\isin","\\in"),Br("\\Kappa","\\mathrm{K}"),Br("\\larr","\\leftarrow"),Br("\\lArr","\\Leftarrow"),Br("\\Larr","\\Leftarrow"),Br("\\lrarr","\\leftrightarrow"),Br("\\lrArr","\\Leftrightarrow"),Br("\\Lrarr","\\Leftrightarrow"),Br("\\Mu","\\mathrm{M}"),Br("\\natnums","\\mathbb{N}"),Br("\\Nu","\\mathrm{N}"),Br("\\Omicron","\\mathrm{O}"),Br("\\plusmn","\\pm"),Br("\\rarr","\\rightarrow"),Br("\\rArr","\\Rightarrow"),Br("\\Rarr","\\Rightarrow"),Br("\\real","\\Re"),Br("\\reals","\\mathbb{R}"),Br("\\Reals","\\mathbb{R}"),Br("\\Rho","\\mathrm{P}"),Br("\\sdot","\\cdot"),Br("\\sect","\\S"),Br("\\spades","\\spadesuit"),Br("\\sub","\\subset"),Br("\\sube","\\subseteq"),Br("\\supe","\\supseteq"),Br("\\Tau","\\mathrm{T}"),Br("\\thetasym","\\vartheta"),Br("\\weierp","\\wp"),Br("\\Zeta","\\mathrm{Z}"),Br("\\argmin","\\DOTSB\\operatorname*{arg\\,min}"),Br("\\argmax","\\DOTSB\\operatorname*{arg\\,max}"),Br("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits"),Br("\\bra","\\mathinner{\\langle{#1}|}"),Br("\\ket","\\mathinner{|{#1}\\rangle}"),Br("\\braket","\\mathinner{\\langle{#1}\\rangle}"),Br("\\Bra","\\left\\langle#1\\right|"),Br("\\Ket","\\left|#1\\right\\rangle");const In=e=>t=>{const r=t.consumeArg().tokens,n=t.consumeArg().tokens,o=t.consumeArg().tokens,s=t.consumeArg().tokens,i=t.macros.get("|"),a=t.macros.get("\\|");t.macros.beginGroup();const l=t=>r=>{e&&(r.macros.set("|",i),o.length&&r.macros.set("\\|",a));let s=t;if(!t&&o.length){"|"===r.future().text&&(r.popToken(),s=!0)}return{tokens:s?o:n,numArgs:0}};t.macros.set("|",l(!1)),o.length&&t.macros.set("\\|",l(!0));const h=t.consumeArg().tokens,c=t.expandTokens([...s,...h,...r]);return t.macros.endGroup(),{tokens:c.reverse(),numArgs:0}};Br("\\bra@ket",In(!1)),Br("\\bra@set",In(!0)),Br("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}"),Br("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}"),Br("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}"),Br("\\angln","{\\angl n}"),Br("\\blue","\\textcolor{##6495ed}{#1}"),Br("\\orange","\\textcolor{##ffa500}{#1}"),Br("\\pink","\\textcolor{##ff00af}{#1}"),Br("\\red","\\textcolor{##df0030}{#1}"),Br("\\green","\\textcolor{##28ae7b}{#1}"),Br("\\gray","\\textcolor{gray}{#1}"),Br("\\purple","\\textcolor{##9d38bd}{#1}"),Br("\\blueA","\\textcolor{##ccfaff}{#1}"),Br("\\blueB","\\textcolor{##80f6ff}{#1}"),Br("\\blueC","\\textcolor{##63d9ea}{#1}"),Br("\\blueD","\\textcolor{##11accd}{#1}"),Br("\\blueE","\\textcolor{##0c7f99}{#1}"),Br("\\tealA","\\textcolor{##94fff5}{#1}"),Br("\\tealB","\\textcolor{##26edd5}{#1}"),Br("\\tealC","\\textcolor{##01d1c1}{#1}"),Br("\\tealD","\\textcolor{##01a995}{#1}"),Br("\\tealE","\\textcolor{##208170}{#1}"),Br("\\greenA","\\textcolor{##b6ffb0}{#1}"),Br("\\greenB","\\textcolor{##8af281}{#1}"),Br("\\greenC","\\textcolor{##74cf70}{#1}"),Br("\\greenD","\\textcolor{##1fab54}{#1}"),Br("\\greenE","\\textcolor{##0d923f}{#1}"),Br("\\goldA","\\textcolor{##ffd0a9}{#1}"),Br("\\goldB","\\textcolor{##ffbb71}{#1}"),Br("\\goldC","\\textcolor{##ff9c39}{#1}"),Br("\\goldD","\\textcolor{##e07d10}{#1}"),Br("\\goldE","\\textcolor{##a75a05}{#1}"),Br("\\redA","\\textcolor{##fca9a9}{#1}"),Br("\\redB","\\textcolor{##ff8482}{#1}"),Br("\\redC","\\textcolor{##f9685d}{#1}"),Br("\\redD","\\textcolor{##e84d39}{#1}"),Br("\\redE","\\textcolor{##bc2612}{#1}"),Br("\\maroonA","\\textcolor{##ffbde0}{#1}"),Br("\\maroonB","\\textcolor{##ff92c6}{#1}"),Br("\\maroonC","\\textcolor{##ed5fa6}{#1}"),Br("\\maroonD","\\textcolor{##ca337c}{#1}"),Br("\\maroonE","\\textcolor{##9e034e}{#1}"),Br("\\purpleA","\\textcolor{##ddd7ff}{#1}"),Br("\\purpleB","\\textcolor{##c6b9fc}{#1}"),Br("\\purpleC","\\textcolor{##aa87ff}{#1}"),Br("\\purpleD","\\textcolor{##7854ab}{#1}"),Br("\\purpleE","\\textcolor{##543b78}{#1}"),Br("\\mintA","\\textcolor{##f5f9e8}{#1}"),Br("\\mintB","\\textcolor{##edf2df}{#1}"),Br("\\mintC","\\textcolor{##e0e5cc}{#1}"),Br("\\grayA","\\textcolor{##f6f7f7}{#1}"),Br("\\grayB","\\textcolor{##f0f1f2}{#1}"),Br("\\grayC","\\textcolor{##e3e5e6}{#1}"),Br("\\grayD","\\textcolor{##d6d8da}{#1}"),Br("\\grayE","\\textcolor{##babec2}{#1}"),Br("\\grayF","\\textcolor{##888d93}{#1}"),Br("\\grayG","\\textcolor{##626569}{#1}"),Br("\\grayH","\\textcolor{##3b3e40}{#1}"),Br("\\grayI","\\textcolor{##21242c}{#1}"),Br("\\kaBlue","\\textcolor{##314453}{#1}"),Br("\\kaGreen","\\textcolor{##71B307}{#1}");const Rn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class Hn{constructor(e,t,r){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=t,this.expansionCount=0,this.feed(e),this.macros=new zn(An,t.macros),this.mode=r,this.stack=[]}feed(e){this.lexer=new Mn(e,this.settings)}switchMode(e){this.mode=e}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return 0===this.stack.length&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(e){this.stack.push(e)}pushTokens(e){this.stack.push(...e)}scanArgument(e){let t,r,n;if(e){if(this.consumeSpaces(),"["!==this.future().text)return null;t=this.popToken(),({tokens:n,end:r}=this.consumeArg(["]"]))}else({tokens:n,start:t,end:r}=this.consumeArg());return this.pushToken(new Nr("EOF",r.loc)),this.pushTokens(n),t.range(r,"")}consumeSpaces(){for(;;){if(" "!==this.future().text)break;this.stack.pop()}}consumeArg(e){const t=[],r=e&&e.length>0;r||this.consumeSpaces();const o=this.future();let s,i=0,a=0;do{if(s=this.popToken(),t.push(s),"{"===s.text)++i;else if("}"===s.text){if(--i,-1===i)throw new n("Extra }",s)}else if("EOF"===s.text)throw new n("Unexpected end of input in a macro argument, expected '"+(e&&r?e[a]:"}")+"'",s);if(e&&r)if((0===i||1===i&&"{"===e[a])&&s.text===e[a]){if(++a,a===e.length){t.splice(-a,a);break}}else a=0}while(0!==i||r);return"{"===o.text&&"}"===t[t.length-1].text&&(t.pop(),t.shift()),t.reverse(),{tokens:t,start:o,end:s}}consumeArgs(e,t){if(t){if(t.length!==e+1)throw new n("The length of delimiters doesn't match the number of args!");const r=t[0];for(let e=0;ethis.settings.maxExpand)throw new n("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(e){const t=this.popToken(),r=t.text,o=t.noexpand?null:this._getExpansion(r);if(null==o||e&&o.unexpandable){if(e&&null==o&&"\\"===r[0]&&!this.isDefined(r))throw new n("Undefined control sequence: "+r);return this.pushToken(t),!1}this.countExpansion(1);let s=o.tokens;const i=this.consumeArgs(o.numArgs,o.delimiters);if(o.numArgs){s=s.slice();for(let e=s.length-1;e>=0;--e){let t=s[e];if("#"===t.text){if(0===e)throw new n("Incomplete placeholder at end of macro body",t);if(t=s[--e],"#"===t.text)s.splice(e+1,1);else{if(!/^[1-9]$/.test(t.text))throw new n("Not a valid argument number",t);s.splice(e,2,...i[+t.text-1])}}}}return this.pushTokens(s),s.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(!1===this.expandOnce()){const e=this.stack.pop();return e.treatAsRelax&&(e.text="\\relax"),e}throw new Error}expandMacro(e){return this.macros.has(e)?this.expandTokens([new Nr(e)]):void 0}expandTokens(e){const t=[],r=this.stack.length;for(this.pushTokens(e);this.stack.length>r;)if(!1===this.expandOnce(!0)){const e=this.stack.pop();e.treatAsRelax&&(e.noexpand=!1,e.treatAsRelax=!1),t.push(e)}return this.countExpansion(t.length),t}expandMacroAsText(e){const t=this.expandMacro(e);return t?t.map((e=>e.text)).join(""):t}_getExpansion(e){const t=this.macros.get(e);if(null==t)return t;if(1===e.length){const t=this.lexer.catcodes[e];if(null!=t&&13!==t)return}const r="function"==typeof t?t(this):t;if("string"==typeof r){let e=0;if(-1!==r.indexOf("#")){const t=r.replace(/##/g,"");for(;-1!==t.indexOf("#"+(e+1));)++e}const t=new Mn(r,this.settings),n=[];let o=t.lex();for(;"EOF"!==o.text;)n.push(o),o=t.lex();n.reverse();return{tokens:n,numArgs:e}}return r}isDefined(e){return this.macros.has(e)||yn.hasOwnProperty(e)||oe.math.hasOwnProperty(e)||oe.text.hasOwnProperty(e)||Rn.hasOwnProperty(e)}isExpandable(e){const t=this.macros.get(e);return null!=t?"string"==typeof t||"function"==typeof t||!t.unexpandable:yn.hasOwnProperty(e)&&!yn[e].primitive}}const On=/^[\u208a\u208b\u208c\u208d\u208e\u2080\u2081\u2082\u2083\u2084\u2085\u2086\u2087\u2088\u2089\u2090\u2091\u2095\u1d62\u2c7c\u2096\u2097\u2098\u2099\u2092\u209a\u1d63\u209b\u209c\u1d64\u1d65\u2093\u1d66\u1d67\u1d68\u1d69\u1d6a]/,En=Object.freeze({"\u208a":"+","\u208b":"-","\u208c":"=","\u208d":"(","\u208e":")","\u2080":"0","\u2081":"1","\u2082":"2","\u2083":"3","\u2084":"4","\u2085":"5","\u2086":"6","\u2087":"7","\u2088":"8","\u2089":"9","\u2090":"a","\u2091":"e","\u2095":"h","\u1d62":"i","\u2c7c":"j","\u2096":"k","\u2097":"l","\u2098":"m","\u2099":"n","\u2092":"o","\u209a":"p","\u1d63":"r","\u209b":"s","\u209c":"t","\u1d64":"u","\u1d65":"v","\u2093":"x","\u1d66":"\u03b2","\u1d67":"\u03b3","\u1d68":"\u03c1","\u1d69":"\u03d5","\u1d6a":"\u03c7","\u207a":"+","\u207b":"-","\u207c":"=","\u207d":"(","\u207e":")","\u2070":"0","\xb9":"1","\xb2":"2","\xb3":"3","\u2074":"4","\u2075":"5","\u2076":"6","\u2077":"7","\u2078":"8","\u2079":"9","\u1d2c":"A","\u1d2e":"B","\u1d30":"D","\u1d31":"E","\u1d33":"G","\u1d34":"H","\u1d35":"I","\u1d36":"J","\u1d37":"K","\u1d38":"L","\u1d39":"M","\u1d3a":"N","\u1d3c":"O","\u1d3e":"P","\u1d3f":"R","\u1d40":"T","\u1d41":"U","\u2c7d":"V","\u1d42":"W","\u1d43":"a","\u1d47":"b","\u1d9c":"c","\u1d48":"d","\u1d49":"e","\u1da0":"f","\u1d4d":"g","\u02b0":"h","\u2071":"i","\u02b2":"j","\u1d4f":"k","\u02e1":"l","\u1d50":"m","\u207f":"n","\u1d52":"o","\u1d56":"p","\u02b3":"r","\u02e2":"s","\u1d57":"t","\u1d58":"u","\u1d5b":"v","\u02b7":"w","\u02e3":"x","\u02b8":"y","\u1dbb":"z","\u1d5d":"\u03b2","\u1d5e":"\u03b3","\u1d5f":"\u03b4","\u1d60":"\u03d5","\u1d61":"\u03c7","\u1dbf":"\u03b8"}),Ln={"\u0301":{text:"\\'",math:"\\acute"},"\u0300":{text:"\\`",math:"\\grave"},"\u0308":{text:'\\"',math:"\\ddot"},"\u0303":{text:"\\~",math:"\\tilde"},"\u0304":{text:"\\=",math:"\\bar"},"\u0306":{text:"\\u",math:"\\breve"},"\u030c":{text:"\\v",math:"\\check"},"\u0302":{text:"\\^",math:"\\hat"},"\u0307":{text:"\\.",math:"\\dot"},"\u030a":{text:"\\r",math:"\\mathring"},"\u030b":{text:"\\H"},"\u0327":{text:"\\c"}},Dn={"\xe1":"a\u0301","\xe0":"a\u0300","\xe4":"a\u0308","\u01df":"a\u0308\u0304","\xe3":"a\u0303","\u0101":"a\u0304","\u0103":"a\u0306","\u1eaf":"a\u0306\u0301","\u1eb1":"a\u0306\u0300","\u1eb5":"a\u0306\u0303","\u01ce":"a\u030c","\xe2":"a\u0302","\u1ea5":"a\u0302\u0301","\u1ea7":"a\u0302\u0300","\u1eab":"a\u0302\u0303","\u0227":"a\u0307","\u01e1":"a\u0307\u0304","\xe5":"a\u030a","\u01fb":"a\u030a\u0301","\u1e03":"b\u0307","\u0107":"c\u0301","\u1e09":"c\u0327\u0301","\u010d":"c\u030c","\u0109":"c\u0302","\u010b":"c\u0307","\xe7":"c\u0327","\u010f":"d\u030c","\u1e0b":"d\u0307","\u1e11":"d\u0327","\xe9":"e\u0301","\xe8":"e\u0300","\xeb":"e\u0308","\u1ebd":"e\u0303","\u0113":"e\u0304","\u1e17":"e\u0304\u0301","\u1e15":"e\u0304\u0300","\u0115":"e\u0306","\u1e1d":"e\u0327\u0306","\u011b":"e\u030c","\xea":"e\u0302","\u1ebf":"e\u0302\u0301","\u1ec1":"e\u0302\u0300","\u1ec5":"e\u0302\u0303","\u0117":"e\u0307","\u0229":"e\u0327","\u1e1f":"f\u0307","\u01f5":"g\u0301","\u1e21":"g\u0304","\u011f":"g\u0306","\u01e7":"g\u030c","\u011d":"g\u0302","\u0121":"g\u0307","\u0123":"g\u0327","\u1e27":"h\u0308","\u021f":"h\u030c","\u0125":"h\u0302","\u1e23":"h\u0307","\u1e29":"h\u0327","\xed":"i\u0301","\xec":"i\u0300","\xef":"i\u0308","\u1e2f":"i\u0308\u0301","\u0129":"i\u0303","\u012b":"i\u0304","\u012d":"i\u0306","\u01d0":"i\u030c","\xee":"i\u0302","\u01f0":"j\u030c","\u0135":"j\u0302","\u1e31":"k\u0301","\u01e9":"k\u030c","\u0137":"k\u0327","\u013a":"l\u0301","\u013e":"l\u030c","\u013c":"l\u0327","\u1e3f":"m\u0301","\u1e41":"m\u0307","\u0144":"n\u0301","\u01f9":"n\u0300","\xf1":"n\u0303","\u0148":"n\u030c","\u1e45":"n\u0307","\u0146":"n\u0327","\xf3":"o\u0301","\xf2":"o\u0300","\xf6":"o\u0308","\u022b":"o\u0308\u0304","\xf5":"o\u0303","\u1e4d":"o\u0303\u0301","\u1e4f":"o\u0303\u0308","\u022d":"o\u0303\u0304","\u014d":"o\u0304","\u1e53":"o\u0304\u0301","\u1e51":"o\u0304\u0300","\u014f":"o\u0306","\u01d2":"o\u030c","\xf4":"o\u0302","\u1ed1":"o\u0302\u0301","\u1ed3":"o\u0302\u0300","\u1ed7":"o\u0302\u0303","\u022f":"o\u0307","\u0231":"o\u0307\u0304","\u0151":"o\u030b","\u1e55":"p\u0301","\u1e57":"p\u0307","\u0155":"r\u0301","\u0159":"r\u030c","\u1e59":"r\u0307","\u0157":"r\u0327","\u015b":"s\u0301","\u1e65":"s\u0301\u0307","\u0161":"s\u030c","\u1e67":"s\u030c\u0307","\u015d":"s\u0302","\u1e61":"s\u0307","\u015f":"s\u0327","\u1e97":"t\u0308","\u0165":"t\u030c","\u1e6b":"t\u0307","\u0163":"t\u0327","\xfa":"u\u0301","\xf9":"u\u0300","\xfc":"u\u0308","\u01d8":"u\u0308\u0301","\u01dc":"u\u0308\u0300","\u01d6":"u\u0308\u0304","\u01da":"u\u0308\u030c","\u0169":"u\u0303","\u1e79":"u\u0303\u0301","\u016b":"u\u0304","\u1e7b":"u\u0304\u0308","\u016d":"u\u0306","\u01d4":"u\u030c","\xfb":"u\u0302","\u016f":"u\u030a","\u0171":"u\u030b","\u1e7d":"v\u0303","\u1e83":"w\u0301","\u1e81":"w\u0300","\u1e85":"w\u0308","\u0175":"w\u0302","\u1e87":"w\u0307","\u1e98":"w\u030a","\u1e8d":"x\u0308","\u1e8b":"x\u0307","\xfd":"y\u0301","\u1ef3":"y\u0300","\xff":"y\u0308","\u1ef9":"y\u0303","\u0233":"y\u0304","\u0177":"y\u0302","\u1e8f":"y\u0307","\u1e99":"y\u030a","\u017a":"z\u0301","\u017e":"z\u030c","\u1e91":"z\u0302","\u017c":"z\u0307","\xc1":"A\u0301","\xc0":"A\u0300","\xc4":"A\u0308","\u01de":"A\u0308\u0304","\xc3":"A\u0303","\u0100":"A\u0304","\u0102":"A\u0306","\u1eae":"A\u0306\u0301","\u1eb0":"A\u0306\u0300","\u1eb4":"A\u0306\u0303","\u01cd":"A\u030c","\xc2":"A\u0302","\u1ea4":"A\u0302\u0301","\u1ea6":"A\u0302\u0300","\u1eaa":"A\u0302\u0303","\u0226":"A\u0307","\u01e0":"A\u0307\u0304","\xc5":"A\u030a","\u01fa":"A\u030a\u0301","\u1e02":"B\u0307","\u0106":"C\u0301","\u1e08":"C\u0327\u0301","\u010c":"C\u030c","\u0108":"C\u0302","\u010a":"C\u0307","\xc7":"C\u0327","\u010e":"D\u030c","\u1e0a":"D\u0307","\u1e10":"D\u0327","\xc9":"E\u0301","\xc8":"E\u0300","\xcb":"E\u0308","\u1ebc":"E\u0303","\u0112":"E\u0304","\u1e16":"E\u0304\u0301","\u1e14":"E\u0304\u0300","\u0114":"E\u0306","\u1e1c":"E\u0327\u0306","\u011a":"E\u030c","\xca":"E\u0302","\u1ebe":"E\u0302\u0301","\u1ec0":"E\u0302\u0300","\u1ec4":"E\u0302\u0303","\u0116":"E\u0307","\u0228":"E\u0327","\u1e1e":"F\u0307","\u01f4":"G\u0301","\u1e20":"G\u0304","\u011e":"G\u0306","\u01e6":"G\u030c","\u011c":"G\u0302","\u0120":"G\u0307","\u0122":"G\u0327","\u1e26":"H\u0308","\u021e":"H\u030c","\u0124":"H\u0302","\u1e22":"H\u0307","\u1e28":"H\u0327","\xcd":"I\u0301","\xcc":"I\u0300","\xcf":"I\u0308","\u1e2e":"I\u0308\u0301","\u0128":"I\u0303","\u012a":"I\u0304","\u012c":"I\u0306","\u01cf":"I\u030c","\xce":"I\u0302","\u0130":"I\u0307","\u0134":"J\u0302","\u1e30":"K\u0301","\u01e8":"K\u030c","\u0136":"K\u0327","\u0139":"L\u0301","\u013d":"L\u030c","\u013b":"L\u0327","\u1e3e":"M\u0301","\u1e40":"M\u0307","\u0143":"N\u0301","\u01f8":"N\u0300","\xd1":"N\u0303","\u0147":"N\u030c","\u1e44":"N\u0307","\u0145":"N\u0327","\xd3":"O\u0301","\xd2":"O\u0300","\xd6":"O\u0308","\u022a":"O\u0308\u0304","\xd5":"O\u0303","\u1e4c":"O\u0303\u0301","\u1e4e":"O\u0303\u0308","\u022c":"O\u0303\u0304","\u014c":"O\u0304","\u1e52":"O\u0304\u0301","\u1e50":"O\u0304\u0300","\u014e":"O\u0306","\u01d1":"O\u030c","\xd4":"O\u0302","\u1ed0":"O\u0302\u0301","\u1ed2":"O\u0302\u0300","\u1ed6":"O\u0302\u0303","\u022e":"O\u0307","\u0230":"O\u0307\u0304","\u0150":"O\u030b","\u1e54":"P\u0301","\u1e56":"P\u0307","\u0154":"R\u0301","\u0158":"R\u030c","\u1e58":"R\u0307","\u0156":"R\u0327","\u015a":"S\u0301","\u1e64":"S\u0301\u0307","\u0160":"S\u030c","\u1e66":"S\u030c\u0307","\u015c":"S\u0302","\u1e60":"S\u0307","\u015e":"S\u0327","\u0164":"T\u030c","\u1e6a":"T\u0307","\u0162":"T\u0327","\xda":"U\u0301","\xd9":"U\u0300","\xdc":"U\u0308","\u01d7":"U\u0308\u0301","\u01db":"U\u0308\u0300","\u01d5":"U\u0308\u0304","\u01d9":"U\u0308\u030c","\u0168":"U\u0303","\u1e78":"U\u0303\u0301","\u016a":"U\u0304","\u1e7a":"U\u0304\u0308","\u016c":"U\u0306","\u01d3":"U\u030c","\xdb":"U\u0302","\u016e":"U\u030a","\u0170":"U\u030b","\u1e7c":"V\u0303","\u1e82":"W\u0301","\u1e80":"W\u0300","\u1e84":"W\u0308","\u0174":"W\u0302","\u1e86":"W\u0307","\u1e8c":"X\u0308","\u1e8a":"X\u0307","\xdd":"Y\u0301","\u1ef2":"Y\u0300","\u0178":"Y\u0308","\u1ef8":"Y\u0303","\u0232":"Y\u0304","\u0176":"Y\u0302","\u1e8e":"Y\u0307","\u0179":"Z\u0301","\u017d":"Z\u030c","\u1e90":"Z\u0302","\u017b":"Z\u0307","\u03ac":"\u03b1\u0301","\u1f70":"\u03b1\u0300","\u1fb1":"\u03b1\u0304","\u1fb0":"\u03b1\u0306","\u03ad":"\u03b5\u0301","\u1f72":"\u03b5\u0300","\u03ae":"\u03b7\u0301","\u1f74":"\u03b7\u0300","\u03af":"\u03b9\u0301","\u1f76":"\u03b9\u0300","\u03ca":"\u03b9\u0308","\u0390":"\u03b9\u0308\u0301","\u1fd2":"\u03b9\u0308\u0300","\u1fd1":"\u03b9\u0304","\u1fd0":"\u03b9\u0306","\u03cc":"\u03bf\u0301","\u1f78":"\u03bf\u0300","\u03cd":"\u03c5\u0301","\u1f7a":"\u03c5\u0300","\u03cb":"\u03c5\u0308","\u03b0":"\u03c5\u0308\u0301","\u1fe2":"\u03c5\u0308\u0300","\u1fe1":"\u03c5\u0304","\u1fe0":"\u03c5\u0306","\u03ce":"\u03c9\u0301","\u1f7c":"\u03c9\u0300","\u038e":"\u03a5\u0301","\u1fea":"\u03a5\u0300","\u03ab":"\u03a5\u0308","\u1fe9":"\u03a5\u0304","\u1fe8":"\u03a5\u0306","\u038f":"\u03a9\u0301","\u1ffa":"\u03a9\u0300"};class Vn{constructor(e,t){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new Hn(e,t,this.mode),this.settings=t,this.leftrightDepth=0}expect(e,t){if(void 0===t&&(t=!0),this.fetch().text!==e)throw new n("Expected '"+e+"', got '"+this.fetch().text+"'",this.fetch());t&&this.consume()}consume(){this.nextToken=null}fetch(){return null==this.nextToken&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(e){this.mode=e,this.gullet.switchMode(e)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{const e=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),e}finally{this.gullet.endGroups()}}subparse(e){const t=this.nextToken;this.consume(),this.gullet.pushToken(new Nr("}")),this.gullet.pushTokens(e);const r=this.parseExpression(!1);return this.expect("}"),this.nextToken=t,r}parseExpression(e,t){const r=[];for(;;){"math"===this.mode&&this.consumeSpaces();const n=this.fetch();if(-1!==Vn.endOfExpression.indexOf(n.text))break;if(t&&n.text===t)break;if(e&&yn[n.text]&&yn[n.text].infix)break;const o=this.parseAtom(t);if(!o)break;"internal"!==o.type&&r.push(o)}return"text"===this.mode&&this.formLigatures(r),this.handleInfixNodes(r)}handleInfixNodes(e){let t,r=-1;for(let o=0;o=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+t[0]+'" used in math mode',e);const r=oe[this.mode][t].group,n=Cr.range(e);let s;if(te.hasOwnProperty(r)){const e=r;s={type:"atom",mode:this.mode,family:e,loc:n,text:t}}else s={type:r,mode:this.mode,loc:n,text:t};o=s}else{if(!(t.charCodeAt(0)>=128))return null;this.settings.strict&&(S(t.charCodeAt(0))?"math"===this.mode&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+t[0]+'" used in math mode',e):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+t[0]+'" ('+t.charCodeAt(0)+")",e)),o={type:"textord",mode:"text",loc:Cr.range(e),text:t}}if(this.consume(),r)for(let t=0;t15?"\u2026"+e.slice(n-15,n):e.slice(0,n),a=o+15":">","<":"<",'"':""","'":"'"},i=/[&><"']/g;const a=function(e){return"ordgroup"===e.type||"color"===e.type?1===e.body.length?a(e.body[0]):e:"font"===e.type?a(e.body):e};var l={contains:function(e,t){return-1!==e.indexOf(t)},deflt:function(e,t){return void 0===e?t:e},escape:function(e){return String(e).replace(i,(e=>s[e]))},hyphenate:function(e){return e.replace(o,"-$1").toLowerCase()},getBaseElem:a,isCharacterBox:function(e){const t=a(e);return"mathord"===t.type||"textord"===t.type||"atom"===t.type},protocolFromUrl:function(e){const t=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(e);return t?":"!==t[2]?null:/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(t[1])?t[1].toLowerCase():null:"_relative"}};const h={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand ",cliProcessor:e=>"Infinity"===e?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function c(e){if(e.default)return e.default;const t=e.type,r=Array.isArray(t)?t[0]:t;if("string"!=typeof r)return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}class m{constructor(e){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,e=e||{};for(const t in h)if(h.hasOwnProperty(t)){const r=h[t];this[t]=void 0!==e[t]?r.processor?r.processor(e[t]):e[t]:c(r)}}reportNonstrict(e,t,r){let o=this.strict;if("function"==typeof o&&(o=o(e,t,r)),o&&"ignore"!==o){if(!0===o||"error"===o)throw new n("LaTeX-incompatible input and strict mode is set to 'error': "+t+" ["+e+"]",r);"warn"===o?"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"):"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+o+"': "+t+" ["+e+"]")}}useStrictBehavior(e,t,r){let n=this.strict;if("function"==typeof n)try{n=n(e,t,r)}catch(e){n="error"}return!(!n||"ignore"===n)&&(!0===n||"error"===n||("warn"===n?("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"),!1):("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+n+"': "+t+" ["+e+"]"),!1)))}isTrusted(e){if(e.url&&!e.protocol){const t=l.protocolFromUrl(e.url);if(null==t)return!1;e.protocol=t}const t="function"==typeof this.trust?this.trust(e):this.trust;return Boolean(t)}}class p{constructor(e,t,r){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=e,this.size=t,this.cramped=r}sup(){return u[d[this.id]]}sub(){return u[g[this.id]]}fracNum(){return u[f[this.id]]}fracDen(){return u[b[this.id]]}cramp(){return u[y[this.id]]}text(){return u[x[this.id]]}isTight(){return this.size>=2}}const u=[new p(0,0,!1),new p(1,0,!0),new p(2,1,!1),new p(3,1,!0),new p(4,2,!1),new p(5,2,!0),new p(6,3,!1),new p(7,3,!0)],d=[4,5,4,5,6,7,6,7],g=[5,5,5,5,7,7,7,7],f=[2,3,4,5,6,7,6,7],b=[3,3,5,5,7,7,7,7],y=[1,1,3,3,5,5,7,7],x=[0,1,2,3,2,3,2,3];var w={DISPLAY:u[0],TEXT:u[2],SCRIPT:u[4],SCRIPTSCRIPT:u[6]};const v=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];const k=[];function S(e){for(let t=0;t=k[t]&&e<=k[t+1])return!0;return!1}v.forEach((e=>e.blocks.forEach((e=>k.push(...e)))));const M=80,z={doubleleftarrow:"M262 157\nl10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3\n 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28\n 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5\nc2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5\n 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87\n-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7\n-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z\nm8 0v40h399730v-40zm0 194v40h399730v-40z",doublerightarrow:"M399738 392l\n-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5\n 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88\n-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68\n-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18\n-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782\nc-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3\n-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z",leftarrow:"M400000 241H110l3-3c68.7-52.7 113.7-120\n 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8\n-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247\nc-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208\n 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3\n 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202\n l-3-3h399890zM100 241v40h399900v-40z",leftbrace:"M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117\n-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7\n 5-6 9-10 13-.7 1-7.3 1-20 1H6z",leftbraceunder:"M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13\n 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688\n 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7\n-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z",leftgroup:"M400000 80\nH435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0\n 435 0h399565z",leftgroupunder:"M400000 262\nH435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219\n 435 219h399565z",leftharpoon:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3\n-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5\n-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7\n-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z",leftharpoonplus:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5\n 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3\n-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7\n-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z\nm0 0v40h400000v-40z",leftharpoondown:"M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333\n 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5\n 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667\n-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z",leftharpoondownplus:"M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12\n 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7\n-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0\nv40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z",lefthook:"M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5\n-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3\n-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21\n 71.5 23h399859zM103 281v-40h399897v40z",leftlinesegment:"M40 281 V428 H0 V94 H40 V241 H400000 v40z\nM40 281 V428 H0 V94 H40 V241 H400000 v40z",leftmapsto:"M40 281 V448H0V74H40V241H400000v40z\nM40 281 V448H0V74H40V241H400000v40z",leftToFrom:"M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23\n-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8\nc28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3\n 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z",longequal:"M0 50 h400000 v40H0z m0 194h40000v40H0z\nM0 50 h400000 v40H0z m0 194h40000v40H0z",midbrace:"M200428 334\nc-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14\n-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7\n 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11\n 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z",midbraceunder:"M199572 214\nc100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14\n 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3\n 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0\n-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z",oiintSize1:"M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6\n-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z\nm368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8\n60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z",oiintSize2:"M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8\n-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z\nm502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2\nc0 110 84 276 504 276s502.4-166 502.4-276z",oiiintSize1:"M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6\n-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z\nm525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0\n85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z",oiiintSize2:"M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8\n-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z\nm770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1\nc0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z",rightarrow:"M0 241v40h399891c-47.3 35.3-84 78-110 128\n-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20\n 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7\n 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85\n-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n 151.7 139 205zm0 0v40h399900v-40z",rightbrace:"M400000 542l\n-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5\ns-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1\nc124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z",rightbraceunder:"M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3\n 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237\n-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z",rightgroup:"M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0\n 3-1 3-3v-38c-76-158-257-219-435-219H0z",rightgroupunder:"M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18\n 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z",rightharpoon:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3\n-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2\n-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58\n 69.2 92 94.5zm0 0v40h399900v-40z",rightharpoonplus:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11\n-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7\n 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z\nm0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z",rightharpoondown:"M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8\n 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5\n-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95\n-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z",rightharpoondownplus:"M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8\n 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3\n 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3\n-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z\nm0-194v40h400000v-40zm0 0v40h400000v-40z",righthook:"M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3\n 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0\n-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21\n 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z",rightlinesegment:"M399960 241 V94 h40 V428 h-40 V281 H0 v-40z\nM399960 241 V94 h40 V428 h-40 V281 H0 v-40z",rightToFrom:"M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23\n 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32\n-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142\n-167z M100 147v40h399900v-40zM0 341v40h399900v-40z",twoheadleftarrow:"M0 167c68 40\n 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69\n-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3\n-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19\n-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101\n 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z",twoheadrightarrow:"M400000 167\nc-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3\n 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42\n 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333\n-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70\n 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z",tilde1:"M200 55.538c-77 0-168 73.953-177 73.953-3 0-7\n-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0\n 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0\n 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128\n-68.267.847-113-73.952-191-73.952z",tilde2:"M344 55.266c-142 0-300.638 81.316-311.5 86.418\n-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9\n 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114\nc1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751\n 181.476 676 181.476c-149 0-189-126.21-332-126.21z",tilde3:"M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457\n-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0\n 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697\n 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696\n -338 0-409-156.573-744-156.573z",tilde4:"M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345\n-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409\n 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9\n 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409\n -175.236-744-175.236z",vec:"M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5\n3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11\n10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63\n-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1\n-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59\nH213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359\nc-16-25.333-24-45-24-59z",widehat1:"M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22\nc-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z",widehat2:"M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat3:"M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat4:"M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widecheck1:"M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1,\n-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z",widecheck2:"M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck3:"M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck4:"M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",baraboveleftarrow:"M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202\nc4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5\nc-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130\ns-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47\n121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6\ns2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11\nc0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z\nM100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z",rightarrowabovebar:"M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32\n-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0\n13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39\n-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5\n-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z",baraboveshortleftharpoon:"M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17\nc2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21\nc-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40\nc-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z\nM0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z",rightharpoonaboveshortbar:"M0,241 l0,40c399126,0,399993,0,399993,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z",shortbaraboveleftharpoon:"M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9,\n1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7,\n-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z\nM93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z",shortrightharpoonabovebar:"M53,241l0,40c398570,0,399437,0,399437,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z"};class A{constructor(e){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=e,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createDocumentFragment();for(let t=0;te.toText())).join("")}}var T={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}};const B={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},C={"\xc5":"A","\xd0":"D","\xde":"o","\xe5":"a","\xf0":"d","\xfe":"o","\u0410":"A","\u0411":"B","\u0412":"B","\u0413":"F","\u0414":"A","\u0415":"E","\u0416":"K","\u0417":"3","\u0418":"N","\u0419":"N","\u041a":"K","\u041b":"N","\u041c":"M","\u041d":"H","\u041e":"O","\u041f":"N","\u0420":"P","\u0421":"C","\u0422":"T","\u0423":"y","\u0424":"O","\u0425":"X","\u0426":"U","\u0427":"h","\u0428":"W","\u0429":"W","\u042a":"B","\u042b":"X","\u042c":"B","\u042d":"3","\u042e":"X","\u042f":"R","\u0430":"a","\u0431":"b","\u0432":"a","\u0433":"r","\u0434":"y","\u0435":"e","\u0436":"m","\u0437":"e","\u0438":"n","\u0439":"n","\u043a":"n","\u043b":"n","\u043c":"m","\u043d":"n","\u043e":"o","\u043f":"n","\u0440":"p","\u0441":"c","\u0442":"o","\u0443":"y","\u0444":"b","\u0445":"x","\u0446":"n","\u0447":"n","\u0448":"w","\u0449":"w","\u044a":"a","\u044b":"m","\u044c":"a","\u044d":"e","\u044e":"m","\u044f":"r"};function N(e,t,r){if(!T[t])throw new Error("Font metrics not found for font: "+t+".");let n=e.charCodeAt(0),o=T[t][n];if(!o&&e[0]in C&&(n=C[e[0]].charCodeAt(0),o=T[t][n]),o||"text"!==r||S(n)&&(o=T[t][77]),o)return{depth:o[0],height:o[1],italic:o[2],skew:o[3],width:o[4]}}const q={};const I=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],R=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],H=function(e,t){return t.size<2?e:I[e-1][t.size-1]};class O{constructor(e){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=e.style,this.color=e.color,this.size=e.size||O.BASESIZE,this.textSize=e.textSize||this.size,this.phantom=!!e.phantom,this.font=e.font||"",this.fontFamily=e.fontFamily||"",this.fontWeight=e.fontWeight||"",this.fontShape=e.fontShape||"",this.sizeMultiplier=R[this.size-1],this.maxSize=e.maxSize,this.minRuleThickness=e.minRuleThickness,this._fontMetrics=void 0}extend(e){const t={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(const r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);return new O(t)}havingStyle(e){return this.style===e?this:this.extend({style:e,size:H(this.textSize,e)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(e){return this.size===e&&this.textSize===e?this:this.extend({style:this.style.text(),size:e,textSize:e,sizeMultiplier:R[e-1]})}havingBaseStyle(e){e=e||this.style.text();const t=H(O.BASESIZE,e);return this.size===t&&this.textSize===O.BASESIZE&&this.style===e?this:this.extend({style:e,size:t})}havingBaseSizing(){let e;switch(this.style.id){case 4:case 5:e=3;break;case 6:case 7:e=1;break;default:e=6}return this.extend({style:this.style.text(),size:e})}withColor(e){return this.extend({color:e})}withPhantom(){return this.extend({phantom:!0})}withFont(e){return this.extend({font:e})}withTextFontFamily(e){return this.extend({fontFamily:e,font:""})}withTextFontWeight(e){return this.extend({fontWeight:e,font:""})}withTextFontShape(e){return this.extend({fontShape:e,font:""})}sizingClasses(e){return e.size!==this.size?["sizing","reset-size"+e.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==O.BASESIZE?["sizing","reset-size"+this.size,"size"+O.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=function(e){let t;if(t=e>=5?0:e>=3?1:2,!q[t]){const e=q[t]={cssEmPerMu:B.quad[t]/18};for(const r in B)B.hasOwnProperty(r)&&(e[r]=B[r][t])}return q[t]}(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}O.BASESIZE=6;var E=O;const L={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:1.00375,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:1.00375},D={ex:!0,em:!0,mu:!0},V=function(e){return"string"!=typeof e&&(e=e.unit),e in L||e in D||"ex"===e},P=function(e,t){let r;if(e.unit in L)r=L[e.unit]/t.fontMetrics().ptPerEm/t.sizeMultiplier;else if("mu"===e.unit)r=t.fontMetrics().cssEmPerMu;else{let o;if(o=t.style.isTight()?t.havingStyle(t.style.text()):t,"ex"===e.unit)r=o.fontMetrics().xHeight;else{if("em"!==e.unit)throw new n("Invalid unit: '"+e.unit+"'");r=o.fontMetrics().quad}o!==t&&(r*=o.sizeMultiplier/t.sizeMultiplier)}return Math.min(e.number*r,t.maxSize)},F=function(e){return+e.toFixed(4)+"em"},G=function(e){return e.filter((e=>e)).join(" ")},U=function(e,t,r){if(this.classes=e||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},t){t.style.isTight()&&this.classes.push("mtight");const e=t.getColor();e&&(this.style.color=e)}},Y=function(e){const t=document.createElement(e);t.className=G(this.classes);for(const e in this.style)this.style.hasOwnProperty(e)&&(t.style[e]=this.style[e]);for(const e in this.attributes)this.attributes.hasOwnProperty(e)&&t.setAttribute(e,this.attributes[e]);for(let e=0;e",t};class W{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,e,r,n),this.children=t||[]}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"span")}toMarkup(){return X.call(this,"span")}}class _{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,t,n),this.children=r||[],this.setAttribute("href",e)}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"a")}toMarkup(){return X.call(this,"a")}}class j{constructor(e,t,r){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=t,this.src=e,this.classes=["mord"],this.style=r}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createElement("img");e.src=this.src,e.alt=this.alt,e.className="mord";for(const t in this.style)this.style.hasOwnProperty(t)&&(e.style[t]=this.style[t]);return e}toMarkup(){let e=''+l.escape(this.alt)+'=n[0]&&e<=n[1])return r.name}}return null}(this.text.charCodeAt(0));l&&this.classes.push(l+"_fallback"),/[\xee\xef\xed\xec]/.test(this.text)&&(this.text=$[this.text])}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createTextNode(this.text);let t=null;this.italic>0&&(t=document.createElement("span"),t.style.marginRight=F(this.italic)),this.classes.length>0&&(t=t||document.createElement("span"),t.className=G(this.classes));for(const e in this.style)this.style.hasOwnProperty(e)&&(t=t||document.createElement("span"),t.style[e]=this.style[e]);return t?(t.appendChild(e),t):e}toMarkup(){let e=!1,t="0&&(r+="margin-right:"+this.italic+"em;");for(const e in this.style)this.style.hasOwnProperty(e)&&(r+=l.hyphenate(e)+":"+this.style[e]+";");r&&(e=!0,t+=' style="'+l.escape(r)+'"');const n=l.escape(this.text);return e?(t+=">",t+=n,t+="",t):n}}class K{constructor(e,t){this.children=void 0,this.attributes=void 0,this.children=e||[],this.attributes=t||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","svg");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);for(let t=0;t':''}}class Q{constructor(e){this.attributes=void 0,this.attributes=e||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","line");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);return e}toMarkup(){let e="","\\gt",!0),se(ie,le,ye,"\u2208","\\in",!0),se(ie,le,ye,"\ue020","\\@not"),se(ie,le,ye,"\u2282","\\subset",!0),se(ie,le,ye,"\u2283","\\supset",!0),se(ie,le,ye,"\u2286","\\subseteq",!0),se(ie,le,ye,"\u2287","\\supseteq",!0),se(ie,he,ye,"\u2288","\\nsubseteq",!0),se(ie,he,ye,"\u2289","\\nsupseteq",!0),se(ie,le,ye,"\u22a8","\\models"),se(ie,le,ye,"\u2190","\\leftarrow",!0),se(ie,le,ye,"\u2264","\\le"),se(ie,le,ye,"\u2264","\\leq",!0),se(ie,le,ye,"<","\\lt",!0),se(ie,le,ye,"\u2192","\\rightarrow",!0),se(ie,le,ye,"\u2192","\\to"),se(ie,he,ye,"\u2271","\\ngeq",!0),se(ie,he,ye,"\u2270","\\nleq",!0),se(ie,le,xe,"\xa0","\\ "),se(ie,le,xe,"\xa0","\\space"),se(ie,le,xe,"\xa0","\\nobreakspace"),se(ae,le,xe,"\xa0","\\ "),se(ae,le,xe,"\xa0"," "),se(ae,le,xe,"\xa0","\\space"),se(ae,le,xe,"\xa0","\\nobreakspace"),se(ie,le,xe,null,"\\nobreak"),se(ie,le,xe,null,"\\allowbreak"),se(ie,le,be,",",","),se(ie,le,be,";",";"),se(ie,he,me,"\u22bc","\\barwedge",!0),se(ie,he,me,"\u22bb","\\veebar",!0),se(ie,le,me,"\u2299","\\odot",!0),se(ie,le,me,"\u2295","\\oplus",!0),se(ie,le,me,"\u2297","\\otimes",!0),se(ie,le,we,"\u2202","\\partial",!0),se(ie,le,me,"\u2298","\\oslash",!0),se(ie,he,me,"\u229a","\\circledcirc",!0),se(ie,he,me,"\u22a1","\\boxdot",!0),se(ie,le,me,"\u25b3","\\bigtriangleup"),se(ie,le,me,"\u25bd","\\bigtriangledown"),se(ie,le,me,"\u2020","\\dagger"),se(ie,le,me,"\u22c4","\\diamond"),se(ie,le,me,"\u22c6","\\star"),se(ie,le,me,"\u25c3","\\triangleleft"),se(ie,le,me,"\u25b9","\\triangleright"),se(ie,le,fe,"{","\\{"),se(ae,le,we,"{","\\{"),se(ae,le,we,"{","\\textbraceleft"),se(ie,le,pe,"}","\\}"),se(ae,le,we,"}","\\}"),se(ae,le,we,"}","\\textbraceright"),se(ie,le,fe,"{","\\lbrace"),se(ie,le,pe,"}","\\rbrace"),se(ie,le,fe,"[","\\lbrack",!0),se(ae,le,we,"[","\\lbrack",!0),se(ie,le,pe,"]","\\rbrack",!0),se(ae,le,we,"]","\\rbrack",!0),se(ie,le,fe,"(","\\lparen",!0),se(ie,le,pe,")","\\rparen",!0),se(ae,le,we,"<","\\textless",!0),se(ae,le,we,">","\\textgreater",!0),se(ie,le,fe,"\u230a","\\lfloor",!0),se(ie,le,pe,"\u230b","\\rfloor",!0),se(ie,le,fe,"\u2308","\\lceil",!0),se(ie,le,pe,"\u2309","\\rceil",!0),se(ie,le,we,"\\","\\backslash"),se(ie,le,we,"\u2223","|"),se(ie,le,we,"\u2223","\\vert"),se(ae,le,we,"|","\\textbar",!0),se(ie,le,we,"\u2225","\\|"),se(ie,le,we,"\u2225","\\Vert"),se(ae,le,we,"\u2225","\\textbardbl"),se(ae,le,we,"~","\\textasciitilde"),se(ae,le,we,"\\","\\textbackslash"),se(ae,le,we,"^","\\textasciicircum"),se(ie,le,ye,"\u2191","\\uparrow",!0),se(ie,le,ye,"\u21d1","\\Uparrow",!0),se(ie,le,ye,"\u2193","\\downarrow",!0),se(ie,le,ye,"\u21d3","\\Downarrow",!0),se(ie,le,ye,"\u2195","\\updownarrow",!0),se(ie,le,ye,"\u21d5","\\Updownarrow",!0),se(ie,le,ge,"\u2210","\\coprod"),se(ie,le,ge,"\u22c1","\\bigvee"),se(ie,le,ge,"\u22c0","\\bigwedge"),se(ie,le,ge,"\u2a04","\\biguplus"),se(ie,le,ge,"\u22c2","\\bigcap"),se(ie,le,ge,"\u22c3","\\bigcup"),se(ie,le,ge,"\u222b","\\int"),se(ie,le,ge,"\u222b","\\intop"),se(ie,le,ge,"\u222c","\\iint"),se(ie,le,ge,"\u222d","\\iiint"),se(ie,le,ge,"\u220f","\\prod"),se(ie,le,ge,"\u2211","\\sum"),se(ie,le,ge,"\u2a02","\\bigotimes"),se(ie,le,ge,"\u2a01","\\bigoplus"),se(ie,le,ge,"\u2a00","\\bigodot"),se(ie,le,ge,"\u222e","\\oint"),se(ie,le,ge,"\u222f","\\oiint"),se(ie,le,ge,"\u2230","\\oiiint"),se(ie,le,ge,"\u2a06","\\bigsqcup"),se(ie,le,ge,"\u222b","\\smallint"),se(ae,le,ue,"\u2026","\\textellipsis"),se(ie,le,ue,"\u2026","\\mathellipsis"),se(ae,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u22ef","\\@cdots",!0),se(ie,le,ue,"\u22f1","\\ddots",!0),se(ie,le,we,"\u22ee","\\varvdots"),se(ie,le,ce,"\u02ca","\\acute"),se(ie,le,ce,"\u02cb","\\grave"),se(ie,le,ce,"\xa8","\\ddot"),se(ie,le,ce,"~","\\tilde"),se(ie,le,ce,"\u02c9","\\bar"),se(ie,le,ce,"\u02d8","\\breve"),se(ie,le,ce,"\u02c7","\\check"),se(ie,le,ce,"^","\\hat"),se(ie,le,ce,"\u20d7","\\vec"),se(ie,le,ce,"\u02d9","\\dot"),se(ie,le,ce,"\u02da","\\mathring"),se(ie,le,de,"\ue131","\\@imath"),se(ie,le,de,"\ue237","\\@jmath"),se(ie,le,we,"\u0131","\u0131"),se(ie,le,we,"\u0237","\u0237"),se(ae,le,we,"\u0131","\\i",!0),se(ae,le,we,"\u0237","\\j",!0),se(ae,le,we,"\xdf","\\ss",!0),se(ae,le,we,"\xe6","\\ae",!0),se(ae,le,we,"\u0153","\\oe",!0),se(ae,le,we,"\xf8","\\o",!0),se(ae,le,we,"\xc6","\\AE",!0),se(ae,le,we,"\u0152","\\OE",!0),se(ae,le,we,"\xd8","\\O",!0),se(ae,le,ce,"\u02ca","\\'"),se(ae,le,ce,"\u02cb","\\`"),se(ae,le,ce,"\u02c6","\\^"),se(ae,le,ce,"\u02dc","\\~"),se(ae,le,ce,"\u02c9","\\="),se(ae,le,ce,"\u02d8","\\u"),se(ae,le,ce,"\u02d9","\\."),se(ae,le,ce,"\xb8","\\c"),se(ae,le,ce,"\u02da","\\r"),se(ae,le,ce,"\u02c7","\\v"),se(ae,le,ce,"\xa8",'\\"'),se(ae,le,ce,"\u02dd","\\H"),se(ae,le,ce,"\u25ef","\\textcircled");const ve={"--":!0,"---":!0,"``":!0,"''":!0};se(ae,le,we,"\u2013","--",!0),se(ae,le,we,"\u2013","\\textendash"),se(ae,le,we,"\u2014","---",!0),se(ae,le,we,"\u2014","\\textemdash"),se(ae,le,we,"\u2018","`",!0),se(ae,le,we,"\u2018","\\textquoteleft"),se(ae,le,we,"\u2019","'",!0),se(ae,le,we,"\u2019","\\textquoteright"),se(ae,le,we,"\u201c","``",!0),se(ae,le,we,"\u201c","\\textquotedblleft"),se(ae,le,we,"\u201d","''",!0),se(ae,le,we,"\u201d","\\textquotedblright"),se(ie,le,we,"\xb0","\\degree",!0),se(ae,le,we,"\xb0","\\degree"),se(ae,le,we,"\xb0","\\textdegree",!0),se(ie,le,we,"\xa3","\\pounds"),se(ie,le,we,"\xa3","\\mathsterling",!0),se(ae,le,we,"\xa3","\\pounds"),se(ae,le,we,"\xa3","\\textsterling",!0),se(ie,he,we,"\u2720","\\maltese"),se(ae,he,we,"\u2720","\\maltese");const ke='0123456789/@."';for(let e=0;e{if(G(e.classes)!==G(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize)return!1;if(1===e.classes.length){const t=e.classes[0];if("mbin"===t||"mord"===t)return!1}for(const r in e.style)if(e.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;for(const r in t.style)if(t.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;return!0},Ie=function(e){let t=0,r=0,n=0;for(let o=0;ot&&(t=s.height),s.depth>r&&(r=s.depth),s.maxFontSize>n&&(n=s.maxFontSize)}e.height=t,e.depth=r,e.maxFontSize=n},Re=function(e,t,r,n){const o=new W(e,t,r,n);return Ie(o),o},He=(e,t,r,n)=>new W(e,t,r,n),Oe=function(e){const t=new A(e);return Ie(t),t},Ee=function(e,t,r){let n,o="";switch(e){case"amsrm":o="AMS";break;case"textrm":o="Main";break;case"textsf":o="SansSerif";break;case"texttt":o="Typewriter";break;default:o=e}return n="textbf"===t&&"textit"===r?"BoldItalic":"textbf"===t?"Bold":"textit"===t?"Italic":"Regular",o+"-"+n},Le={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},De={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]};var Ve={fontMap:Le,makeSymbol:Ne,mathsym:function(e,t,r,n){return void 0===n&&(n=[]),"boldsymbol"===r.font&&Ce(e,"Main-Bold",t).metrics?Ne(e,"Main-Bold",t,r,n.concat(["mathbf"])):"\\"===e||"main"===oe[t][e].font?Ne(e,"Main-Regular",t,r,n):Ne(e,"AMS-Regular",t,r,n.concat(["amsrm"]))},makeSpan:Re,makeSvgSpan:He,makeLineSpan:function(e,t,r){const n=Re([e],[],t);return n.height=Math.max(r||t.fontMetrics().defaultRuleThickness,t.minRuleThickness),n.style.borderBottomWidth=F(n.height),n.maxFontSize=1,n},makeAnchor:function(e,t,r,n){const o=new _(e,t,r,n);return Ie(o),o},makeFragment:Oe,wrapFragment:function(e,t){return e instanceof A?Re([],[e],t):e},makeVList:function(e,t){const{children:r,depth:n}=function(e){if("individualShift"===e.positionType){const t=e.children,r=[t[0]],n=-t[0].shift-t[0].elem.depth;let o=n;for(let e=1;e0)return Ne(s,h,o,t,i.concat(c));if(l){let e,n;if("boldsymbol"===l){const t=function(e,t,r,n,o){return"textord"!==o&&Ce(e,"Math-BoldItalic",t).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}}(s,o,0,0,r);e=t.fontName,n=[t.fontClass]}else a?(e=Le[l].fontName,n=[l]):(e=Ee(l,t.fontWeight,t.fontShape),n=[l,t.fontWeight,t.fontShape]);if(Ce(s,e,o).metrics)return Ne(s,e,o,t,i.concat(n));if(ve.hasOwnProperty(s)&&"Typewriter"===e.slice(0,10)){const r=[];for(let a=0;a{const r=Re(["mspace"],[],t),n=P(e,t);return r.style.marginRight=F(n),r},staticSvg:function(e,t){const[r,n,o]=De[e],s=new J(r),i=new K([s],{width:F(n),height:F(o),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+1e3*o,preserveAspectRatio:"xMinYMin"}),a=He(["overlay"],[i],t);return a.height=o,a.style.height=F(o),a.style.width=F(n),a},svgData:De,tryCombineChars:e=>{for(let t=0;t{const r=t.classes[0],n=e.classes[0];"mbin"===r&&l.contains(et,n)?t.classes[0]="mord":"mbin"===n&&l.contains(Qe,r)&&(e.classes[0]="mord")}),{node:i},a,h),ot(o,((e,t)=>{const r=at(t),n=at(e),o=r&&n?e.hasClass("mtight")?Ye[r][n]:Ue[r][n]:null;if(o)return Ve.makeGlue(o,s)}),{node:i},a,h),o},ot=function(e,t,r,n,o){n&&e.push(n);let s=0;for(;sr=>{e.splice(t+1,0,r),s++})(s)}n&&e.pop()},st=function(e){return e instanceof A||e instanceof _||e instanceof W&&e.hasClass("enclosing")?e:null},it=function(e,t){const r=st(e);if(r){const e=r.children;if(e.length){if("right"===t)return it(e[e.length-1],"right");if("left"===t)return it(e[0],"left")}}return e},at=function(e,t){return e?(t&&(e=it(e,t)),rt[e.classes[0]]||null):null},lt=function(e,t){const r=["nulldelimiter"].concat(e.baseSizingClasses());return Je(t.concat(r))},ht=function(e,t,r){if(!e)return Je();if(We[e.type]){let n=We[e.type](e,t);if(r&&t.size!==r.size){n=Je(t.sizingClasses(r),[n],t);const e=t.sizeMultiplier/r.sizeMultiplier;n.height*=e,n.depth*=e}return n}throw new n("Got group of unknown type: '"+e.type+"'")};function ct(e,t){const r=Je(["base"],e,t),n=Je(["strut"]);return n.style.height=F(r.height+r.depth),r.depth&&(n.style.verticalAlign=F(-r.depth)),r.children.unshift(n),r}function mt(e,t){let r=null;1===e.length&&"tag"===e[0].type&&(r=e[0].tag,e=e[0].body);const n=nt(e,t,"root");let o;2===n.length&&n[1].hasClass("tag")&&(o=n.pop());const s=[];let i,a=[];for(let e=0;e0&&(s.push(ct(a,t)),a=[]),s.push(n[e]));a.length>0&&s.push(ct(a,t)),r?(i=ct(nt(r,t,!0)),i.classes=["tag"],s.push(i)):o&&s.push(o);const l=Je(["katex-html"],s);if(l.setAttribute("aria-hidden","true"),i){const e=i.children[0];e.style.height=F(l.height+l.depth),l.depth&&(e.style.verticalAlign=F(-l.depth))}return l}function pt(e){return new A(e)}class ut{constructor(e,t,r){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=e,this.attributes={},this.children=t||[],this.classes=r||[]}setAttribute(e,t){this.attributes[e]=t}getAttribute(e){return this.attributes[e]}toNode(){const e=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);this.classes.length>0&&(e.className=G(this.classes));for(let t=0;t0&&(e+=' class ="'+l.escape(G(this.classes))+'"'),e+=">";for(let t=0;t",e}toText(){return this.children.map((e=>e.toText())).join("")}}class dt{constructor(e){this.text=void 0,this.text=e}toNode(){return document.createTextNode(this.text)}toMarkup(){return l.escape(this.toText())}toText(){return this.text}}var gt={MathNode:ut,TextNode:dt,SpaceNode:class{constructor(e){this.width=void 0,this.character=void 0,this.width=e,this.character=e>=.05555&&e<=.05556?"\u200a":e>=.1666&&e<=.1667?"\u2009":e>=.2222&&e<=.2223?"\u2005":e>=.2777&&e<=.2778?"\u2005\u200a":e>=-.05556&&e<=-.05555?"\u200a\u2063":e>=-.1667&&e<=-.1666?"\u2009\u2063":e>=-.2223&&e<=-.2222?"\u205f\u2063":e>=-.2778&&e<=-.2777?"\u2005\u2063":null}toNode(){if(this.character)return document.createTextNode(this.character);{const e=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return e.setAttribute("width",F(this.width)),e}}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}},newDocumentFragment:pt};const ft=function(e,t,r){return!oe[t][e]||!oe[t][e].replace||55349===e.charCodeAt(0)||ve.hasOwnProperty(e)&&r&&(r.fontFamily&&"tt"===r.fontFamily.slice(4,6)||r.font&&"tt"===r.font.slice(4,6))||(e=oe[t][e].replace),new gt.TextNode(e)},bt=function(e){return 1===e.length?e[0]:new gt.MathNode("mrow",e)},yt=function(e,t){if("texttt"===t.fontFamily)return"monospace";if("textsf"===t.fontFamily)return"textit"===t.fontShape&&"textbf"===t.fontWeight?"sans-serif-bold-italic":"textit"===t.fontShape?"sans-serif-italic":"textbf"===t.fontWeight?"bold-sans-serif":"sans-serif";if("textit"===t.fontShape&&"textbf"===t.fontWeight)return"bold-italic";if("textit"===t.fontShape)return"italic";if("textbf"===t.fontWeight)return"bold";const r=t.font;if(!r||"mathnormal"===r)return null;const n=e.mode;if("mathit"===r)return"italic";if("boldsymbol"===r)return"textord"===e.type?"bold":"bold-italic";if("mathbf"===r)return"bold";if("mathbb"===r)return"double-struck";if("mathfrak"===r)return"fraktur";if("mathscr"===r||"mathcal"===r)return"script";if("mathsf"===r)return"sans-serif";if("mathtt"===r)return"monospace";let o=e.text;if(l.contains(["\\imath","\\jmath"],o))return null;oe[n][o]&&oe[n][o].replace&&(o=oe[n][o].replace);return N(o,Ve.fontMap[r].fontName,n)?Ve.fontMap[r].variant:null},xt=function(e,t,r){if(1===e.length){const n=vt(e[0],t);return r&&n instanceof ut&&"mo"===n.type&&(n.setAttribute("lspace","0em"),n.setAttribute("rspace","0em")),[n]}const n=[];let o;for(let r=0;r0&&(e.text=e.text.slice(0,1)+"\u0338"+e.text.slice(1),n.pop())}}}n.push(s),o=s}return n},wt=function(e,t,r){return bt(xt(e,t,r))},vt=function(e,t){if(!e)return new gt.MathNode("mrow");if(_e[e.type]){return _e[e.type](e,t)}throw new n("Got group of unknown type: '"+e.type+"'")};function kt(e,t,r,n,o){const s=xt(e,r);let i;i=1===s.length&&s[0]instanceof ut&&l.contains(["mrow","mtable"],s[0].type)?s[0]:new gt.MathNode("mrow",s);const a=new gt.MathNode("annotation",[new gt.TextNode(t)]);a.setAttribute("encoding","application/x-tex");const h=new gt.MathNode("semantics",[i,a]),c=new gt.MathNode("math",[h]);c.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),n&&c.setAttribute("display","block");const m=o?"katex":"katex-mathml";return Ve.makeSpan([m],[c])}const St=function(e){return new E({style:e.displayMode?w.DISPLAY:w.TEXT,maxSize:e.maxSize,minRuleThickness:e.minRuleThickness})},Mt=function(e,t){if(t.displayMode){const r=["katex-display"];t.leqno&&r.push("leqno"),t.fleqn&&r.push("fleqn"),e=Ve.makeSpan(r,[e])}return e},zt=function(e,t,r){const n=St(r);let o;if("mathml"===r.output)return kt(e,t,n,r.displayMode,!0);if("html"===r.output){const t=mt(e,n);o=Ve.makeSpan(["katex"],[t])}else{const s=kt(e,t,n,r.displayMode,!1),i=mt(e,n);o=Ve.makeSpan(["katex"],[s,i])}return Mt(o,r)};const At={widehat:"^",widecheck:"\u02c7",widetilde:"~",utilde:"~",overleftarrow:"\u2190",underleftarrow:"\u2190",xleftarrow:"\u2190",overrightarrow:"\u2192",underrightarrow:"\u2192",xrightarrow:"\u2192",underbrace:"\u23df",overbrace:"\u23de",overgroup:"\u23e0",undergroup:"\u23e1",overleftrightarrow:"\u2194",underleftrightarrow:"\u2194",xleftrightarrow:"\u2194",Overrightarrow:"\u21d2",xRightarrow:"\u21d2",overleftharpoon:"\u21bc",xleftharpoonup:"\u21bc",overrightharpoon:"\u21c0",xrightharpoonup:"\u21c0",xLeftarrow:"\u21d0",xLeftrightarrow:"\u21d4",xhookleftarrow:"\u21a9",xhookrightarrow:"\u21aa",xmapsto:"\u21a6",xrightharpoondown:"\u21c1",xleftharpoondown:"\u21bd",xrightleftharpoons:"\u21cc",xleftrightharpoons:"\u21cb",xtwoheadleftarrow:"\u219e",xtwoheadrightarrow:"\u21a0",xlongequal:"=",xtofrom:"\u21c4",xrightleftarrows:"\u21c4",xrightequilibrium:"\u21cc",xleftequilibrium:"\u21cb","\\cdrightarrow":"\u2192","\\cdleftarrow":"\u2190","\\cdlongequal":"="},Tt={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]};var Bt=function(e,t,r,n,o){let s;const i=e.height+e.depth+r+n;if(/fbox|color|angl/.test(t)){if(s=Ve.makeSpan(["stretchy",t],[],o),"fbox"===t){const e=o.color&&o.getColor();e&&(s.style.borderColor=e)}}else{const e=[];/^[bx]cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));const r=new K(e,{width:"100%",height:F(i)});s=Ve.makeSvgSpan([],[r],o)}return s.height=i,s.style.height=F(i),s},Ct=function(e){const t=new gt.MathNode("mo",[new gt.TextNode(At[e.replace(/^\\/,"")])]);return t.setAttribute("stretchy","true"),t},Nt=function(e,t){const{span:r,minWidth:n,height:o}=function(){let r=4e5;const n=e.label.slice(1);if(l.contains(["widehat","widecheck","widetilde","utilde"],n)){const s="ordgroup"===(o=e.base).type?o.body.length:1;let i,a,l;if(s>5)"widehat"===n||"widecheck"===n?(i=420,r=2364,l=.42,a=n+"4"):(i=312,r=2340,l=.34,a="tilde4");else{const e=[1,1,2,2,3,3][s];"widehat"===n||"widecheck"===n?(r=[0,1062,2364,2364,2364][e],i=[0,239,300,360,420][e],l=[0,.24,.3,.3,.36,.42][e],a=n+e):(r=[0,600,1033,2339,2340][e],i=[0,260,286,306,312][e],l=[0,.26,.286,.3,.306,.34][e],a="tilde"+e)}const h=new J(a),c=new K([h],{width:"100%",height:F(l),viewBox:"0 0 "+r+" "+i,preserveAspectRatio:"none"});return{span:Ve.makeSvgSpan([],[c],t),minWidth:0,height:l}}{const e=[],o=Tt[n],[s,i,a]=o,l=a/1e3,h=s.length;let c,m;if(1===h){c=["hide-tail"],m=[o[3]]}else if(2===h)c=["halfarrow-left","halfarrow-right"],m=["xMinYMin","xMaxYMin"];else{if(3!==h)throw new Error("Correct katexImagesData or update code here to support\n "+h+" children.");c=["brace-left","brace-center","brace-right"],m=["xMinYMin","xMidYMin","xMaxYMin"]}for(let n=0;n0&&(r.style.minWidth=F(n)),r};function qt(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function It(e){const t=Rt(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function Rt(e){return e&&("atom"===e.type||re.hasOwnProperty(e.type))?e:null}const Ht=(e,t)=>{let r,n,o;e&&"supsub"===e.type?(n=qt(e.base,"accent"),r=n.base,e.base=r,o=function(e){if(e instanceof W)return e;throw new Error("Expected span but got "+String(e)+".")}(ht(e,t)),e.base=n):(n=qt(e,"accent"),r=n.base);const s=ht(r,t.havingCrampedStyle());let i=0;if(n.isShifty&&l.isCharacterBox(r)){const e=l.getBaseElem(r);i=ee(ht(e,t.havingCrampedStyle())).skew}const a="\\c"===n.label;let h,c=a?s.height+s.depth:Math.min(s.height,t.fontMetrics().xHeight);if(n.isStretchy)h=Nt(n,t),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"elem",elem:h,wrapperClasses:["svg-align"],wrapperStyle:i>0?{width:"calc(100% - "+F(2*i)+")",marginLeft:F(2*i)}:void 0}]},t);else{let e,r;"\\vec"===n.label?(e=Ve.staticSvg("vec",t),r=Ve.svgData.vec[1]):(e=Ve.makeOrd({mode:n.mode,text:n.label},t,"textord"),e=ee(e),e.italic=0,r=e.width,a&&(c+=e.depth)),h=Ve.makeSpan(["accent-body"],[e]);const o="\\textcircled"===n.label;o&&(h.classes.push("accent-full"),c=s.height);let l=i;o||(l-=r/2),h.style.left=F(l),"\\textcircled"===n.label&&(h.style.top=".2em"),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:-c},{type:"elem",elem:h}]},t)}const m=Ve.makeSpan(["mord","accent"],[h],t);return o?(o.children[0]=m,o.height=Math.max(m.height,o.height),o.classes[0]="mord",o):m},Ot=(e,t)=>{const r=e.isStretchy?Ct(e.label):new gt.MathNode("mo",[ft(e.label,e.mode)]),n=new gt.MathNode("mover",[vt(e.base,t),r]);return n.setAttribute("accent","true"),n},Et=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map((e=>"\\"+e)).join("|"));je({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:(e,t)=>{const r=Ze(t[0]),n=!Et.test(e.funcName),o=!n||"\\widehat"===e.funcName||"\\widetilde"===e.funcName||"\\widecheck"===e.funcName;return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:n,isShifty:o,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:(e,t)=>{const r=t[0];let n=e.parser.mode;return"math"===n&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),n="text"),{type:"accent",mode:n,label:e.funcName,isStretchy:!1,isShifty:!0,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"accentUnder",mode:r.mode,label:n,base:o}},htmlBuilder:(e,t)=>{const r=ht(e.base,t),n=Nt(e,t),o="\\utilde"===e.label?.12:0,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:n,wrapperClasses:["svg-align"]},{type:"kern",size:o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","accentunder"],[s],t)},mathmlBuilder:(e,t)=>{const r=Ct(e.label),n=new gt.MathNode("munder",[vt(e.base,t),r]);return n.setAttribute("accentunder","true"),n}});const Lt=e=>{const t=new gt.MathNode("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};je({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n,funcName:o}=e;return{type:"xArrow",mode:n.mode,label:o,body:t[0],below:r[0]}},htmlBuilder(e,t){const r=t.style;let n=t.havingStyle(r.sup());const o=Ve.wrapFragment(ht(e.body,n,t),t),s="\\x"===e.label.slice(0,2)?"x":"cd";let i;o.classes.push(s+"-arrow-pad"),e.below&&(n=t.havingStyle(r.sub()),i=Ve.wrapFragment(ht(e.below,n,t),t),i.classes.push(s+"-arrow-pad"));const a=Nt(e,t),l=-t.fontMetrics().axisHeight+.5*a.height;let h,c=-t.fontMetrics().axisHeight-.5*a.height-.111;if((o.depth>.25||"\\xleftequilibrium"===e.label)&&(c-=o.depth),i){const e=-t.fontMetrics().axisHeight+i.height+.5*a.height+.111;h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l},{type:"elem",elem:i,shift:e}]},t)}else h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l}]},t);return h.children[0].children[0].children[1].classes.push("svg-align"),Ve.makeSpan(["mrel","x-arrow"],[h],t)},mathmlBuilder(e,t){const r=Ct(e.label);let n;if(r.setAttribute("minsize","x"===e.label.charAt(0)?"1.75em":"3.0em"),e.body){const o=Lt(vt(e.body,t));if(e.below){const s=Lt(vt(e.below,t));n=new gt.MathNode("munderover",[r,s,o])}else n=new gt.MathNode("mover",[r,o])}else if(e.below){const o=Lt(vt(e.below,t));n=new gt.MathNode("munder",[r,o])}else n=Lt(),n=new gt.MathNode("mover",[r,n]);return n}});const Dt=Ve.makeSpan;function Vt(e,t){const r=nt(e.body,t,!0);return Dt([e.mclass],r,t)}function Pt(e,t){let r;const n=xt(e.body,t);return"minner"===e.mclass?r=new gt.MathNode("mpadded",n):"mord"===e.mclass?e.isCharacterBox?(r=n[0],r.type="mi"):r=new gt.MathNode("mi",n):(e.isCharacterBox?(r=n[0],r.type="mo"):r=new gt.MathNode("mo",n),"mbin"===e.mclass?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):"mpunct"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):"mopen"===e.mclass||"mclose"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0em"):"minner"===e.mclass&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}je({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"mclass",mode:r.mode,mclass:"m"+n.slice(5),body:Ke(o),isCharacterBox:l.isCharacterBox(o)}},htmlBuilder:Vt,mathmlBuilder:Pt});const Ft=e=>{const t="ordgroup"===e.type&&e.body.length?e.body[0]:e;return"atom"!==t.type||"bin"!==t.family&&"rel"!==t.family?"mord":"m"+t.family};je({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(e,t){let{parser:r}=e;return{type:"mclass",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[1]),isCharacterBox:l.isCharacterBox(t[1])}}}),je({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(e,t){let{parser:r,funcName:n}=e;const o=t[1],s=t[0];let i;i="\\stackrel"!==n?Ft(o):"mrel";const a={type:"op",mode:o.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:"\\stackrel"!==n,body:Ke(o)},h={type:"supsub",mode:s.mode,base:a,sup:"\\underset"===n?null:s,sub:"\\underset"===n?s:null};return{type:"mclass",mode:r.mode,mclass:i,body:[h],isCharacterBox:l.isCharacterBox(h)}},htmlBuilder:Vt,mathmlBuilder:Pt}),je({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"pmb",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[0])}},htmlBuilder(e,t){const r=nt(e.body,t,!0),n=Ve.makeSpan([e.mclass],r,t);return n.style.textShadow="0.02em 0.01em 0.04px",n},mathmlBuilder(e,t){const r=xt(e.body,t),n=new gt.MathNode("mstyle",r);return n.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),n}});const Gt={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},Ut=e=>"textord"===e.type&&"@"===e.text;function Yt(e,t,r){const n=Gt[e];switch(n){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(n,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{const e={type:"atom",text:n,mode:"math",family:"rel"},o={type:"ordgroup",mode:"math",body:[r.callFunction("\\\\cdleft",[t[0]],[]),r.callFunction("\\Big",[e],[]),r.callFunction("\\\\cdright",[t[1]],[])]};return r.callFunction("\\\\cdparent",[o],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{const e={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[e],[])}default:return{type:"textord",text:" ",mode:"math"}}}je({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"cdlabel",mode:r.mode,side:n.slice(4),label:t[0]}},htmlBuilder(e,t){const r=t.havingStyle(t.style.sup()),n=Ve.wrapFragment(ht(e.label,r,t),t);return n.classes.push("cd-label-"+e.side),n.style.bottom=F(.8-n.depth),n.height=0,n.depth=0,n},mathmlBuilder(e,t){let r=new gt.MathNode("mrow",[vt(e.label,t)]);return r=new gt.MathNode("mpadded",[r]),r.setAttribute("width","0"),"left"===e.side&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new gt.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}}),je({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(e,t){let{parser:r}=e;return{type:"cdlabelparent",mode:r.mode,fragment:t[0]}},htmlBuilder(e,t){const r=Ve.wrapFragment(ht(e.fragment,t),t);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(e,t){return new gt.MathNode("mrow",[vt(e.fragment,t)])}}),je({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;const o=qt(t[0],"ordgroup").body;let s="";for(let e=0;e=1114111)throw new n("\\@char with invalid code point "+s);return a<=65535?i=String.fromCharCode(a):(a-=65536,i=String.fromCharCode(55296+(a>>10),56320+(1023&a))),{type:"textord",mode:r.mode,text:i}}});const Xt=(e,t)=>{const r=nt(e.body,t.withColor(e.color),!1);return Ve.makeFragment(r)},Wt=(e,t)=>{const r=xt(e.body,t.withColor(e.color)),n=new gt.MathNode("mstyle",r);return n.setAttribute("mathcolor",e.color),n};je({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(e,t){let{parser:r}=e;const n=qt(t[0],"color-token").color,o=t[1];return{type:"color",mode:r.mode,color:n,body:Ke(o)}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(e,t){let{parser:r,breakOnTokenText:n}=e;const o=qt(t[0],"color-token").color;r.gullet.macros.set("\\current@color",o);const s=r.parseExpression(!0,n);return{type:"color",mode:r.mode,color:o,body:s}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(e,t,r){let{parser:n}=e;const o="["===n.gullet.future().text?n.parseSizeGroup(!0):null,s=!n.settings.displayMode||!n.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:n.mode,newLine:s,size:o&&qt(o,"size").value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mspace"],[],t);return e.newLine&&(r.classes.push("newline"),e.size&&(r.style.marginTop=F(P(e.size,t)))),r},mathmlBuilder(e,t){const r=new gt.MathNode("mspace");return e.newLine&&(r.setAttribute("linebreak","newline"),e.size&&r.setAttribute("height",F(P(e.size,t)))),r}});const _t={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},jt=e=>{const t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new n("Expected a control sequence",e);return t},$t=(e,t,r,n)=>{let o=e.gullet.macros.get(r.text);null==o&&(r.noexpand=!0,o={tokens:[r],numArgs:0,unexpandable:!e.gullet.isExpandable(r.text)}),e.gullet.macros.set(t,o,n)};je({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t,funcName:r}=e;t.consumeSpaces();const o=t.fetch();if(_t[o.text])return"\\global"!==r&&"\\\\globallong"!==r||(o.text=_t[o.text]),qt(t.parseFunction(),"internal");throw new n("Invalid token after macro prefix",o)}}),je({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e,o=t.gullet.popToken();const s=o.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(s))throw new n("Expected a control sequence",o);let i,a=0;const l=[[]];for(;"{"!==t.gullet.future().text;)if(o=t.gullet.popToken(),"#"===o.text){if("{"===t.gullet.future().text){i=t.gullet.future(),l[a].push("{");break}if(o=t.gullet.popToken(),!/^[1-9]$/.test(o.text))throw new n('Invalid argument number "'+o.text+'"');if(parseInt(o.text)!==a+1)throw new n('Argument number "'+o.text+'" out of order');a++,l.push([])}else{if("EOF"===o.text)throw new n("Expected a macro definition");l[a].push(o.text)}let{tokens:h}=t.gullet.consumeArg();return i&&h.unshift(i),"\\edef"!==r&&"\\xdef"!==r||(h=t.gullet.expandTokens(h),h.reverse()),t.gullet.macros.set(s,{tokens:h,numArgs:a,delimiters:l},r===_t[r]),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken());t.gullet.consumeSpaces();const o=(e=>{let t=e.gullet.popToken();return"="===t.text&&(t=e.gullet.popToken()," "===t.text&&(t=e.gullet.popToken())),t})(t);return $t(t,n,o,"\\\\globallet"===r),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken()),o=t.gullet.popToken(),s=t.gullet.popToken();return $t(t,n,s,"\\\\globalfuture"===r),t.gullet.pushToken(s),t.gullet.pushToken(o),{type:"internal",mode:t.mode}}});const Zt=function(e,t,r){const n=N(oe.math[e]&&oe.math[e].replace||e,t,r);if(!n)throw new Error("Unsupported symbol "+e+" and font size "+t+".");return n},Kt=function(e,t,r,n){const o=r.havingBaseStyle(t),s=Ve.makeSpan(n.concat(o.sizingClasses(r)),[e],r),i=o.sizeMultiplier/r.sizeMultiplier;return s.height*=i,s.depth*=i,s.maxFontSize=o.sizeMultiplier,s},Jt=function(e,t,r){const n=t.havingBaseStyle(r),o=(1-t.sizeMultiplier/n.sizeMultiplier)*t.fontMetrics().axisHeight;e.classes.push("delimcenter"),e.style.top=F(o),e.height-=o,e.depth+=o},Qt=function(e,t,r,n,o,s){const i=function(e,t,r,n){return Ve.makeSymbol(e,"Size"+t+"-Regular",r,n)}(e,t,o,n),a=Kt(Ve.makeSpan(["delimsizing","size"+t],[i],n),w.TEXT,n,s);return r&&Jt(a,n,w.TEXT),a},er=function(e,t,r){let n;n="Size1-Regular"===t?"delim-size1":"delim-size4";return{type:"elem",elem:Ve.makeSpan(["delimsizinginner",n],[Ve.makeSpan([],[Ve.makeSymbol(e,t,r)])])}},tr=function(e,t,r){const n=T["Size4-Regular"][e.charCodeAt(0)]?T["Size4-Regular"][e.charCodeAt(0)][4]:T["Size1-Regular"][e.charCodeAt(0)][4],o=new J("inner",function(e,t){switch(e){case"\u239c":return"M291 0 H417 V"+t+" H291z M291 0 H417 V"+t+" H291z";case"\u2223":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145z";case"\u2225":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145zM367 0 H410 V"+t+" H367z M367 0 H410 V"+t+" H367z";case"\u239f":return"M457 0 H583 V"+t+" H457z M457 0 H583 V"+t+" H457z";case"\u23a2":return"M319 0 H403 V"+t+" H319z M319 0 H403 V"+t+" H319z";case"\u23a5":return"M263 0 H347 V"+t+" H263z M263 0 H347 V"+t+" H263z";case"\u23aa":return"M384 0 H504 V"+t+" H384z M384 0 H504 V"+t+" H384z";case"\u23d0":return"M312 0 H355 V"+t+" H312z M312 0 H355 V"+t+" H312z";case"\u2016":return"M257 0 H300 V"+t+" H257z M257 0 H300 V"+t+" H257zM478 0 H521 V"+t+" H478z M478 0 H521 V"+t+" H478z";default:return""}}(e,Math.round(1e3*t))),s=new K([o],{width:F(n),height:F(t),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+Math.round(1e3*t),preserveAspectRatio:"xMinYMin"}),i=Ve.makeSvgSpan([],[s],r);return i.height=t,i.style.height=F(t),i.style.width=F(n),{type:"elem",elem:i}},rr={type:"kern",size:-.008},nr=["|","\\lvert","\\rvert","\\vert"],or=["\\|","\\lVert","\\rVert","\\Vert"],sr=function(e,t,r,n,o,s){let i,a,h,c,m="",p=0;i=h=c=e,a=null;let u="Size1-Regular";"\\uparrow"===e?h=c="\u23d0":"\\Uparrow"===e?h=c="\u2016":"\\downarrow"===e?i=h="\u23d0":"\\Downarrow"===e?i=h="\u2016":"\\updownarrow"===e?(i="\\uparrow",h="\u23d0",c="\\downarrow"):"\\Updownarrow"===e?(i="\\Uparrow",h="\u2016",c="\\Downarrow"):l.contains(nr,e)?(h="\u2223",m="vert",p=333):l.contains(or,e)?(h="\u2225",m="doublevert",p=556):"["===e||"\\lbrack"===e?(i="\u23a1",h="\u23a2",c="\u23a3",u="Size4-Regular",m="lbrack",p=667):"]"===e||"\\rbrack"===e?(i="\u23a4",h="\u23a5",c="\u23a6",u="Size4-Regular",m="rbrack",p=667):"\\lfloor"===e||"\u230a"===e?(h=i="\u23a2",c="\u23a3",u="Size4-Regular",m="lfloor",p=667):"\\lceil"===e||"\u2308"===e?(i="\u23a1",h=c="\u23a2",u="Size4-Regular",m="lceil",p=667):"\\rfloor"===e||"\u230b"===e?(h=i="\u23a5",c="\u23a6",u="Size4-Regular",m="rfloor",p=667):"\\rceil"===e||"\u2309"===e?(i="\u23a4",h=c="\u23a5",u="Size4-Regular",m="rceil",p=667):"("===e||"\\lparen"===e?(i="\u239b",h="\u239c",c="\u239d",u="Size4-Regular",m="lparen",p=875):")"===e||"\\rparen"===e?(i="\u239e",h="\u239f",c="\u23a0",u="Size4-Regular",m="rparen",p=875):"\\{"===e||"\\lbrace"===e?(i="\u23a7",a="\u23a8",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\}"===e||"\\rbrace"===e?(i="\u23ab",a="\u23ac",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lgroup"===e||"\u27ee"===e?(i="\u23a7",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\rgroup"===e||"\u27ef"===e?(i="\u23ab",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lmoustache"===e||"\u23b0"===e?(i="\u23a7",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\rmoustache"!==e&&"\u23b1"!==e||(i="\u23ab",c="\u23a9",h="\u23aa",u="Size4-Regular");const d=Zt(i,u,o),g=d.height+d.depth,f=Zt(h,u,o),b=f.height+f.depth,y=Zt(c,u,o),x=y.height+y.depth;let v=0,k=1;if(null!==a){const e=Zt(a,u,o);v=e.height+e.depth,k=2}const S=g+x+v,M=S+Math.max(0,Math.ceil((t-S)/(k*b)))*k*b;let z=n.fontMetrics().axisHeight;r&&(z*=n.sizeMultiplier);const A=M/2-z,T=[];if(m.length>0){const e=M-g-x,t=Math.round(1e3*M),r=function(e,t){switch(e){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v1759 h347 v-84\nH403z M403 1759 V0 H319 V1759 v"+t+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v1759 H0 v84 H347z\nM347 1759 V0 H263 V1759 v"+t+" v1759 h84z";case"vert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z";case"doublevert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z\nM367 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M410 15 H367 v585 v"+t+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+t+" v1715 h263 v84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+t+" v1799 H0 v-84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v602 h84z\nM403 1759 V0 H319 V1759 v"+t+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v602 h84z\nM347 1759 V0 h-84 V1759 v"+t+" v602 h84z";case"lparen":return"M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1\nc-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349,\n-36,557 l0,"+(t+84)+"c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210,\n949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9\nc0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5,\n-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189\nl0,-"+(t+92)+"c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3,\n-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z";case"rparen":return"M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3,\n63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5\nc11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,"+(t+9)+"\nc-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664\nc-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11\nc0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17\nc242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558\nl0,-"+(t+144)+"c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7,\n-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z";default:throw new Error("Unknown stretchy delimiter.")}}(m,Math.round(1e3*e)),o=new J(m,r),s=(p/1e3).toFixed(3)+"em",i=(t/1e3).toFixed(3)+"em",a=new K([o],{width:s,height:i,viewBox:"0 0 "+p+" "+t}),l=Ve.makeSvgSpan([],[a],n);l.height=t/1e3,l.style.width=s,l.style.height=i,T.push({type:"elem",elem:l})}else{if(T.push(er(c,u,o)),T.push(rr),null===a){const e=M-g-x+.016;T.push(tr(h,e,n))}else{const e=(M-g-x-v)/2+.016;T.push(tr(h,e,n)),T.push(rr),T.push(er(a,u,o)),T.push(rr),T.push(tr(h,e,n))}T.push(rr),T.push(er(i,u,o))}const B=n.havingBaseStyle(w.TEXT),C=Ve.makeVList({positionType:"bottom",positionData:A,children:T},B);return Kt(Ve.makeSpan(["delimsizing","mult"],[C],B),w.TEXT,n,s)},ir=.08,ar=function(e,t,r,n,o){const s=function(e,t,r){t*=1e3;let n="";switch(e){case"sqrtMain":n=function(e,t){return"M95,"+(622+e+t)+"\nc-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14\nc0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54\nc44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10\ns173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429\nc69,-144,104.5,-217.7,106.5,-221\nl"+e/2.075+" -"+e+"\nc5.3,-9.3,12,-14,20,-14\nH400000v"+(40+e)+"H845.2724\ns-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7\nc-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z\nM"+(834+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize1":n=function(e,t){return"M263,"+(601+e+t)+"c0.7,0,18,39.7,52,119\nc34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120\nc340,-704.7,510.7,-1060.3,512,-1067\nl"+e/2.084+" -"+e+"\nc4.7,-7.3,11,-11,19,-11\nH40000v"+(40+e)+"H1012.3\ns-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232\nc-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1\ns-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26\nc-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize2":n=function(e,t){return"M983 "+(10+e+t)+"\nl"+e/3.13+" -"+e+"\nc4,-6.7,10,-10,18,-10 H400000v"+(40+e)+"\nH1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7\ns-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744\nc-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30\nc26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722\nc56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5\nc53.7,-170.3,84.5,-266.8,92.5,-289.5z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize3":n=function(e,t){return"M424,"+(2398+e+t)+"\nc-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514\nc0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20\ns-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121\ns209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081\nl"+e/4.223+" -"+e+"c4,-6.7,10,-10,18,-10 H400000\nv"+(40+e)+"H1014.6\ns-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185\nc-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2z M"+(1001+e)+" "+t+"\nh400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize4":n=function(e,t){return"M473,"+(2713+e+t)+"\nc339.3,-1799.3,509.3,-2700,510,-2702 l"+e/5.298+" -"+e+"\nc3.3,-7.3,9.3,-11,18,-11 H400000v"+(40+e)+"H1017.7\ns-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200\nc0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26\ns76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104,\n606zM"+(1001+e)+" "+t+"h400000v"+(40+e)+"H1017.7z"}(t,M);break;case"sqrtTall":n=function(e,t,r){return"M702 "+(e+t)+"H400000"+(40+e)+"\nH742v"+(r-54-t-e)+"l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1\nh-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170\nc-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667\n219 661 l218 661zM702 "+t+"H400000v"+(40+e)+"H742z"}(t,M,r)}return n}(e,n,r),i=new J(e,s),a=new K([i],{width:"400em",height:F(t),viewBox:"0 0 400000 "+r,preserveAspectRatio:"xMinYMin slice"});return Ve.makeSvgSpan(["hide-tail"],[a],o)},lr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","\\surd"],hr=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1"],cr=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],mr=[0,1.2,1.8,2.4,3],pr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],ur=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"stack"}],dr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],gr=function(e){if("small"===e.type)return"Main-Regular";if("large"===e.type)return"Size"+e.size+"-Regular";if("stack"===e.type)return"Size4-Regular";throw new Error("Add support for delim type '"+e.type+"' here.")},fr=function(e,t,r,n){for(let o=Math.min(2,3-n.style.size);ot)return r[o]}return r[r.length-1]},br=function(e,t,r,n,o,s){let i;"<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),i=l.contains(cr,e)?pr:l.contains(lr,e)?dr:ur;const a=fr(e,t,i,n);return"small"===a.type?function(e,t,r,n,o,s){const i=Ve.makeSymbol(e,"Main-Regular",o,n),a=Kt(i,t,n,s);return r&&Jt(a,n,t),a}(e,a.style,r,n,o,s):"large"===a.type?Qt(e,a.size,r,n,o,s):sr(e,t,r,n,o,s)};var yr={sqrtImage:function(e,t){const r=t.havingBaseSizing(),n=fr("\\surd",e*r.sizeMultiplier,dr,r);let o=r.sizeMultiplier;const s=Math.max(0,t.minRuleThickness-t.fontMetrics().sqrtRuleThickness);let i,a,l=0,h=0,c=0;return"small"===n.type?(c=1e3+1e3*s+80,e<1?o=1:e<1.4&&(o=.7),l=(1+s+ir)/o,h=(1+s)/o,i=ar("sqrtMain",l,c,s,t),i.style.minWidth="0.853em",a=.833/o):"large"===n.type?(c=1080*mr[n.size],h=(mr[n.size]+s)/o,l=(mr[n.size]+s+ir)/o,i=ar("sqrtSize"+n.size,l,c,s,t),i.style.minWidth="1.02em",a=1/o):(l=e+s+ir,h=e+s,c=Math.floor(1e3*e+s)+80,i=ar("sqrtTall",l,c,s,t),i.style.minWidth="0.742em",a=1.056),i.height=h,i.style.height=F(l),{span:i,advanceWidth:a,ruleWidth:(t.fontMetrics().sqrtRuleThickness+s)*o}},sizedDelim:function(e,t,r,o,s){if("<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),l.contains(lr,e)||l.contains(cr,e))return Qt(e,t,!1,r,o,s);if(l.contains(hr,e))return sr(e,mr[t],!1,r,o,s);throw new n("Illegal delimiter: '"+e+"'")},sizeToMaxHeight:mr,customSizedDelim:br,leftRightDelim:function(e,t,r,n,o,s){const i=n.fontMetrics().axisHeight*n.sizeMultiplier,a=5/n.fontMetrics().ptPerEm,l=Math.max(t-i,r+i),h=Math.max(l/500*901,2*l-a);return br(e,h,!0,n,o,s)}};const xr={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},wr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","<",">","\\langle","\u27e8","\\rangle","\u27e9","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function vr(e,t){const r=Rt(e);if(r&&l.contains(wr,r.text))return r;throw new n(r?"Invalid delimiter '"+r.text+"' after '"+t.funcName+"'":"Invalid delimiter type '"+e.type+"'",e)}function kr(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}je({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:(e,t)=>{const r=vr(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:xr[e.funcName].size,mclass:xr[e.funcName].mclass,delim:r.text}},htmlBuilder:(e,t)=>"."===e.delim?Ve.makeSpan([e.mclass]):yr.sizedDelim(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{const t=[];"."!==e.delim&&t.push(ft(e.delim,e.mode));const r=new gt.MathNode("mo",t);"mopen"===e.mclass||"mclose"===e.mclass?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");const n=F(yr.sizeToMaxHeight[e.size]);return r.setAttribute("minsize",n),r.setAttribute("maxsize",n),r}}),je({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=e.parser.gullet.macros.get("\\current@color");if(r&&"string"!=typeof r)throw new n("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:vr(t[0],e).text,color:r}}}),je({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e),n=e.parser;++n.leftrightDepth;const o=n.parseExpression(!1);--n.leftrightDepth,n.expect("\\right",!1);const s=qt(n.parseFunction(),"leftright-right");return{type:"leftright",mode:n.mode,body:o,left:r.text,right:s.delim,rightColor:s.color}},htmlBuilder:(e,t)=>{kr(e);const r=nt(e.body,t,!0,["mopen","mclose"]);let n,o,s=0,i=0,a=!1;for(let e=0;e{kr(e);const r=xt(e.body,t);if("."!==e.left){const t=new gt.MathNode("mo",[ft(e.left,e.mode)]);t.setAttribute("fence","true"),r.unshift(t)}if("."!==e.right){const t=new gt.MathNode("mo",[ft(e.right,e.mode)]);t.setAttribute("fence","true"),e.rightColor&&t.setAttribute("mathcolor",e.rightColor),r.push(t)}return bt(r)}}),je({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e);if(!e.parser.leftrightDepth)throw new n("\\middle without preceding \\left",r);return{type:"middle",mode:e.parser.mode,delim:r.text}},htmlBuilder:(e,t)=>{let r;if("."===e.delim)r=lt(t,[]);else{r=yr.sizedDelim(e.delim,1,t,e.mode,[]);const n={delim:e.delim,options:t};r.isMiddle=n}return r},mathmlBuilder:(e,t)=>{const r="\\vert"===e.delim||"|"===e.delim?ft("|","text"):ft(e.delim,e.mode),n=new gt.MathNode("mo",[r]);return n.setAttribute("fence","true"),n.setAttribute("lspace","0.05em"),n.setAttribute("rspace","0.05em"),n}});const Sr=(e,t)=>{const r=Ve.wrapFragment(ht(e.body,t),t),n=e.label.slice(1);let o,s=t.sizeMultiplier,i=0;const a=l.isCharacterBox(e.body);if("sout"===n)o=Ve.makeSpan(["stretchy","sout"]),o.height=t.fontMetrics().defaultRuleThickness/s,i=-.5*t.fontMetrics().xHeight;else if("phase"===n){const e=P({number:.6,unit:"pt"},t),n=P({number:.35,unit:"ex"},t);s/=t.havingBaseSizing().sizeMultiplier;const a=r.height+r.depth+e+n;r.style.paddingLeft=F(a/2+e);const l=Math.floor(1e3*a*s),c="M400000 "+(h=l)+" H0 L"+h/2+" 0 l65 45 L145 "+(h-80)+" H400000z",m=new K([new J("phase",c)],{width:"400em",height:F(l/1e3),viewBox:"0 0 400000 "+l,preserveAspectRatio:"xMinYMin slice"});o=Ve.makeSvgSpan(["hide-tail"],[m],t),o.style.height=F(a),i=r.depth+e+n}else{/cancel/.test(n)?a||r.classes.push("cancel-pad"):"angl"===n?r.classes.push("anglpad"):r.classes.push("boxpad");let s=0,l=0,h=0;/box/.test(n)?(h=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),s=t.fontMetrics().fboxsep+("colorbox"===n?0:h),l=s):"angl"===n?(h=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),s=4*h,l=Math.max(0,.25-r.depth)):(s=a?.2:0,l=s),o=Bt(r,n,s,l,t),/fbox|boxed|fcolorbox/.test(n)?(o.style.borderStyle="solid",o.style.borderWidth=F(h)):"angl"===n&&.049!==h&&(o.style.borderTopWidth=F(h),o.style.borderRightWidth=F(h)),i=r.depth+l,e.backgroundColor&&(o.style.backgroundColor=e.backgroundColor,e.borderColor&&(o.style.borderColor=e.borderColor))}var h;let c;if(e.backgroundColor)c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:i},{type:"elem",elem:r,shift:0}]},t);else{const e=/cancel|phase/.test(n)?["svg-align"]:[];c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:o,shift:i,wrapperClasses:e}]},t)}return/cancel/.test(n)&&(c.height=r.height,c.depth=r.depth),/cancel/.test(n)&&!a?Ve.makeSpan(["mord","cancel-lap"],[c],t):Ve.makeSpan(["mord"],[c],t)},Mr=(e,t)=>{let r=0;const n=new gt.MathNode(e.label.indexOf("colorbox")>-1?"mpadded":"menclose",[vt(e.body,t)]);switch(e.label){case"\\cancel":n.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":n.setAttribute("notation","downdiagonalstrike");break;case"\\phase":n.setAttribute("notation","phasorangle");break;case"\\sout":n.setAttribute("notation","horizontalstrike");break;case"\\fbox":n.setAttribute("notation","box");break;case"\\angl":n.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,n.setAttribute("width","+"+2*r+"pt"),n.setAttribute("height","+"+2*r+"pt"),n.setAttribute("lspace",r+"pt"),n.setAttribute("voffset",r+"pt"),"\\fcolorbox"===e.label){const r=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);n.setAttribute("style","border: "+r+"em solid "+String(e.borderColor))}break;case"\\xcancel":n.setAttribute("notation","updiagonalstrike downdiagonalstrike")}return e.backgroundColor&&n.setAttribute("mathbackground",e.backgroundColor),n};je({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=t[1];return{type:"enclose",mode:n.mode,label:o,backgroundColor:s,body:i}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=qt(t[1],"color-token").color,a=t[2];return{type:"enclose",mode:n.mode,label:o,backgroundColor:i,borderColor:s,body:a}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\fbox",body:t[0]}}}),je({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"enclose",mode:r.mode,label:n,body:o}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\angl",body:t[0]}}});const zr={};function Ar(e){let{type:t,names:r,props:n,handler:o,htmlBuilder:s,mathmlBuilder:i}=e;const a={type:t,numArgs:n.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:o};for(let e=0;e{if(!e.parser.settings.displayMode)throw new n("{"+e.envName+"} can be used only in display mode.")};function Rr(e){if(-1===e.indexOf("ed"))return-1===e.indexOf("*")}function Hr(e,t,r){let{hskipBeforeAndAfter:o,addJot:s,cols:i,arraystretch:a,colSeparationType:l,autoTag:h,singleRow:c,emptySingleRow:m,maxNumCols:p,leqno:u}=t;if(e.gullet.beginGroup(),c||e.gullet.macros.set("\\cr","\\\\\\relax"),!a){const t=e.gullet.expandMacroAsText("\\arraystretch");if(null==t)a=1;else if(a=parseFloat(t),!a||a<0)throw new n("Invalid \\arraystretch: "+t)}e.gullet.beginGroup();let d=[];const g=[d],f=[],b=[],y=null!=h?[]:void 0;function x(){h&&e.gullet.macros.set("\\@eqnsw","1",!0)}function w(){y&&(e.gullet.macros.get("\\df@tag")?(y.push(e.subparse([new Nr("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):y.push(Boolean(h)&&"1"===e.gullet.macros.get("\\@eqnsw")))}for(x(),b.push(qr(e));;){let t=e.parseExpression(!1,c?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup(),t={type:"ordgroup",mode:e.mode,body:t},r&&(t={type:"styling",mode:e.mode,style:r,body:[t]}),d.push(t);const o=e.fetch().text;if("&"===o){if(p&&d.length===p){if(c||l)throw new n("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else{if("\\end"===o){w(),1===d.length&&"styling"===t.type&&0===t.body[0].body.length&&(g.length>1||!m)&&g.pop(),b.length0&&(x+=.25),c.push({pos:x,isDashed:e[t]})}for(v(i[0]),r=0;r0&&(p+=y,le)))for(r=0;r=a)continue;(o>0||e.hskipBeforeAndAfter)&&(i=l.deflt(c.pregap,u),0!==i&&(z=Ve.makeSpan(["arraycolsep"],[]),z.style.width=F(i),M.push(z)));let d=[];for(r=0;r0){const e=Ve.makeLineSpan("hline",t,m),r=Ve.makeLineSpan("hdashline",t,m),n=[{type:"elem",elem:h,shift:0}];for(;c.length>0;){const t=c.pop(),o=t.pos-k;t.isDashed?n.push({type:"elem",elem:r,shift:o}):n.push({type:"elem",elem:e,shift:o})}h=Ve.makeVList({positionType:"individualShift",children:n},t)}if(0===T.length)return Ve.makeSpan(["mord"],[h],t);{let e=Ve.makeVList({positionType:"individualShift",children:T},t);return e=Ve.makeSpan(["tag"],[e],t),Ve.makeFragment([h,e])}},Lr={c:"center ",l:"left ",r:"right "},Dr=function(e,t){const r=[],n=new gt.MathNode("mtd",[],["mtr-glue"]),o=new gt.MathNode("mtd",[],["mml-eqn-num"]);for(let s=0;s0){const t=e.cols;let r="",n=!1,o=0,i=t.length;"separator"===t[0].type&&(a+="top ",o=1),"separator"===t[t.length-1].type&&(a+="bottom ",i-=1);for(let e=o;e0?"left ":"",a+=c[c.length-1].length>0?"right ":"";for(let e=1;e-1?"alignat":"align",s="split"===e.envName,i=Hr(e.parser,{cols:r,addJot:!0,autoTag:s?void 0:Rr(e.envName),emptySingleRow:!0,colSeparationType:o,maxNumCols:s?2:void 0,leqno:e.parser.settings.leqno},"display");let a,l=0;const h={type:"ordgroup",mode:e.mode,body:[]};if(t[0]&&"ordgroup"===t[0].type){let e="";for(let r=0;r0&&c&&(n=1),r[e]={type:"align",align:t,pregap:n,postgap:0}}return i.colSeparationType=c?"align":"alignat",i};Ar({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lcr".indexOf(t))return{type:"align",align:t};if("|"===t)return{type:"separator",separator:"|"};if(":"===t)return{type:"separator",separator:":"};throw new n("Unknown column alignment: "+t,e)})),o={cols:r,hskipBeforeAndAfter:!0,maxNumCols:r.length};return Hr(e.parser,o,Or(e.envName))},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){const t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")];let r="c";const o={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if("*"===e.envName.charAt(e.envName.length-1)){const t=e.parser;if(t.consumeSpaces(),"["===t.fetch().text){if(t.consume(),t.consumeSpaces(),r=t.fetch().text,-1==="lcr".indexOf(r))throw new n("Expected l or c or r",t.nextToken);t.consume(),t.consumeSpaces(),t.expect("]"),t.consume(),o.cols=[{type:"align",align:r}]}}const s=Hr(e.parser,o,Or(e.envName)),i=Math.max(0,...s.body.map((e=>e.length)));return s.cols=new Array(i).fill({type:"align",align:r}),t?{type:"leftright",mode:e.mode,body:[s],left:t[0],right:t[1],rightColor:void 0}:s},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:.5},"script");return t.colSeparationType="small",t},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lc".indexOf(t))return{type:"align",align:t};throw new n("Unknown column alignment: "+t,e)}));if(r.length>1)throw new n("{subarray} can contain only one column");let o={cols:r,hskipBeforeAndAfter:!1,arraystretch:.5};if(o=Hr(e.parser,o,"script"),o.body.length>0&&o.body[0].length>1)throw new n("{subarray} can contain only one column");return o},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},Or(e.envName));return{type:"leftright",mode:e.mode,body:[t],left:e.envName.indexOf("r")>-1?".":"\\{",right:e.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){l.contains(["gather","gather*"],e.envName)&&Ir(e);const t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Rr(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){Ir(e);const t={autoTag:Rr(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["CD"],props:{numArgs:0},handler(e){return Ir(e),function(e){const t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();const r=e.fetch().text;if("&"!==r&&"\\\\"!==r){if("\\end"===r){0===t[t.length-1].length&&t.pop();break}throw new n("Expected \\\\ or \\cr or \\end",e.nextToken)}e.consume()}let r=[];const o=[r];for(let a=0;a-1);else{if(!("<>AV".indexOf(o)>-1))throw new n('Expected one of "<>AV=|." after @',l[t]);for(let e=0;e<2;e++){let r=!0;for(let h=t+1;h{const r=e.font,n=t.withFont(r);return ht(e.body,n)},Gr=(e,t)=>{const r=e.font,n=t.withFont(r);return vt(e.body,n)},Ur={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};je({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=Ze(t[0]);let s=n;return s in Ur&&(s=Ur[s]),{type:"font",mode:r.mode,font:s.slice(1),body:o}},htmlBuilder:Fr,mathmlBuilder:Gr}),je({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:(e,t)=>{let{parser:r}=e;const n=t[0],o=l.isCharacterBox(n);return{type:"mclass",mode:r.mode,mclass:Ft(n),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:n}],isCharacterBox:o}}}),je({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n,breakOnTokenText:o}=e;const{mode:s}=r,i=r.parseExpression(!0,o);return{type:"font",mode:s,font:"math"+n.slice(1),body:{type:"ordgroup",mode:r.mode,body:i}}},htmlBuilder:Fr,mathmlBuilder:Gr});const Yr=(e,t)=>{let r=t;return"display"===e?r=r.id>=w.SCRIPT.id?r.text():w.DISPLAY:"text"===e&&r.size===w.DISPLAY.size?r=w.TEXT:"script"===e?r=w.SCRIPT:"scriptscript"===e&&(r=w.SCRIPTSCRIPT),r},Xr=(e,t)=>{const r=Yr(e.size,t.style),n=r.fracNum(),o=r.fracDen();let s;s=t.havingStyle(n);const i=ht(e.numer,s,t);if(e.continued){const e=8.5/t.fontMetrics().ptPerEm,r=3.5/t.fontMetrics().ptPerEm;i.height=i.height0?3*c:7*c,u=t.fontMetrics().denom1):(h>0?(m=t.fontMetrics().num2,p=c):(m=t.fontMetrics().num3,p=3*c),u=t.fontMetrics().denom2),l){const e=t.fontMetrics().axisHeight;m-i.depth-(e+.5*h){let r=new gt.MathNode("mfrac",[vt(e.numer,t),vt(e.denom,t)]);if(e.hasBarLine){if(e.barSize){const n=P(e.barSize,t);r.setAttribute("linethickness",F(n))}}else r.setAttribute("linethickness","0px");const n=Yr(e.size,t.style);if(n.size!==t.style.size){r=new gt.MathNode("mstyle",[r]);const e=n.size===w.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",e),r.setAttribute("scriptlevel","0")}if(null!=e.leftDelim||null!=e.rightDelim){const t=[];if(null!=e.leftDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.leftDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}if(t.push(r),null!=e.rightDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.rightDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}return bt(t)}return r};je({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];let i,a=null,l=null,h="auto";switch(n){case"\\dfrac":case"\\frac":case"\\tfrac":i=!0;break;case"\\\\atopfrac":i=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=!1,a="(",l=")";break;case"\\\\bracefrac":i=!1,a="\\{",l="\\}";break;case"\\\\brackfrac":i=!1,a="[",l="]";break;default:throw new Error("Unrecognized genfrac command")}switch(n){case"\\dfrac":case"\\dbinom":h="display";break;case"\\tfrac":case"\\tbinom":h="text"}return{type:"genfrac",mode:r.mode,continued:!1,numer:o,denom:s,hasBarLine:i,leftDelim:a,rightDelim:l,size:h,barSize:null}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:o,denom:s,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}}}),je({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(e){let t,{parser:r,funcName:n,token:o}=e;switch(n){case"\\over":t="\\frac";break;case"\\choose":t="\\binom";break;case"\\atop":t="\\\\atopfrac";break;case"\\brace":t="\\\\bracefrac";break;case"\\brack":t="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:r.mode,replaceWith:t,token:o}}});const _r=["display","text","script","scriptscript"],jr=function(e){let t=null;return e.length>0&&(t=e,t="."===t?null:t),t};je({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(e,t){let{parser:r}=e;const n=t[4],o=t[5],s=Ze(t[0]),i="atom"===s.type&&"open"===s.family?jr(s.text):null,a=Ze(t[1]),l="atom"===a.type&&"close"===a.family?jr(a.text):null,h=qt(t[2],"size");let c,m=null;h.isBlank?c=!0:(m=h.value,c=m.number>0);let p="auto",u=t[3];if("ordgroup"===u.type){if(u.body.length>0){const e=qt(u.body[0],"textord");p=_r[Number(e.text)]}}else u=qt(u,"textord"),p=_r[Number(u.text)];return{type:"genfrac",mode:r.mode,numer:n,denom:o,continued:!1,hasBarLine:c,barSize:m,leftDelim:i,rightDelim:l,size:p}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(e,t){let{parser:r,funcName:n,token:o}=e;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:qt(t[0],"size").value,token:o}}}),je({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=function(e){if(!e)throw new Error("Expected non-null, but got "+String(e));return e}(qt(t[1],"infix").size),i=t[2],a=s.number>0;return{type:"genfrac",mode:r.mode,numer:o,denom:i,continued:!1,hasBarLine:a,barSize:s,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:Xr,mathmlBuilder:Wr});const $r=(e,t)=>{const r=t.style;let n,o;"supsub"===e.type?(n=e.sup?ht(e.sup,t.havingStyle(r.sup()),t):ht(e.sub,t.havingStyle(r.sub()),t),o=qt(e.base,"horizBrace")):o=qt(e,"horizBrace");const s=ht(o.base,t.havingBaseStyle(w.DISPLAY)),i=Nt(o,t);let a;if(o.isOver?(a=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:.1},{type:"elem",elem:i}]},t),a.children[0].children[0].children[1].classes.push("svg-align")):(a=Ve.makeVList({positionType:"bottom",positionData:s.depth+.1+i.height,children:[{type:"elem",elem:i},{type:"kern",size:.1},{type:"elem",elem:s}]},t),a.children[0].children[0].children[0].classes.push("svg-align")),n){const e=Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t);a=o.isOver?Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:e},{type:"kern",size:.2},{type:"elem",elem:n}]},t):Ve.makeVList({positionType:"bottom",positionData:e.depth+.2+n.height+n.depth,children:[{type:"elem",elem:n},{type:"kern",size:.2},{type:"elem",elem:e}]},t)}return Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t)};je({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"horizBrace",mode:r.mode,label:n,isOver:/^\\over/.test(n),base:t[0]}},htmlBuilder:$r,mathmlBuilder:(e,t)=>{const r=Ct(e.label);return new gt.MathNode(e.isOver?"mover":"munder",[vt(e.base,t),r])}}),je({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[1],o=qt(t[0],"url").url;return r.settings.isTrusted({command:"\\href",url:o})?{type:"href",mode:r.mode,href:o,body:Ke(n)}:r.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{const r=nt(e.body,t,!1);return Ve.makeAnchor(e.href,[],r,t)},mathmlBuilder:(e,t)=>{let r=wt(e.body,t);return r instanceof ut||(r=new ut("mrow",[r])),r.setAttribute("href",e.href),r}}),je({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=qt(t[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:n}))return r.formatUnsupportedCmd("\\url");const o=[];for(let e=0;e{let{parser:r,funcName:o,token:s}=e;const i=qt(t[0],"raw").string,a=t[1];let l;r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");const h={};switch(o){case"\\htmlClass":h.class=i,l={command:"\\htmlClass",class:i};break;case"\\htmlId":h.id=i,l={command:"\\htmlId",id:i};break;case"\\htmlStyle":h.style=i,l={command:"\\htmlStyle",style:i};break;case"\\htmlData":{const e=i.split(",");for(let t=0;t{const r=nt(e.body,t,!1),n=["enclosing"];e.attributes.class&&n.push(...e.attributes.class.trim().split(/\s+/));const o=Ve.makeSpan(n,r,t);for(const t in e.attributes)"class"!==t&&e.attributes.hasOwnProperty(t)&&o.setAttribute(t,e.attributes[t]);return o},mathmlBuilder:(e,t)=>wt(e.body,t)}),je({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"htmlmathml",mode:r.mode,html:Ke(t[0]),mathml:Ke(t[1])}},htmlBuilder:(e,t)=>{const r=nt(e.html,t,!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>wt(e.mathml,t)});const Zr=function(e){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(e))return{number:+e,unit:"bp"};{const t=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(e);if(!t)throw new n("Invalid size: '"+e+"' in \\includegraphics");const r={number:+(t[1]+t[2]),unit:t[3]};if(!V(r))throw new n("Invalid unit: '"+r.unit+"' in \\includegraphics.");return r}};je({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:(e,t,r)=>{let{parser:o}=e,s={number:0,unit:"em"},i={number:.9,unit:"em"},a={number:0,unit:"em"},l="";if(r[0]){const e=qt(r[0],"raw").string.split(",");for(let t=0;t{const r=P(e.height,t);let n=0;e.totalheight.number>0&&(n=P(e.totalheight,t)-r);let o=0;e.width.number>0&&(o=P(e.width,t));const s={height:F(r+n)};o>0&&(s.width=F(o)),n>0&&(s.verticalAlign=F(-n));const i=new j(e.src,e.alt,s);return i.height=r,i.depth=n,i},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mglyph",[]);r.setAttribute("alt",e.alt);const n=P(e.height,t);let o=0;if(e.totalheight.number>0&&(o=P(e.totalheight,t)-n,r.setAttribute("valign",F(-o))),r.setAttribute("height",F(n+o)),e.width.number>0){const n=P(e.width,t);r.setAttribute("width",F(n))}return r.setAttribute("src",e.src),r}}),je({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=qt(t[0],"size");if(r.settings.strict){const e="m"===n[1],t="mu"===o.value.unit;e?(t||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" supports only mu units, not "+o.value.unit+" units"),"math"!==r.mode&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" works only in math mode")):t&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:o.value}},htmlBuilder(e,t){return Ve.makeGlue(e.dimension,t)},mathmlBuilder(e,t){const r=P(e.dimension,t);return new gt.SpaceNode(r)}}),je({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"lap",mode:r.mode,alignment:n.slice(5),body:o}},htmlBuilder:(e,t)=>{let r;"clap"===e.alignment?(r=Ve.makeSpan([],[ht(e.body,t)]),r=Ve.makeSpan(["inner"],[r],t)):r=Ve.makeSpan(["inner"],[ht(e.body,t)]);const n=Ve.makeSpan(["fix"],[]);let o=Ve.makeSpan([e.alignment],[r,n],t);const s=Ve.makeSpan(["strut"]);return s.style.height=F(o.height+o.depth),o.depth&&(s.style.verticalAlign=F(-o.depth)),o.children.unshift(s),o=Ve.makeSpan(["thinbox"],[o],t),Ve.makeSpan(["mord","vbox"],[o],t)},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);if("rlap"!==e.alignment){const t="llap"===e.alignment?"-1":"-0.5";r.setAttribute("lspace",t+"width")}return r.setAttribute("width","0px"),r}}),je({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){let{funcName:r,parser:n}=e;const o=n.mode;n.switchMode("math");const s="\\("===r?"\\)":"$",i=n.parseExpression(!1,s);return n.expect(s),n.switchMode(o),{type:"styling",mode:n.mode,style:"text",body:i}}}),je({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){throw new n("Mismatched "+e.funcName)}});const Kr=(e,t)=>{switch(t.style.size){case w.DISPLAY.size:return e.display;case w.TEXT.size:return e.text;case w.SCRIPT.size:return e.script;case w.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};je({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"mathchoice",mode:r.mode,display:Ke(t[0]),text:Ke(t[1]),script:Ke(t[2]),scriptscript:Ke(t[3])}},htmlBuilder:(e,t)=>{const r=Kr(e,t),n=nt(r,t,!1);return Ve.makeFragment(n)},mathmlBuilder:(e,t)=>{const r=Kr(e,t);return wt(r,t)}});const Jr=(e,t,r,n,o,s,i)=>{e=Ve.makeSpan([],[e]);const a=r&&l.isCharacterBox(r);let h,c,m;if(t){const e=ht(t,n.havingStyle(o.sup()),n);c={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing1,n.fontMetrics().bigOpSpacing3-e.depth)}}if(r){const e=ht(r,n.havingStyle(o.sub()),n);h={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing2,n.fontMetrics().bigOpSpacing4-e.height)}}if(c&&h){const t=n.fontMetrics().bigOpSpacing5+h.elem.height+h.elem.depth+h.kern+e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}else if(h){const t=e.height-i;m=Ve.makeVList({positionType:"top",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e}]},n)}else{if(!c)return e;{const t=e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}}const p=[m];if(h&&0!==s&&!a){const e=Ve.makeSpan(["mspace"],[],n);e.style.marginRight=F(s),p.unshift(e)}return Ve.makeSpan(["mop","op-limits"],p,n)},Qr=["\\smallint"],en=(e,t)=>{let r,n,o,s=!1;"supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"op"),s=!0):o=qt(e,"op");const i=t.style;let a,h=!1;if(i.size===w.DISPLAY.size&&o.symbol&&!l.contains(Qr,o.name)&&(h=!0),o.symbol){const e=h?"Size2-Regular":"Size1-Regular";let r="";if("\\oiint"!==o.name&&"\\oiiint"!==o.name||(r=o.name.slice(1),o.name="oiint"===r?"\\iint":"\\iiint"),a=Ve.makeSymbol(o.name,e,"math",t,["mop","op-symbol",h?"large-op":"small-op"]),r.length>0){const e=a.italic,n=Ve.staticSvg(r+"Size"+(h?"2":"1"),t);a=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:a,shift:0},{type:"elem",elem:n,shift:h?.08:0}]},t),o.name="\\"+r,a.classes.unshift("mop"),a.italic=e}}else if(o.body){const e=nt(o.body,t,!0);1===e.length&&e[0]instanceof Z?(a=e[0],a.classes[0]="mop"):a=Ve.makeSpan(["mop"],e,t)}else{const e=[];for(let r=1;r{let r;if(e.symbol)r=new ut("mo",[ft(e.name,e.mode)]),l.contains(Qr,e.name)&&r.setAttribute("largeop","false");else if(e.body)r=new ut("mo",xt(e.body,t));else{r=new ut("mi",[new dt(e.name.slice(1))]);const t=new ut("mo",[ft("\u2061","text")]);r=e.parentIsSupSub?new ut("mrow",[r,t]):pt([r,t])}return r},rn={"\u220f":"\\prod","\u2210":"\\coprod","\u2211":"\\sum","\u22c0":"\\bigwedge","\u22c1":"\\bigvee","\u22c2":"\\bigcap","\u22c3":"\\bigcup","\u2a00":"\\bigodot","\u2a01":"\\bigoplus","\u2a02":"\\bigotimes","\u2a04":"\\biguplus","\u2a06":"\\bigsqcup"};je({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","\u220f","\u2210","\u2211","\u22c0","\u22c1","\u22c2","\u22c3","\u2a00","\u2a01","\u2a02","\u2a04","\u2a06"],props:{numArgs:0},handler:(e,t)=>{let{parser:r,funcName:n}=e,o=n;return 1===o.length&&(o=rn[o]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:o}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:Ke(n)}},htmlBuilder:en,mathmlBuilder:tn});const nn={"\u222b":"\\int","\u222c":"\\iint","\u222d":"\\iiint","\u222e":"\\oint","\u222f":"\\oiint","\u2230":"\\oiiint"};je({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","\u222b","\u222c","\u222d","\u222e","\u222f","\u2230"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e,n=r;return 1===n.length&&(n=nn[n]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:en,mathmlBuilder:tn});const on=(e,t)=>{let r,n,o,s,i=!1;if("supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"operatorname"),i=!0):o=qt(e,"operatorname"),o.body.length>0){const e=o.body.map((e=>{const t=e.text;return"string"==typeof t?{type:"textord",mode:e.mode,text:t}:e})),r=nt(e,t.withFont("mathrm"),!0);for(let e=0;e{let{parser:r,funcName:n}=e;const o=t[0];return{type:"operatorname",mode:r.mode,body:Ke(o),alwaysHandleSupSub:"\\operatornamewithlimits"===n,limits:!1,parentIsSupSub:!1}},htmlBuilder:on,mathmlBuilder:(e,t)=>{let r=xt(e.body,t.withFont("mathrm")),n=!0;for(let e=0;ee.toText())).join("");r=[new gt.TextNode(e)]}const o=new gt.MathNode("mi",r);o.setAttribute("mathvariant","normal");const s=new gt.MathNode("mo",[ft("\u2061","text")]);return e.parentIsSupSub?new gt.MathNode("mrow",[o,s]):gt.newDocumentFragment([o,s])}}),Br("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@"),$e({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?Ve.makeFragment(nt(e.body,t,!1)):Ve.makeSpan(["mord"],nt(e.body,t,!0),t)},mathmlBuilder(e,t){return wt(e.body,t,!0)}}),je({type:"overline",names:["\\overline"],props:{numArgs:1},handler(e,t){let{parser:r}=e;const n=t[0];return{type:"overline",mode:r.mode,body:n}},htmlBuilder(e,t){const r=ht(e.body,t.havingCrampedStyle()),n=Ve.makeLineSpan("overline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*o},{type:"elem",elem:n},{type:"kern",size:o}]},t);return Ve.makeSpan(["mord","overline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("mover",[vt(e.body,t),r]);return n.setAttribute("accent","true"),n}}),je({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"phantom",mode:r.mode,body:Ke(n)}},htmlBuilder:(e,t)=>{const r=nt(e.body,t.withPhantom(),!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>{const r=xt(e.body,t);return new gt.MathNode("mphantom",r)}}),je({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"hphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{let r=Ve.makeSpan([],[ht(e.body,t.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(let e=0;e{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("height","0px"),o.setAttribute("depth","0px"),o}}),je({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"vphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{const r=Ve.makeSpan(["inner"],[ht(e.body,t.withPhantom())]),n=Ve.makeSpan(["fix"],[]);return Ve.makeSpan(["mord","rlap"],[r,n],t)},mathmlBuilder:(e,t)=>{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("width","0px"),o}}),je({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;const n=qt(t[0],"size").value,o=t[1];return{type:"raisebox",mode:r.mode,dy:n,body:o}},htmlBuilder(e,t){const r=ht(e.body,t),n=P(e.dy,t);return Ve.makeVList({positionType:"shift",positionData:-n,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){const r=new gt.MathNode("mpadded",[vt(e.body,t)]),n=e.dy.number+e.dy.unit;return r.setAttribute("voffset",n),r}}),je({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t}=e;return{type:"internal",mode:t.mode}}}),je({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,argTypes:["size","size","size"]},handler(e,t,r){let{parser:n}=e;const o=r[0],s=qt(t[0],"size"),i=qt(t[1],"size");return{type:"rule",mode:n.mode,shift:o&&qt(o,"size").value,width:s.value,height:i.value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mord","rule"],[],t),n=P(e.width,t),o=P(e.height,t),s=e.shift?P(e.shift,t):0;return r.style.borderRightWidth=F(n),r.style.borderTopWidth=F(o),r.style.bottom=F(s),r.width=n,r.height=o+s,r.depth=-s,r.maxFontSize=1.125*o*t.sizeMultiplier,r},mathmlBuilder(e,t){const r=P(e.width,t),n=P(e.height,t),o=e.shift?P(e.shift,t):0,s=t.color&&t.getColor()||"black",i=new gt.MathNode("mspace");i.setAttribute("mathbackground",s),i.setAttribute("width",F(r)),i.setAttribute("height",F(n));const a=new gt.MathNode("mpadded",[i]);return o>=0?a.setAttribute("height",F(o)):(a.setAttribute("height",F(o)),a.setAttribute("depth",F(-o))),a.setAttribute("voffset",F(o)),a}});const an=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"];je({type:"sizing",names:an,props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!1,r);return{type:"sizing",mode:o.mode,size:an.indexOf(n)+1,body:s}},htmlBuilder:(e,t)=>{const r=t.havingSize(e.size);return sn(e.body,r,t)},mathmlBuilder:(e,t)=>{const r=t.havingSize(e.size),n=xt(e.body,r),o=new gt.MathNode("mstyle",n);return o.setAttribute("mathsize",F(r.sizeMultiplier)),o}}),je({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:(e,t,r)=>{let{parser:n}=e,o=!1,s=!1;const i=r[0]&&qt(r[0],"ordgroup");if(i){let e="";for(let t=0;t{const r=Ve.makeSpan([],[ht(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return r;if(e.smashHeight&&(r.height=0,r.children))for(let e=0;e{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);return e.smashHeight&&r.setAttribute("height","0px"),e.smashDepth&&r.setAttribute("depth","0px"),r}}),je({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n}=e;const o=r[0],s=t[0];return{type:"sqrt",mode:n.mode,body:s,index:o}},htmlBuilder(e,t){let r=ht(e.body,t.havingCrampedStyle());0===r.height&&(r.height=t.fontMetrics().xHeight),r=Ve.wrapFragment(r,t);const n=t.fontMetrics().defaultRuleThickness;let o=n;t.style.idr.height+r.depth+s&&(s=(s+c-r.height-r.depth)/2);const m=a.height-r.height-s-l;r.style.paddingLeft=F(h);const p=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+m)},{type:"elem",elem:a},{type:"kern",size:l}]},t);if(e.index){const r=t.havingStyle(w.SCRIPTSCRIPT),n=ht(e.index,r,t),o=.6*(p.height-p.depth),s=Ve.makeVList({positionType:"shift",positionData:-o,children:[{type:"elem",elem:n}]},t),i=Ve.makeSpan(["root"],[s]);return Ve.makeSpan(["mord","sqrt"],[i,p],t)}return Ve.makeSpan(["mord","sqrt"],[p],t)},mathmlBuilder(e,t){const{body:r,index:n}=e;return n?new gt.MathNode("mroot",[vt(r,t),vt(n,t)]):new gt.MathNode("msqrt",[vt(r,t)])}});const ln={display:w.DISPLAY,text:w.TEXT,script:w.SCRIPT,scriptscript:w.SCRIPTSCRIPT};je({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e,t){let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!0,r),i=n.slice(1,n.length-5);return{type:"styling",mode:o.mode,style:i,body:s}},htmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r).withFont("");return sn(e.body,n,t)},mathmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r),o=xt(e.body,n),s=new gt.MathNode("mstyle",o),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]}[e.style];return s.setAttribute("scriptlevel",i[0]),s.setAttribute("displaystyle",i[1]),s}});$e({type:"supsub",htmlBuilder(e,t){const r=function(e,t){const r=e.base;if(r)return"op"===r.type?r.limits&&(t.style.size===w.DISPLAY.size||r.alwaysHandleSupSub)?en:null:"operatorname"===r.type?r.alwaysHandleSupSub&&(t.style.size===w.DISPLAY.size||r.limits)?on:null:"accent"===r.type?l.isCharacterBox(r.base)?Ht:null:"horizBrace"===r.type&&!e.sub===r.isOver?$r:null;return null}(e,t);if(r)return r(e,t);const{base:n,sup:o,sub:s}=e,i=ht(n,t);let a,h;const c=t.fontMetrics();let m=0,p=0;const u=n&&l.isCharacterBox(n);if(o){const e=t.havingStyle(t.style.sup());a=ht(o,e,t),u||(m=i.height-e.fontMetrics().supDrop*e.sizeMultiplier/t.sizeMultiplier)}if(s){const e=t.havingStyle(t.style.sub());h=ht(s,e,t),u||(p=i.depth+e.fontMetrics().subDrop*e.sizeMultiplier/t.sizeMultiplier)}let d;d=t.style===w.DISPLAY?c.sup1:t.style.cramped?c.sup3:c.sup2;const g=t.sizeMultiplier,f=F(.5/c.ptPerEm/g);let b,y=null;if(h){const t=e.base&&"op"===e.base.type&&e.base.name&&("\\oiint"===e.base.name||"\\oiiint"===e.base.name);(i instanceof Z||t)&&(y=F(-i.italic))}if(a&&h){m=Math.max(m,d,a.depth+.25*c.xHeight),p=Math.max(p,c.sub2);const e=4*c.defaultRuleThickness;if(m-a.depth-(h.height-p)0&&(m+=t,p-=t)}const r=[{type:"elem",elem:h,shift:p,marginRight:f,marginLeft:y},{type:"elem",elem:a,shift:-m,marginRight:f}];b=Ve.makeVList({positionType:"individualShift",children:r},t)}else if(h){p=Math.max(p,c.sub1,h.height-.8*c.xHeight);const e=[{type:"elem",elem:h,marginLeft:y,marginRight:f}];b=Ve.makeVList({positionType:"shift",positionData:p,children:e},t)}else{if(!a)throw new Error("supsub must have either sup or sub.");m=Math.max(m,d,a.depth+.25*c.xHeight),b=Ve.makeVList({positionType:"shift",positionData:-m,children:[{type:"elem",elem:a,marginRight:f}]},t)}const x=at(i,"right")||"mord";return Ve.makeSpan([x],[i,Ve.makeSpan(["msupsub"],[b])],t)},mathmlBuilder(e,t){let r,n,o=!1;e.base&&"horizBrace"===e.base.type&&(n=!!e.sup,n===e.base.isOver&&(o=!0,r=e.base.isOver)),!e.base||"op"!==e.base.type&&"operatorname"!==e.base.type||(e.base.parentIsSupSub=!0);const s=[vt(e.base,t)];let i;if(e.sub&&s.push(vt(e.sub,t)),e.sup&&s.push(vt(e.sup,t)),o)i=r?"mover":"munder";else if(e.sub)if(e.sup){const r=e.base;i=r&&"op"===r.type&&r.limits&&t.style===w.DISPLAY||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(t.style===w.DISPLAY||r.limits)?"munderover":"msubsup"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"munder":"msub"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"mover":"msup"}return new gt.MathNode(i,s)}}),$e({type:"atom",htmlBuilder(e,t){return Ve.mathsym(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[ft(e.text,e.mode)]);if("bin"===e.family){const n=yt(e,t);"bold-italic"===n&&r.setAttribute("mathvariant",n)}else"punct"===e.family?r.setAttribute("separator","true"):"open"!==e.family&&"close"!==e.family||r.setAttribute("stretchy","false");return r}});const hn={mi:"italic",mn:"normal",mtext:"normal"};$e({type:"mathord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"mathord")},mathmlBuilder(e,t){const r=new gt.MathNode("mi",[ft(e.text,e.mode,t)]),n=yt(e,t)||"italic";return n!==hn[r.type]&&r.setAttribute("mathvariant",n),r}}),$e({type:"textord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"textord")},mathmlBuilder(e,t){const r=ft(e.text,e.mode,t),n=yt(e,t)||"normal";let o;return o="text"===e.mode?new gt.MathNode("mtext",[r]):/[0-9]/.test(e.text)?new gt.MathNode("mn",[r]):"\\prime"===e.text?new gt.MathNode("mo",[r]):new gt.MathNode("mi",[r]),n!==hn[o.type]&&o.setAttribute("mathvariant",n),o}});const cn={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},mn={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};$e({type:"spacing",htmlBuilder(e,t){if(mn.hasOwnProperty(e.text)){const r=mn[e.text].className||"";if("text"===e.mode){const n=Ve.makeOrd(e,t,"textord");return n.classes.push(r),n}return Ve.makeSpan(["mspace",r],[Ve.mathsym(e.text,e.mode,t)],t)}if(cn.hasOwnProperty(e.text))return Ve.makeSpan(["mspace",cn[e.text]],[],t);throw new n('Unknown type of space "'+e.text+'"')},mathmlBuilder(e,t){let r;if(!mn.hasOwnProperty(e.text)){if(cn.hasOwnProperty(e.text))return new gt.MathNode("mspace");throw new n('Unknown type of space "'+e.text+'"')}return r=new gt.MathNode("mtext",[new gt.TextNode("\xa0")]),r}});const pn=()=>{const e=new gt.MathNode("mtd",[]);return e.setAttribute("width","50%"),e};$e({type:"tag",mathmlBuilder(e,t){const r=new gt.MathNode("mtable",[new gt.MathNode("mtr",[pn(),new gt.MathNode("mtd",[wt(e.body,t)]),pn(),new gt.MathNode("mtd",[wt(e.tag,t)])])]);return r.setAttribute("width","100%"),r}});const un={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},dn={"\\textbf":"textbf","\\textmd":"textmd"},gn={"\\textit":"textit","\\textup":"textup"},fn=(e,t)=>{const r=e.font;return r?un[r]?t.withTextFontFamily(un[r]):dn[r]?t.withTextFontWeight(dn[r]):t.withTextFontShape(gn[r]):t};je({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"text",mode:r.mode,body:Ke(o),font:n}},htmlBuilder(e,t){const r=fn(e,t),n=nt(e.body,r,!0);return Ve.makeSpan(["mord","text"],n,r)},mathmlBuilder(e,t){const r=fn(e,t);return wt(e.body,r)}}),je({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"underline",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=Ve.makeLineSpan("underline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:o},{type:"elem",elem:n},{type:"kern",size:3*o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","underline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("munder",[vt(e.body,t),r]);return n.setAttribute("accentunder","true"),n}}),je({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"vcenter",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=t.fontMetrics().axisHeight,o=.5*(r.height-n-(r.depth+n));return Ve.makeVList({positionType:"shift",positionData:o,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){return new gt.MathNode("mpadded",[vt(e.body,t)],["vcenter"])}}),je({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(e,t,r){throw new n("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){const r=bn(e),n=[],o=t.havingStyle(t.style.text());for(let t=0;te.body.replace(/ /g,e.star?"\u2423":"\xa0");var yn=Xe;const xn="[ \r\n\t]",wn="(\\\\[a-zA-Z@]+)"+xn+"*",vn="[\u0300-\u036f]",kn=new RegExp(vn+"+$"),Sn="("+xn+"+)|\\\\(\n|[ \r\t]+\n?)[ \r\t]*|([!-\\[\\]-\u2027\u202a-\ud7ff\uf900-\uffff]"+vn+"*|[\ud800-\udbff][\udc00-\udfff]"+vn+"*|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5|"+wn+"|\\\\[^\ud800-\udfff])";class Mn{constructor(e,t){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=e,this.settings=t,this.tokenRegex=new RegExp(Sn,"g"),this.catcodes={"%":14,"~":13}}setCatcode(e,t){this.catcodes[e]=t}lex(){const e=this.input,t=this.tokenRegex.lastIndex;if(t===e.length)return new Nr("EOF",new Cr(this,t,t));const r=this.tokenRegex.exec(e);if(null===r||r.index!==t)throw new n("Unexpected character: '"+e[t]+"'",new Nr(e[t],new Cr(this,t,t+1)));const o=r[6]||r[3]||(r[2]?"\\ ":" ");if(14===this.catcodes[o]){const t=e.indexOf("\n",this.tokenRegex.lastIndex);return-1===t?(this.tokenRegex.lastIndex=e.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=t+1,this.lex()}return new Nr(o,new Cr(this,t,this.tokenRegex.lastIndex))}}class zn{constructor(e,t){void 0===e&&(e={}),void 0===t&&(t={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=t,this.builtins=e,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(0===this.undefStack.length)throw new n("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");const e=this.undefStack.pop();for(const t in e)e.hasOwnProperty(t)&&(null==e[t]?delete this.current[t]:this.current[t]=e[t])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(e){return this.current.hasOwnProperty(e)||this.builtins.hasOwnProperty(e)}get(e){return this.current.hasOwnProperty(e)?this.current[e]:this.builtins[e]}set(e,t,r){if(void 0===r&&(r=!1),r){for(let t=0;t0&&(this.undefStack[this.undefStack.length-1][e]=t)}else{const t=this.undefStack[this.undefStack.length-1];t&&!t.hasOwnProperty(e)&&(t[e]=this.current[e])}null==t?delete this.current[e]:this.current[e]=t}}var An=Tr;Br("\\noexpand",(function(e){const t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}})),Br("\\expandafter",(function(e){const t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}})),Br("\\@firstoftwo",(function(e){return{tokens:e.consumeArgs(2)[0],numArgs:0}})),Br("\\@secondoftwo",(function(e){return{tokens:e.consumeArgs(2)[1],numArgs:0}})),Br("\\@ifnextchar",(function(e){const t=e.consumeArgs(3);e.consumeSpaces();const r=e.future();return 1===t[0].length&&t[0][0].text===r.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}})),Br("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}"),Br("\\TextOrMath",(function(e){const t=e.consumeArgs(2);return"text"===e.mode?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}}));const Tn={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};Br("\\char",(function(e){let t,r=e.popToken(),o="";if("'"===r.text)t=8,r=e.popToken();else if('"'===r.text)t=16,r=e.popToken();else if("`"===r.text)if(r=e.popToken(),"\\"===r.text[0])o=r.text.charCodeAt(1);else{if("EOF"===r.text)throw new n("\\char` missing argument");o=r.text.charCodeAt(0)}else t=10;if(t){if(o=Tn[r.text],null==o||o>=t)throw new n("Invalid base-"+t+" digit "+r.text);let s;for(;null!=(s=Tn[e.future().text])&&s{let o=e.consumeArg().tokens;if(1!==o.length)throw new n("\\newcommand's first argument must be a macro name");const s=o[0].text,i=e.isDefined(s);if(i&&!t)throw new n("\\newcommand{"+s+"} attempting to redefine "+s+"; use \\renewcommand");if(!i&&!r)throw new n("\\renewcommand{"+s+"} when command "+s+" does not yet exist; use \\newcommand");let a=0;if(o=e.consumeArg().tokens,1===o.length&&"["===o[0].text){let t="",r=e.expandNextToken();for(;"]"!==r.text&&"EOF"!==r.text;)t+=r.text,r=e.expandNextToken();if(!t.match(/^\s*[0-9]+\s*$/))throw new n("Invalid number of arguments: "+t);a=parseInt(t),o=e.consumeArg().tokens}return e.macros.set(s,{tokens:o,numArgs:a}),""};Br("\\newcommand",(e=>Bn(e,!1,!0))),Br("\\renewcommand",(e=>Bn(e,!0,!1))),Br("\\providecommand",(e=>Bn(e,!0,!0))),Br("\\message",(e=>{const t=e.consumeArgs(1)[0];return console.log(t.reverse().map((e=>e.text)).join("")),""})),Br("\\errmessage",(e=>{const t=e.consumeArgs(1)[0];return console.error(t.reverse().map((e=>e.text)).join("")),""})),Br("\\show",(e=>{const t=e.popToken(),r=t.text;return console.log(t,e.macros.get(r),yn[r],oe.math[r],oe.text[r]),""})),Br("\\bgroup","{"),Br("\\egroup","}"),Br("~","\\nobreakspace"),Br("\\lq","`"),Br("\\rq","'"),Br("\\aa","\\r a"),Br("\\AA","\\r A"),Br("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`\xa9}"),Br("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}"),Br("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`\xae}"),Br("\u212c","\\mathscr{B}"),Br("\u2130","\\mathscr{E}"),Br("\u2131","\\mathscr{F}"),Br("\u210b","\\mathscr{H}"),Br("\u2110","\\mathscr{I}"),Br("\u2112","\\mathscr{L}"),Br("\u2133","\\mathscr{M}"),Br("\u211b","\\mathscr{R}"),Br("\u212d","\\mathfrak{C}"),Br("\u210c","\\mathfrak{H}"),Br("\u2128","\\mathfrak{Z}"),Br("\\Bbbk","\\Bbb{k}"),Br("\xb7","\\cdotp"),Br("\\llap","\\mathllap{\\textrm{#1}}"),Br("\\rlap","\\mathrlap{\\textrm{#1}}"),Br("\\clap","\\mathclap{\\textrm{#1}}"),Br("\\mathstrut","\\vphantom{(}"),Br("\\underbar","\\underline{\\text{#1}}"),Br("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}'),Br("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`\u2260}}"),Br("\\ne","\\neq"),Br("\u2260","\\neq"),Br("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`\u2209}}"),Br("\u2209","\\notin"),Br("\u2258","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`\u2258}}"),Br("\u2259","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`\u2258}}"),Br("\u225a","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`\u225a}}"),Br("\u225b","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`\u225b}}"),Br("\u225d","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`\u225d}}"),Br("\u225e","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`\u225e}}"),Br("\u225f","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`\u225f}}"),Br("\u27c2","\\perp"),Br("\u203c","\\mathclose{!\\mkern-0.8mu!}"),Br("\u220c","\\notni"),Br("\u231c","\\ulcorner"),Br("\u231d","\\urcorner"),Br("\u231e","\\llcorner"),Br("\u231f","\\lrcorner"),Br("\xa9","\\copyright"),Br("\xae","\\textregistered"),Br("\ufe0f","\\textregistered"),Br("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}'),Br("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}'),Br("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}'),Br("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}'),Br("\\vdots","\\mathord{\\varvdots\\rule{0pt}{15pt}}"),Br("\u22ee","\\vdots"),Br("\\varGamma","\\mathit{\\Gamma}"),Br("\\varDelta","\\mathit{\\Delta}"),Br("\\varTheta","\\mathit{\\Theta}"),Br("\\varLambda","\\mathit{\\Lambda}"),Br("\\varXi","\\mathit{\\Xi}"),Br("\\varPi","\\mathit{\\Pi}"),Br("\\varSigma","\\mathit{\\Sigma}"),Br("\\varUpsilon","\\mathit{\\Upsilon}"),Br("\\varPhi","\\mathit{\\Phi}"),Br("\\varPsi","\\mathit{\\Psi}"),Br("\\varOmega","\\mathit{\\Omega}"),Br("\\substack","\\begin{subarray}{c}#1\\end{subarray}"),Br("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax"),Br("\\boxed","\\fbox{$\\displaystyle{#1}$}"),Br("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;"),Br("\\implies","\\DOTSB\\;\\Longrightarrow\\;"),Br("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");const Cn={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};Br("\\dots",(function(e){let t="\\dotso";const r=e.expandAfterFuture().text;return r in Cn?t=Cn[r]:("\\not"===r.slice(0,4)||r in oe.math&&l.contains(["bin","rel"],oe.math[r].group))&&(t="\\dotsb"),t}));const Nn={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};Br("\\dotso",(function(e){return e.future().text in Nn?"\\ldots\\,":"\\ldots"})),Br("\\dotsc",(function(e){const t=e.future().text;return t in Nn&&","!==t?"\\ldots\\,":"\\ldots"})),Br("\\cdots",(function(e){return e.future().text in Nn?"\\@cdots\\,":"\\@cdots"})),Br("\\dotsb","\\cdots"),Br("\\dotsm","\\cdots"),Br("\\dotsi","\\!\\cdots"),Br("\\dotsx","\\ldots\\,"),Br("\\DOTSI","\\relax"),Br("\\DOTSB","\\relax"),Br("\\DOTSX","\\relax"),Br("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax"),Br("\\,","\\tmspace+{3mu}{.1667em}"),Br("\\thinspace","\\,"),Br("\\>","\\mskip{4mu}"),Br("\\:","\\tmspace+{4mu}{.2222em}"),Br("\\medspace","\\:"),Br("\\;","\\tmspace+{5mu}{.2777em}"),Br("\\thickspace","\\;"),Br("\\!","\\tmspace-{3mu}{.1667em}"),Br("\\negthinspace","\\!"),Br("\\negmedspace","\\tmspace-{4mu}{.2222em}"),Br("\\negthickspace","\\tmspace-{5mu}{.277em}"),Br("\\enspace","\\kern.5em "),Br("\\enskip","\\hskip.5em\\relax"),Br("\\quad","\\hskip1em\\relax"),Br("\\qquad","\\hskip2em\\relax"),Br("\\tag","\\@ifstar\\tag@literal\\tag@paren"),Br("\\tag@paren","\\tag@literal{({#1})}"),Br("\\tag@literal",(e=>{if(e.macros.get("\\df@tag"))throw new n("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"})),Br("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}"),Br("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)"),Br("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}"),Br("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1"),Br("\\newline","\\\\\\relax"),Br("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");const qn=F(T["Main-Regular"]["T".charCodeAt(0)][1]-.7*T["Main-Regular"]["A".charCodeAt(0)][1]);Br("\\LaTeX","\\textrm{\\html@mathml{L\\kern-.36em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{LaTeX}}"),Br("\\KaTeX","\\textrm{\\html@mathml{K\\kern-.17em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{KaTeX}}"),Br("\\hspace","\\@ifstar\\@hspacer\\@hspace"),Br("\\@hspace","\\hskip #1\\relax"),Br("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax"),Br("\\ordinarycolon",":"),Br("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}"),Br("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}'),Br("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}'),Br("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}'),Br("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}'),Br("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}'),Br("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}'),Br("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}'),Br("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}'),Br("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}'),Br("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}'),Br("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}'),Br("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}'),Br("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}'),Br("\u2237","\\dblcolon"),Br("\u2239","\\eqcolon"),Br("\u2254","\\coloneqq"),Br("\u2255","\\eqqcolon"),Br("\u2a74","\\Coloneqq"),Br("\\ratio","\\vcentcolon"),Br("\\coloncolon","\\dblcolon"),Br("\\colonequals","\\coloneqq"),Br("\\coloncolonequals","\\Coloneqq"),Br("\\equalscolon","\\eqqcolon"),Br("\\equalscoloncolon","\\Eqqcolon"),Br("\\colonminus","\\coloneq"),Br("\\coloncolonminus","\\Coloneq"),Br("\\minuscolon","\\eqcolon"),Br("\\minuscoloncolon","\\Eqcolon"),Br("\\coloncolonapprox","\\Colonapprox"),Br("\\coloncolonsim","\\Colonsim"),Br("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`\u220c}}"),Br("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}"),Br("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}"),Br("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}"),Br("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}"),Br("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}"),Br("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}"),Br("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}"),Br("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}"),Br("\\gvertneqq","\\html@mathml{\\@gvertneqq}{\u2269}"),Br("\\lvertneqq","\\html@mathml{\\@lvertneqq}{\u2268}"),Br("\\ngeqq","\\html@mathml{\\@ngeqq}{\u2271}"),Br("\\ngeqslant","\\html@mathml{\\@ngeqslant}{\u2271}"),Br("\\nleqq","\\html@mathml{\\@nleqq}{\u2270}"),Br("\\nleqslant","\\html@mathml{\\@nleqslant}{\u2270}"),Br("\\nshortmid","\\html@mathml{\\@nshortmid}{\u2224}"),Br("\\nshortparallel","\\html@mathml{\\@nshortparallel}{\u2226}"),Br("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{\u2288}"),Br("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{\u2289}"),Br("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{\u228a}"),Br("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{\u2acb}"),Br("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{\u228b}"),Br("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{\u2acc}"),Br("\\imath","\\html@mathml{\\@imath}{\u0131}"),Br("\\jmath","\\html@mathml{\\@jmath}{\u0237}"),Br("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`\u27e6}}"),Br("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`\u27e7}}"),Br("\u27e6","\\llbracket"),Br("\u27e7","\\rrbracket"),Br("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`\u2983}}"),Br("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`\u2984}}"),Br("\u2983","\\lBrace"),Br("\u2984","\\rBrace"),Br("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`\u29b5}}"),Br("\u29b5","\\minuso"),Br("\\darr","\\downarrow"),Br("\\dArr","\\Downarrow"),Br("\\Darr","\\Downarrow"),Br("\\lang","\\langle"),Br("\\rang","\\rangle"),Br("\\uarr","\\uparrow"),Br("\\uArr","\\Uparrow"),Br("\\Uarr","\\Uparrow"),Br("\\N","\\mathbb{N}"),Br("\\R","\\mathbb{R}"),Br("\\Z","\\mathbb{Z}"),Br("\\alef","\\aleph"),Br("\\alefsym","\\aleph"),Br("\\Alpha","\\mathrm{A}"),Br("\\Beta","\\mathrm{B}"),Br("\\bull","\\bullet"),Br("\\Chi","\\mathrm{X}"),Br("\\clubs","\\clubsuit"),Br("\\cnums","\\mathbb{C}"),Br("\\Complex","\\mathbb{C}"),Br("\\Dagger","\\ddagger"),Br("\\diamonds","\\diamondsuit"),Br("\\empty","\\emptyset"),Br("\\Epsilon","\\mathrm{E}"),Br("\\Eta","\\mathrm{H}"),Br("\\exist","\\exists"),Br("\\harr","\\leftrightarrow"),Br("\\hArr","\\Leftrightarrow"),Br("\\Harr","\\Leftrightarrow"),Br("\\hearts","\\heartsuit"),Br("\\image","\\Im"),Br("\\infin","\\infty"),Br("\\Iota","\\mathrm{I}"),Br("\\isin","\\in"),Br("\\Kappa","\\mathrm{K}"),Br("\\larr","\\leftarrow"),Br("\\lArr","\\Leftarrow"),Br("\\Larr","\\Leftarrow"),Br("\\lrarr","\\leftrightarrow"),Br("\\lrArr","\\Leftrightarrow"),Br("\\Lrarr","\\Leftrightarrow"),Br("\\Mu","\\mathrm{M}"),Br("\\natnums","\\mathbb{N}"),Br("\\Nu","\\mathrm{N}"),Br("\\Omicron","\\mathrm{O}"),Br("\\plusmn","\\pm"),Br("\\rarr","\\rightarrow"),Br("\\rArr","\\Rightarrow"),Br("\\Rarr","\\Rightarrow"),Br("\\real","\\Re"),Br("\\reals","\\mathbb{R}"),Br("\\Reals","\\mathbb{R}"),Br("\\Rho","\\mathrm{P}"),Br("\\sdot","\\cdot"),Br("\\sect","\\S"),Br("\\spades","\\spadesuit"),Br("\\sub","\\subset"),Br("\\sube","\\subseteq"),Br("\\supe","\\supseteq"),Br("\\Tau","\\mathrm{T}"),Br("\\thetasym","\\vartheta"),Br("\\weierp","\\wp"),Br("\\Zeta","\\mathrm{Z}"),Br("\\argmin","\\DOTSB\\operatorname*{arg\\,min}"),Br("\\argmax","\\DOTSB\\operatorname*{arg\\,max}"),Br("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits"),Br("\\bra","\\mathinner{\\langle{#1}|}"),Br("\\ket","\\mathinner{|{#1}\\rangle}"),Br("\\braket","\\mathinner{\\langle{#1}\\rangle}"),Br("\\Bra","\\left\\langle#1\\right|"),Br("\\Ket","\\left|#1\\right\\rangle");const In=e=>t=>{const r=t.consumeArg().tokens,n=t.consumeArg().tokens,o=t.consumeArg().tokens,s=t.consumeArg().tokens,i=t.macros.get("|"),a=t.macros.get("\\|");t.macros.beginGroup();const l=t=>r=>{e&&(r.macros.set("|",i),o.length&&r.macros.set("\\|",a));let s=t;if(!t&&o.length){"|"===r.future().text&&(r.popToken(),s=!0)}return{tokens:s?o:n,numArgs:0}};t.macros.set("|",l(!1)),o.length&&t.macros.set("\\|",l(!0));const h=t.consumeArg().tokens,c=t.expandTokens([...s,...h,...r]);return t.macros.endGroup(),{tokens:c.reverse(),numArgs:0}};Br("\\bra@ket",In(!1)),Br("\\bra@set",In(!0)),Br("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}"),Br("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}"),Br("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}"),Br("\\angln","{\\angl n}"),Br("\\blue","\\textcolor{##6495ed}{#1}"),Br("\\orange","\\textcolor{##ffa500}{#1}"),Br("\\pink","\\textcolor{##ff00af}{#1}"),Br("\\red","\\textcolor{##df0030}{#1}"),Br("\\green","\\textcolor{##28ae7b}{#1}"),Br("\\gray","\\textcolor{gray}{#1}"),Br("\\purple","\\textcolor{##9d38bd}{#1}"),Br("\\blueA","\\textcolor{##ccfaff}{#1}"),Br("\\blueB","\\textcolor{##80f6ff}{#1}"),Br("\\blueC","\\textcolor{##63d9ea}{#1}"),Br("\\blueD","\\textcolor{##11accd}{#1}"),Br("\\blueE","\\textcolor{##0c7f99}{#1}"),Br("\\tealA","\\textcolor{##94fff5}{#1}"),Br("\\tealB","\\textcolor{##26edd5}{#1}"),Br("\\tealC","\\textcolor{##01d1c1}{#1}"),Br("\\tealD","\\textcolor{##01a995}{#1}"),Br("\\tealE","\\textcolor{##208170}{#1}"),Br("\\greenA","\\textcolor{##b6ffb0}{#1}"),Br("\\greenB","\\textcolor{##8af281}{#1}"),Br("\\greenC","\\textcolor{##74cf70}{#1}"),Br("\\greenD","\\textcolor{##1fab54}{#1}"),Br("\\greenE","\\textcolor{##0d923f}{#1}"),Br("\\goldA","\\textcolor{##ffd0a9}{#1}"),Br("\\goldB","\\textcolor{##ffbb71}{#1}"),Br("\\goldC","\\textcolor{##ff9c39}{#1}"),Br("\\goldD","\\textcolor{##e07d10}{#1}"),Br("\\goldE","\\textcolor{##a75a05}{#1}"),Br("\\redA","\\textcolor{##fca9a9}{#1}"),Br("\\redB","\\textcolor{##ff8482}{#1}"),Br("\\redC","\\textcolor{##f9685d}{#1}"),Br("\\redD","\\textcolor{##e84d39}{#1}"),Br("\\redE","\\textcolor{##bc2612}{#1}"),Br("\\maroonA","\\textcolor{##ffbde0}{#1}"),Br("\\maroonB","\\textcolor{##ff92c6}{#1}"),Br("\\maroonC","\\textcolor{##ed5fa6}{#1}"),Br("\\maroonD","\\textcolor{##ca337c}{#1}"),Br("\\maroonE","\\textcolor{##9e034e}{#1}"),Br("\\purpleA","\\textcolor{##ddd7ff}{#1}"),Br("\\purpleB","\\textcolor{##c6b9fc}{#1}"),Br("\\purpleC","\\textcolor{##aa87ff}{#1}"),Br("\\purpleD","\\textcolor{##7854ab}{#1}"),Br("\\purpleE","\\textcolor{##543b78}{#1}"),Br("\\mintA","\\textcolor{##f5f9e8}{#1}"),Br("\\mintB","\\textcolor{##edf2df}{#1}"),Br("\\mintC","\\textcolor{##e0e5cc}{#1}"),Br("\\grayA","\\textcolor{##f6f7f7}{#1}"),Br("\\grayB","\\textcolor{##f0f1f2}{#1}"),Br("\\grayC","\\textcolor{##e3e5e6}{#1}"),Br("\\grayD","\\textcolor{##d6d8da}{#1}"),Br("\\grayE","\\textcolor{##babec2}{#1}"),Br("\\grayF","\\textcolor{##888d93}{#1}"),Br("\\grayG","\\textcolor{##626569}{#1}"),Br("\\grayH","\\textcolor{##3b3e40}{#1}"),Br("\\grayI","\\textcolor{##21242c}{#1}"),Br("\\kaBlue","\\textcolor{##314453}{#1}"),Br("\\kaGreen","\\textcolor{##71B307}{#1}");const Rn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class Hn{constructor(e,t,r){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=t,this.expansionCount=0,this.feed(e),this.macros=new zn(An,t.macros),this.mode=r,this.stack=[]}feed(e){this.lexer=new Mn(e,this.settings)}switchMode(e){this.mode=e}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return 0===this.stack.length&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(e){this.stack.push(e)}pushTokens(e){this.stack.push(...e)}scanArgument(e){let t,r,n;if(e){if(this.consumeSpaces(),"["!==this.future().text)return null;t=this.popToken(),({tokens:n,end:r}=this.consumeArg(["]"]))}else({tokens:n,start:t,end:r}=this.consumeArg());return this.pushToken(new Nr("EOF",r.loc)),this.pushTokens(n),t.range(r,"")}consumeSpaces(){for(;;){if(" "!==this.future().text)break;this.stack.pop()}}consumeArg(e){const t=[],r=e&&e.length>0;r||this.consumeSpaces();const o=this.future();let s,i=0,a=0;do{if(s=this.popToken(),t.push(s),"{"===s.text)++i;else if("}"===s.text){if(--i,-1===i)throw new n("Extra }",s)}else if("EOF"===s.text)throw new n("Unexpected end of input in a macro argument, expected '"+(e&&r?e[a]:"}")+"'",s);if(e&&r)if((0===i||1===i&&"{"===e[a])&&s.text===e[a]){if(++a,a===e.length){t.splice(-a,a);break}}else a=0}while(0!==i||r);return"{"===o.text&&"}"===t[t.length-1].text&&(t.pop(),t.shift()),t.reverse(),{tokens:t,start:o,end:s}}consumeArgs(e,t){if(t){if(t.length!==e+1)throw new n("The length of delimiters doesn't match the number of args!");const r=t[0];for(let e=0;ethis.settings.maxExpand)throw new n("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(e){const t=this.popToken(),r=t.text,o=t.noexpand?null:this._getExpansion(r);if(null==o||e&&o.unexpandable){if(e&&null==o&&"\\"===r[0]&&!this.isDefined(r))throw new n("Undefined control sequence: "+r);return this.pushToken(t),!1}this.countExpansion(1);let s=o.tokens;const i=this.consumeArgs(o.numArgs,o.delimiters);if(o.numArgs){s=s.slice();for(let e=s.length-1;e>=0;--e){let t=s[e];if("#"===t.text){if(0===e)throw new n("Incomplete placeholder at end of macro body",t);if(t=s[--e],"#"===t.text)s.splice(e+1,1);else{if(!/^[1-9]$/.test(t.text))throw new n("Not a valid argument number",t);s.splice(e,2,...i[+t.text-1])}}}}return this.pushTokens(s),s.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(!1===this.expandOnce()){const e=this.stack.pop();return e.treatAsRelax&&(e.text="\\relax"),e}throw new Error}expandMacro(e){return this.macros.has(e)?this.expandTokens([new Nr(e)]):void 0}expandTokens(e){const t=[],r=this.stack.length;for(this.pushTokens(e);this.stack.length>r;)if(!1===this.expandOnce(!0)){const e=this.stack.pop();e.treatAsRelax&&(e.noexpand=!1,e.treatAsRelax=!1),t.push(e)}return this.countExpansion(t.length),t}expandMacroAsText(e){const t=this.expandMacro(e);return t?t.map((e=>e.text)).join(""):t}_getExpansion(e){const t=this.macros.get(e);if(null==t)return t;if(1===e.length){const t=this.lexer.catcodes[e];if(null!=t&&13!==t)return}const r="function"==typeof t?t(this):t;if("string"==typeof r){let e=0;if(-1!==r.indexOf("#")){const t=r.replace(/##/g,"");for(;-1!==t.indexOf("#"+(e+1));)++e}const t=new Mn(r,this.settings),n=[];let o=t.lex();for(;"EOF"!==o.text;)n.push(o),o=t.lex();n.reverse();return{tokens:n,numArgs:e}}return r}isDefined(e){return this.macros.has(e)||yn.hasOwnProperty(e)||oe.math.hasOwnProperty(e)||oe.text.hasOwnProperty(e)||Rn.hasOwnProperty(e)}isExpandable(e){const t=this.macros.get(e);return null!=t?"string"==typeof t||"function"==typeof t||!t.unexpandable:yn.hasOwnProperty(e)&&!yn[e].primitive}}const On=/^[\u208a\u208b\u208c\u208d\u208e\u2080\u2081\u2082\u2083\u2084\u2085\u2086\u2087\u2088\u2089\u2090\u2091\u2095\u1d62\u2c7c\u2096\u2097\u2098\u2099\u2092\u209a\u1d63\u209b\u209c\u1d64\u1d65\u2093\u1d66\u1d67\u1d68\u1d69\u1d6a]/,En=Object.freeze({"\u208a":"+","\u208b":"-","\u208c":"=","\u208d":"(","\u208e":")","\u2080":"0","\u2081":"1","\u2082":"2","\u2083":"3","\u2084":"4","\u2085":"5","\u2086":"6","\u2087":"7","\u2088":"8","\u2089":"9","\u2090":"a","\u2091":"e","\u2095":"h","\u1d62":"i","\u2c7c":"j","\u2096":"k","\u2097":"l","\u2098":"m","\u2099":"n","\u2092":"o","\u209a":"p","\u1d63":"r","\u209b":"s","\u209c":"t","\u1d64":"u","\u1d65":"v","\u2093":"x","\u1d66":"\u03b2","\u1d67":"\u03b3","\u1d68":"\u03c1","\u1d69":"\u03d5","\u1d6a":"\u03c7","\u207a":"+","\u207b":"-","\u207c":"=","\u207d":"(","\u207e":")","\u2070":"0","\xb9":"1","\xb2":"2","\xb3":"3","\u2074":"4","\u2075":"5","\u2076":"6","\u2077":"7","\u2078":"8","\u2079":"9","\u1d2c":"A","\u1d2e":"B","\u1d30":"D","\u1d31":"E","\u1d33":"G","\u1d34":"H","\u1d35":"I","\u1d36":"J","\u1d37":"K","\u1d38":"L","\u1d39":"M","\u1d3a":"N","\u1d3c":"O","\u1d3e":"P","\u1d3f":"R","\u1d40":"T","\u1d41":"U","\u2c7d":"V","\u1d42":"W","\u1d43":"a","\u1d47":"b","\u1d9c":"c","\u1d48":"d","\u1d49":"e","\u1da0":"f","\u1d4d":"g","\u02b0":"h","\u2071":"i","\u02b2":"j","\u1d4f":"k","\u02e1":"l","\u1d50":"m","\u207f":"n","\u1d52":"o","\u1d56":"p","\u02b3":"r","\u02e2":"s","\u1d57":"t","\u1d58":"u","\u1d5b":"v","\u02b7":"w","\u02e3":"x","\u02b8":"y","\u1dbb":"z","\u1d5d":"\u03b2","\u1d5e":"\u03b3","\u1d5f":"\u03b4","\u1d60":"\u03d5","\u1d61":"\u03c7","\u1dbf":"\u03b8"}),Ln={"\u0301":{text:"\\'",math:"\\acute"},"\u0300":{text:"\\`",math:"\\grave"},"\u0308":{text:'\\"',math:"\\ddot"},"\u0303":{text:"\\~",math:"\\tilde"},"\u0304":{text:"\\=",math:"\\bar"},"\u0306":{text:"\\u",math:"\\breve"},"\u030c":{text:"\\v",math:"\\check"},"\u0302":{text:"\\^",math:"\\hat"},"\u0307":{text:"\\.",math:"\\dot"},"\u030a":{text:"\\r",math:"\\mathring"},"\u030b":{text:"\\H"},"\u0327":{text:"\\c"}},Dn={"\xe1":"a\u0301","\xe0":"a\u0300","\xe4":"a\u0308","\u01df":"a\u0308\u0304","\xe3":"a\u0303","\u0101":"a\u0304","\u0103":"a\u0306","\u1eaf":"a\u0306\u0301","\u1eb1":"a\u0306\u0300","\u1eb5":"a\u0306\u0303","\u01ce":"a\u030c","\xe2":"a\u0302","\u1ea5":"a\u0302\u0301","\u1ea7":"a\u0302\u0300","\u1eab":"a\u0302\u0303","\u0227":"a\u0307","\u01e1":"a\u0307\u0304","\xe5":"a\u030a","\u01fb":"a\u030a\u0301","\u1e03":"b\u0307","\u0107":"c\u0301","\u1e09":"c\u0327\u0301","\u010d":"c\u030c","\u0109":"c\u0302","\u010b":"c\u0307","\xe7":"c\u0327","\u010f":"d\u030c","\u1e0b":"d\u0307","\u1e11":"d\u0327","\xe9":"e\u0301","\xe8":"e\u0300","\xeb":"e\u0308","\u1ebd":"e\u0303","\u0113":"e\u0304","\u1e17":"e\u0304\u0301","\u1e15":"e\u0304\u0300","\u0115":"e\u0306","\u1e1d":"e\u0327\u0306","\u011b":"e\u030c","\xea":"e\u0302","\u1ebf":"e\u0302\u0301","\u1ec1":"e\u0302\u0300","\u1ec5":"e\u0302\u0303","\u0117":"e\u0307","\u0229":"e\u0327","\u1e1f":"f\u0307","\u01f5":"g\u0301","\u1e21":"g\u0304","\u011f":"g\u0306","\u01e7":"g\u030c","\u011d":"g\u0302","\u0121":"g\u0307","\u0123":"g\u0327","\u1e27":"h\u0308","\u021f":"h\u030c","\u0125":"h\u0302","\u1e23":"h\u0307","\u1e29":"h\u0327","\xed":"i\u0301","\xec":"i\u0300","\xef":"i\u0308","\u1e2f":"i\u0308\u0301","\u0129":"i\u0303","\u012b":"i\u0304","\u012d":"i\u0306","\u01d0":"i\u030c","\xee":"i\u0302","\u01f0":"j\u030c","\u0135":"j\u0302","\u1e31":"k\u0301","\u01e9":"k\u030c","\u0137":"k\u0327","\u013a":"l\u0301","\u013e":"l\u030c","\u013c":"l\u0327","\u1e3f":"m\u0301","\u1e41":"m\u0307","\u0144":"n\u0301","\u01f9":"n\u0300","\xf1":"n\u0303","\u0148":"n\u030c","\u1e45":"n\u0307","\u0146":"n\u0327","\xf3":"o\u0301","\xf2":"o\u0300","\xf6":"o\u0308","\u022b":"o\u0308\u0304","\xf5":"o\u0303","\u1e4d":"o\u0303\u0301","\u1e4f":"o\u0303\u0308","\u022d":"o\u0303\u0304","\u014d":"o\u0304","\u1e53":"o\u0304\u0301","\u1e51":"o\u0304\u0300","\u014f":"o\u0306","\u01d2":"o\u030c","\xf4":"o\u0302","\u1ed1":"o\u0302\u0301","\u1ed3":"o\u0302\u0300","\u1ed7":"o\u0302\u0303","\u022f":"o\u0307","\u0231":"o\u0307\u0304","\u0151":"o\u030b","\u1e55":"p\u0301","\u1e57":"p\u0307","\u0155":"r\u0301","\u0159":"r\u030c","\u1e59":"r\u0307","\u0157":"r\u0327","\u015b":"s\u0301","\u1e65":"s\u0301\u0307","\u0161":"s\u030c","\u1e67":"s\u030c\u0307","\u015d":"s\u0302","\u1e61":"s\u0307","\u015f":"s\u0327","\u1e97":"t\u0308","\u0165":"t\u030c","\u1e6b":"t\u0307","\u0163":"t\u0327","\xfa":"u\u0301","\xf9":"u\u0300","\xfc":"u\u0308","\u01d8":"u\u0308\u0301","\u01dc":"u\u0308\u0300","\u01d6":"u\u0308\u0304","\u01da":"u\u0308\u030c","\u0169":"u\u0303","\u1e79":"u\u0303\u0301","\u016b":"u\u0304","\u1e7b":"u\u0304\u0308","\u016d":"u\u0306","\u01d4":"u\u030c","\xfb":"u\u0302","\u016f":"u\u030a","\u0171":"u\u030b","\u1e7d":"v\u0303","\u1e83":"w\u0301","\u1e81":"w\u0300","\u1e85":"w\u0308","\u0175":"w\u0302","\u1e87":"w\u0307","\u1e98":"w\u030a","\u1e8d":"x\u0308","\u1e8b":"x\u0307","\xfd":"y\u0301","\u1ef3":"y\u0300","\xff":"y\u0308","\u1ef9":"y\u0303","\u0233":"y\u0304","\u0177":"y\u0302","\u1e8f":"y\u0307","\u1e99":"y\u030a","\u017a":"z\u0301","\u017e":"z\u030c","\u1e91":"z\u0302","\u017c":"z\u0307","\xc1":"A\u0301","\xc0":"A\u0300","\xc4":"A\u0308","\u01de":"A\u0308\u0304","\xc3":"A\u0303","\u0100":"A\u0304","\u0102":"A\u0306","\u1eae":"A\u0306\u0301","\u1eb0":"A\u0306\u0300","\u1eb4":"A\u0306\u0303","\u01cd":"A\u030c","\xc2":"A\u0302","\u1ea4":"A\u0302\u0301","\u1ea6":"A\u0302\u0300","\u1eaa":"A\u0302\u0303","\u0226":"A\u0307","\u01e0":"A\u0307\u0304","\xc5":"A\u030a","\u01fa":"A\u030a\u0301","\u1e02":"B\u0307","\u0106":"C\u0301","\u1e08":"C\u0327\u0301","\u010c":"C\u030c","\u0108":"C\u0302","\u010a":"C\u0307","\xc7":"C\u0327","\u010e":"D\u030c","\u1e0a":"D\u0307","\u1e10":"D\u0327","\xc9":"E\u0301","\xc8":"E\u0300","\xcb":"E\u0308","\u1ebc":"E\u0303","\u0112":"E\u0304","\u1e16":"E\u0304\u0301","\u1e14":"E\u0304\u0300","\u0114":"E\u0306","\u1e1c":"E\u0327\u0306","\u011a":"E\u030c","\xca":"E\u0302","\u1ebe":"E\u0302\u0301","\u1ec0":"E\u0302\u0300","\u1ec4":"E\u0302\u0303","\u0116":"E\u0307","\u0228":"E\u0327","\u1e1e":"F\u0307","\u01f4":"G\u0301","\u1e20":"G\u0304","\u011e":"G\u0306","\u01e6":"G\u030c","\u011c":"G\u0302","\u0120":"G\u0307","\u0122":"G\u0327","\u1e26":"H\u0308","\u021e":"H\u030c","\u0124":"H\u0302","\u1e22":"H\u0307","\u1e28":"H\u0327","\xcd":"I\u0301","\xcc":"I\u0300","\xcf":"I\u0308","\u1e2e":"I\u0308\u0301","\u0128":"I\u0303","\u012a":"I\u0304","\u012c":"I\u0306","\u01cf":"I\u030c","\xce":"I\u0302","\u0130":"I\u0307","\u0134":"J\u0302","\u1e30":"K\u0301","\u01e8":"K\u030c","\u0136":"K\u0327","\u0139":"L\u0301","\u013d":"L\u030c","\u013b":"L\u0327","\u1e3e":"M\u0301","\u1e40":"M\u0307","\u0143":"N\u0301","\u01f8":"N\u0300","\xd1":"N\u0303","\u0147":"N\u030c","\u1e44":"N\u0307","\u0145":"N\u0327","\xd3":"O\u0301","\xd2":"O\u0300","\xd6":"O\u0308","\u022a":"O\u0308\u0304","\xd5":"O\u0303","\u1e4c":"O\u0303\u0301","\u1e4e":"O\u0303\u0308","\u022c":"O\u0303\u0304","\u014c":"O\u0304","\u1e52":"O\u0304\u0301","\u1e50":"O\u0304\u0300","\u014e":"O\u0306","\u01d1":"O\u030c","\xd4":"O\u0302","\u1ed0":"O\u0302\u0301","\u1ed2":"O\u0302\u0300","\u1ed6":"O\u0302\u0303","\u022e":"O\u0307","\u0230":"O\u0307\u0304","\u0150":"O\u030b","\u1e54":"P\u0301","\u1e56":"P\u0307","\u0154":"R\u0301","\u0158":"R\u030c","\u1e58":"R\u0307","\u0156":"R\u0327","\u015a":"S\u0301","\u1e64":"S\u0301\u0307","\u0160":"S\u030c","\u1e66":"S\u030c\u0307","\u015c":"S\u0302","\u1e60":"S\u0307","\u015e":"S\u0327","\u0164":"T\u030c","\u1e6a":"T\u0307","\u0162":"T\u0327","\xda":"U\u0301","\xd9":"U\u0300","\xdc":"U\u0308","\u01d7":"U\u0308\u0301","\u01db":"U\u0308\u0300","\u01d5":"U\u0308\u0304","\u01d9":"U\u0308\u030c","\u0168":"U\u0303","\u1e78":"U\u0303\u0301","\u016a":"U\u0304","\u1e7a":"U\u0304\u0308","\u016c":"U\u0306","\u01d3":"U\u030c","\xdb":"U\u0302","\u016e":"U\u030a","\u0170":"U\u030b","\u1e7c":"V\u0303","\u1e82":"W\u0301","\u1e80":"W\u0300","\u1e84":"W\u0308","\u0174":"W\u0302","\u1e86":"W\u0307","\u1e8c":"X\u0308","\u1e8a":"X\u0307","\xdd":"Y\u0301","\u1ef2":"Y\u0300","\u0178":"Y\u0308","\u1ef8":"Y\u0303","\u0232":"Y\u0304","\u0176":"Y\u0302","\u1e8e":"Y\u0307","\u0179":"Z\u0301","\u017d":"Z\u030c","\u1e90":"Z\u0302","\u017b":"Z\u0307","\u03ac":"\u03b1\u0301","\u1f70":"\u03b1\u0300","\u1fb1":"\u03b1\u0304","\u1fb0":"\u03b1\u0306","\u03ad":"\u03b5\u0301","\u1f72":"\u03b5\u0300","\u03ae":"\u03b7\u0301","\u1f74":"\u03b7\u0300","\u03af":"\u03b9\u0301","\u1f76":"\u03b9\u0300","\u03ca":"\u03b9\u0308","\u0390":"\u03b9\u0308\u0301","\u1fd2":"\u03b9\u0308\u0300","\u1fd1":"\u03b9\u0304","\u1fd0":"\u03b9\u0306","\u03cc":"\u03bf\u0301","\u1f78":"\u03bf\u0300","\u03cd":"\u03c5\u0301","\u1f7a":"\u03c5\u0300","\u03cb":"\u03c5\u0308","\u03b0":"\u03c5\u0308\u0301","\u1fe2":"\u03c5\u0308\u0300","\u1fe1":"\u03c5\u0304","\u1fe0":"\u03c5\u0306","\u03ce":"\u03c9\u0301","\u1f7c":"\u03c9\u0300","\u038e":"\u03a5\u0301","\u1fea":"\u03a5\u0300","\u03ab":"\u03a5\u0308","\u1fe9":"\u03a5\u0304","\u1fe8":"\u03a5\u0306","\u038f":"\u03a9\u0301","\u1ffa":"\u03a9\u0300"};class Vn{constructor(e,t){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new Hn(e,t,this.mode),this.settings=t,this.leftrightDepth=0}expect(e,t){if(void 0===t&&(t=!0),this.fetch().text!==e)throw new n("Expected '"+e+"', got '"+this.fetch().text+"'",this.fetch());t&&this.consume()}consume(){this.nextToken=null}fetch(){return null==this.nextToken&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(e){this.mode=e,this.gullet.switchMode(e)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{const e=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),e}finally{this.gullet.endGroups()}}subparse(e){const t=this.nextToken;this.consume(),this.gullet.pushToken(new Nr("}")),this.gullet.pushTokens(e);const r=this.parseExpression(!1);return this.expect("}"),this.nextToken=t,r}parseExpression(e,t){const r=[];for(;;){"math"===this.mode&&this.consumeSpaces();const n=this.fetch();if(-1!==Vn.endOfExpression.indexOf(n.text))break;if(t&&n.text===t)break;if(e&&yn[n.text]&&yn[n.text].infix)break;const o=this.parseAtom(t);if(!o)break;"internal"!==o.type&&r.push(o)}return"text"===this.mode&&this.formLigatures(r),this.handleInfixNodes(r)}handleInfixNodes(e){let t,r=-1;for(let o=0;o=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+t[0]+'" used in math mode',e);const r=oe[this.mode][t].group,n=Cr.range(e);let s;if(te.hasOwnProperty(r)){const e=r;s={type:"atom",mode:this.mode,family:e,loc:n,text:t}}else s={type:r,mode:this.mode,loc:n,text:t};o=s}else{if(!(t.charCodeAt(0)>=128))return null;this.settings.strict&&(S(t.charCodeAt(0))?"math"===this.mode&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+t[0]+'" used in math mode',e):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+t[0]+'" ('+t.charCodeAt(0)+")",e)),o={type:"textord",mode:"text",loc:Cr.range(e),text:t}}if(this.consume(),r)for(let t=0;t%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,c=/^(?:(?:http[s\u017F]?|ftp):\/\/)(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!10(?:\.[0-9]{1,3}){3})(?!127(?:\.[0-9]{1,3}){3})(?!169\.254(?:\.[0-9]{1,3}){2})(?!192\.168(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?$/i,h=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,d=/^(?:\/(?:[^~/]|~0|~1)*)*$/,f=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,p=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/;function m(e){return a.copy(m[e="full"==e?"full":"fast"])}function v(e){var r=e.match(o);if(!r)return!1;var t,a=+r[2],s=+r[3];return 1<=a&&a<=12&&1<=s&&s<=(2!=a||((t=+r[1])%4!=0||t%100==0&&t%400!=0)?i[a]:29)}function g(e,r){var t=e.match(n);if(!t)return!1;var a=t[1],s=t[2],o=t[3];return(a<=23&&s<=59&&o<=59||23==a&&59==s&&60==o)&&(!r||t[5])}(r.exports=m).fast={date:/^\d\d\d\d-[0-1]\d-[0-3]\d$/,time:/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)?$/i,"date-time":/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)$/i,uri:/^(?:[a-z][a-z0-9+-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,"uri-template":u,url:c,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,hostname:s,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:w,uuid:h,"json-pointer":d,"json-pointer-uri-fragment":f,"relative-json-pointer":p},m.full={date:v,time:g,"date-time":function(e){var r=e.split(y);return 2==r.length&&v(r[0])&&g(r[1],!0)},uri:function(e){return P.test(e)&&l.test(e)},"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":u,url:c,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&''*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:function(e){return e.length<=255&&s.test(e)},ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:w,uuid:h,"json-pointer":d,"json-pointer-uri-fragment":f,"relative-json-pointer":p};var y=/t|\s/i;var P=/\/|:/;var E=/[^\\]\\Z/;function w(e){if(E.test(e))return!1;try{return new RegExp(e),!0}catch(e){return!1}}},{"./util":10}],5:[function(e,r,t){"use strict";var $=e("./resolve"),D=e("./util"),j=e("./error_classes"),l=e("fast-json-stable-stringify"),I=e("../dotjs/validate"),O=D.ucs2length,A=e("fast-deep-equal"),C=j.Validation;function k(e,r,t){for(var a=0;a",y=f?">":"<",P=void 0;if(v){var E=e.util.getData(m.$data,i,e.dataPathArr),w="exclusive"+o,S="exclType"+o,b="exclIsNumber"+o,_="' + "+(R="op"+o)+" + '";s+=" var schemaExcl"+o+" = "+E+"; ";var F;P=p;(F=F||[]).push(s+=" var "+w+"; var "+S+" = typeof "+(E="schemaExcl"+o)+"; if ("+S+" != 'boolean' && "+S+" != 'undefined' && "+S+" != 'number') { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(P||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: {} ",!1!==e.opts.messages&&(s+=" , message: '"+p+" should be boolean' "),e.opts.verbose&&(s+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var x=s;s=F.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+x+"]); ":" validate.errors = ["+x+"]; return false; ":" var err = "+x+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+=" } else if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=" "+S+" == 'number' ? ( ("+w+" = "+a+" === undefined || "+E+" "+g+"= "+a+") ? "+h+" "+y+"= "+E+" : "+h+" "+y+" "+a+" ) : ( ("+w+" = "+E+" === true) ? "+h+" "+y+"= "+a+" : "+h+" "+y+" "+a+" ) || "+h+" !== "+h+") { var op"+o+" = "+w+" ? '"+g+"' : '"+g+"='; ",void 0===n&&(u=e.errSchemaPath+"/"+(P=p),a=E,d=v)}else{_=g;if((b="number"==typeof m)&&d){var R="'"+_+"'";s+=" if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=" ( "+a+" === undefined || "+m+" "+g+"= "+a+" ? "+h+" "+y+"= "+m+" : "+h+" "+y+" "+a+" ) || "+h+" !== "+h+") { "}else{b&&void 0===n?(w=!0,u=e.errSchemaPath+"/"+(P=p),a=m,y+="="):(b&&(a=Math[f?"min":"max"](m,n)),m===(!b||a)?(w=!0,u=e.errSchemaPath+"/"+(P=p),y+="="):(w=!1,_+="="));R="'"+_+"'";s+=" if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=" "+h+" "+y+" "+a+" || "+h+" !== "+h+") { "}}P=P||r,(F=F||[]).push(s),s="",!1!==e.createErrors?(s+=" { keyword: '"+(P||"_limit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { comparison: "+R+", limit: "+a+", exclusive: "+w+" } ",!1!==e.opts.messages&&(s+=" , message: 'should be "+_+" ",s+=d?"' + "+a:a+"'"),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";x=s;return s=F.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+x+"]); ":" validate.errors = ["+x+"]; return false; ":" var err = "+x+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+=" } ",c&&(s+=" else { "),s}},{}],13:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || ");var f=r,p=p||[];p.push(s+=" "+h+".length "+("maxItems"==r?">":"<")+" "+a+") { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(f||"_limitItems")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT have ",s+="maxItems"==r?"more":"less",s+=" than ",s+=d?"' + "+a+" + '":""+n,s+=" items' "),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var m=s;return s=p.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],14:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=!1===e.opts.unicode?" "+h+".length ":" ucs2length("+h+") ";var f=r,p=p||[];p.push(s+=" "+("maxLength"==r?">":"<")+" "+a+") { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(f||"_limitLength")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT be ",s+="maxLength"==r?"longer":"shorter",s+=" than ",s+=d?"' + "+a+" + '":""+n,s+=" characters' "),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var m=s;return s=p.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],15:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || ");var f=r,p=p||[];p.push(s+=" Object.keys("+h+").length "+("maxProperties"==r?">":"<")+" "+a+") { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(f||"_limitProperties")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT have ",s+="maxProperties"==r?"more":"less",s+=" than ",s+=d?"' + "+a+" + '":""+n,s+=" properties' "),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var m=s;return s=p.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],16:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a=" ",s=e.schema[r],o=e.schemaPath+e.util.getProperty(r),i=e.errSchemaPath+"/"+r,n=!e.opts.allErrors,l=e.util.copy(e),u="";l.level++;var c="valid"+l.level,h=l.baseId,d=!0,f=s;if(f)for(var p,m=-1,v=f.length-1;m "+x+") { ";var $=c+"["+x+"]";f.schema=F,f.schemaPath=n+"["+x+"]",f.errSchemaPath=l+"/"+x,f.errorPath=e.util.getPathExpr(e.errorPath,x,e.opts.jsonPointers,!0),f.dataPathArr[g]=x;var D=e.validate(f);f.baseId=P,e.util.varOccurences(D,y)<2?a+=" "+e.util.varReplace(D,y,$)+" ":a+=" var "+y+" = "+$+"; "+D+" ",a+=" } ",u&&(a+=" if ("+m+") { ",p+="}")}if("object"==typeof E&&e.util.schemaHasRules(E,e.RULES.all)){f.schema=E,f.schemaPath=e.schemaPath+".additionalItems",f.errSchemaPath=e.errSchemaPath+"/additionalItems",a+=" "+m+" = true; if ("+c+".length > "+i.length+") { for (var "+v+" = "+i.length+"; "+v+" < "+c+".length; "+v+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,!0);$=c+"["+v+"]";f.dataPathArr[g]=v;D=e.validate(f);f.baseId=P,e.util.varOccurences(D,y)<2?a+=" "+e.util.varReplace(D,y,$)+" ":a+=" var "+y+" = "+$+"; "+D+" ",u&&(a+=" if (!"+m+") break; "),a+=" } } ",u&&(a+=" if ("+m+") { ",p+="}")}}else if(e.util.schemaHasRules(i,e.RULES.all)){f.schema=i,f.schemaPath=n,f.errSchemaPath=l,a+=" for (var "+v+" = 0; "+v+" < "+c+".length; "+v+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,!0);$=c+"["+v+"]";f.dataPathArr[g]=v;D=e.validate(f);f.baseId=P,e.util.varOccurences(D,y)<2?a+=" "+e.util.varReplace(D,y,$)+" ":a+=" var "+y+" = "+$+"; "+D+" ",u&&(a+=" if (!"+m+") break; "),a+=" }"}return u&&(a+=" "+p+" if ("+d+" == errors) {"),a=e.util.cleanUpCode(a)}},{}],28:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="var division"+o+";if (",d&&(s+=" "+a+" !== undefined && ( typeof "+a+" != 'number' || "),s+=" (division"+o+" = "+h+" / "+a+", ",s+=e.opts.multipleOfPrecision?" Math.abs(Math.round(division"+o+") - division"+o+") > 1e-"+e.opts.multipleOfPrecision+" ":" division"+o+" !== parseInt(division"+o+") ",s+=" ) ",d&&(s+=" ) ");var f=f||[];f.push(s+=" ) { "),s="",!1!==e.createErrors?(s+=" { keyword: 'multipleOf' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { multipleOf: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should be multiple of ",s+=d?"' + "+a:a+"'"),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var p=s;return s=f.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+p+"]); ":" validate.errors = ["+p+"]; return false; ":" var err = "+p+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],29:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a=" ",s=e.level,o=e.dataLevel,i=e.schema[r],n=e.schemaPath+e.util.getProperty(r),l=e.errSchemaPath+"/"+r,u=!e.opts.allErrors,c="data"+(o||""),h="errs__"+s,d=e.util.copy(e);d.level++;var f="valid"+d.level;if(e.util.schemaHasRules(i,e.RULES.all)){d.schema=i,d.schemaPath=n,d.errSchemaPath=l,a+=" var "+h+" = errors; ";var p,m=e.compositeRule;e.compositeRule=d.compositeRule=!0,d.createErrors=!1,d.opts.allErrors&&(p=d.opts.allErrors,d.opts.allErrors=!1),a+=" "+e.validate(d)+" ",d.createErrors=!0,p&&(d.opts.allErrors=p),e.compositeRule=d.compositeRule=m;var v=v||[];v.push(a+=" if ("+f+") { "),a="",!1!==e.createErrors?(a+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(a+=" , message: 'should NOT be valid' "),e.opts.verbose&&(a+=" , schema: validate.schema"+n+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var g=a;a=v.pop(),a+=!e.compositeRule&&u?e.async?" throw new ValidationError(["+g+"]); ":" validate.errors = ["+g+"]; return false; ":" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else { errors = "+h+"; if (vErrors !== null) { if ("+h+") vErrors.length = "+h+"; else vErrors = null; } ",e.opts.allErrors&&(a+=" } ")}else a+=" var err = ",!1!==e.createErrors?(a+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(a+=" , message: 'should NOT be valid' "),e.opts.verbose&&(a+=" , schema: validate.schema"+n+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",u&&(a+=" if (false) { ");return a}},{}],30:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a=" ",s=e.level,o=e.dataLevel,i=e.schema[r],n=e.schemaPath+e.util.getProperty(r),l=e.errSchemaPath+"/"+r,u=!e.opts.allErrors,c="data"+(o||""),h="valid"+s,d="errs__"+s,f=e.util.copy(e),p="";f.level++;var m="valid"+f.level,v=f.baseId,g="prevValid"+s,y="passingSchemas"+s;a+="var "+d+" = errors , "+g+" = false , "+h+" = false , "+y+" = null; ";var P=e.compositeRule;e.compositeRule=f.compositeRule=!0;var E=i;if(E)for(var w,S=-1,b=E.length-1;S 1) { ";var p=e.schema.items&&e.schema.items.type,m=Array.isArray(p);if(!p||"object"==p||"array"==p||m&&(0<=p.indexOf("object")||0<=p.indexOf("array")))s+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+h+"[i], "+h+"[j])) { "+d+" = false; break outer; } } } ";else s+=" var itemIndices = {}, item; for (;i--;) { var item = "+h+"[i]; ",s+=" if ("+e.util["checkDataType"+(m?"s":"")](p,"item",!0)+") continue; ",m&&(s+=" if (typeof item == 'string') item = '\"' + item; "),s+=" if (typeof itemIndices[item] == 'number') { "+d+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } ";s+=" } ",f&&(s+=" } ");var v=v||[];v.push(s+=" if (!"+d+") { "),s="",!1!==e.createErrors?(s+=" { keyword: 'uniqueItems' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { i: i, j: j } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "),e.opts.verbose&&(s+=" , schema: ",s+=f?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var g=s;s=v.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+g+"]); ":" validate.errors = ["+g+"]; return false; ":" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+=" } ",c&&(s+=" else { ")}else c&&(s+=" if (true) { ");return s}},{}],37:[function(e,r,t){"use strict";r.exports=function(a,e,r){var t="",s=!0===a.schema.$async,o=a.util.schemaHasRulesExcept(a.schema,a.RULES.all,"$ref"),i=a.self._getId(a.schema);if(a.isTop&&(t+=" var validate = ",s&&(a.async=!0,t+="async "),t+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ",i&&(a.opts.sourceCode||a.opts.processCode)&&(t+=" /*# sourceURL="+i+" */ ")),"boolean"==typeof a.schema||!o&&!a.schema.$ref){var n=a.level,l=a.dataLevel,u=a.schema[e="false schema"],c=a.schemaPath+a.util.getProperty(e),h=a.errSchemaPath+"/"+e,d=!a.opts.allErrors,f="data"+(l||""),p="valid"+n;if(!1===a.schema){a.isTop?d=!0:t+=" var "+p+" = false; ",(K=K||[]).push(t),t="",!1!==a.createErrors?(t+=" { keyword: 'false schema' , dataPath: (dataPath || '') + "+a.errorPath+" , schemaPath: "+a.util.toQuotedString(h)+" , params: {} ",!1!==a.opts.messages&&(t+=" , message: 'boolean schema is false' "),a.opts.verbose&&(t+=" , schema: false , parentSchema: validate.schema"+a.schemaPath+" , data: "+f+" "),t+=" } "):t+=" {} ";var m=t;t=K.pop(),t+=!a.compositeRule&&d?a.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else t+=a.isTop?s?" return data; ":" validate.errors = null; return true; ":" var "+p+" = true; ";return a.isTop&&(t+=" }; return validate; "),t}if(a.isTop){var v=a.isTop;n=a.level=0,l=a.dataLevel=0,f="data";a.rootId=a.resolve.fullPath(a.self._getId(a.root.schema)),a.baseId=a.baseId||a.rootId,delete a.isTop,a.dataPathArr=[void 0],t+=" var vErrors = null; ",t+=" var errors = 0; ",t+=" if (rootData === undefined) rootData = data; "}else{n=a.level,f="data"+((l=a.dataLevel)||"");if(i&&(a.baseId=a.resolve.url(a.baseId,i)),s&&!a.async)throw new Error("async schema in sync schema");t+=" var errs_"+n+" = errors;"}p="valid"+n,d=!a.opts.allErrors;var g="",y="",P=a.schema.type,E=Array.isArray(P);if(E&&1==P.length&&(P=P[0],E=!1),a.schema.$ref&&o){if("fail"==a.opts.extendRefs)throw new Error('$ref: validation keywords used in schema at path "'+a.errSchemaPath+'" (see option extendRefs)');!0!==a.opts.extendRefs&&(o=!1,a.logger.warn('$ref: keywords ignored in schema at path "'+a.errSchemaPath+'"'))}if(a.schema.$comment&&a.opts.$comment&&(t+=" "+a.RULES.all.$comment.code(a,"$comment")),P){if(a.opts.coerceTypes)var w=a.util.coerceToTypes(a.opts.coerceTypes,P);var S=a.RULES.types[P];if(w||E||!0===S||S&&!J(S)){c=a.schemaPath+".type",h=a.errSchemaPath+"/type",c=a.schemaPath+".type",h=a.errSchemaPath+"/type";if(t+=" if ("+a.util[E?"checkDataTypes":"checkDataType"](P,f,!0)+") { ",w){var b="dataType"+n,_="coerced"+n;t+=" var "+b+" = typeof "+f+"; ","array"==a.opts.coerceTypes&&(t+=" if ("+b+" == 'object' && Array.isArray("+f+")) "+b+" = 'array'; "),t+=" var "+_+" = undefined; ";var F="",x=w;if(x)for(var R,$=-1,D=x.length-1;$= 0x80 (not a basic code point)","invalid-input":"Invalid input"},L=Math.floor,z=String.fromCharCode;function T(e){throw new RangeError(i[e])}function n(e,r){var t=e.split("@"),a="";return 1>1,e+=L(e/r);455L((A-s)/h))&&T("overflow"),s+=f*h;var p=d<=i?1:i+26<=d?26:d-i;if(fL(A/m)&&T("overflow"),h*=m}var v=t.length+1;i=U(s-c,v,0==c),L(s/v)>A-o&&T("overflow"),o+=L(s/v),s%=v,t.splice(s++,0,o)}return String.fromCodePoint.apply(String,t)},u=function(e){var r=[],t=(e=N(e)).length,a=128,s=0,o=72,i=!0,n=!1,l=void 0;try{for(var u,c=e[Symbol.iterator]();!(i=(u=c.next()).done);i=!0){var h=u.value;h<128&&r.push(z(h))}}catch(e){n=!0,l=e}finally{try{!i&&c.return&&c.return()}finally{if(n)throw l}}var d=r.length,f=d;for(d&&r.push("-");fL((A-s)/w)&&T("overflow"),s+=(p-a)*w,a=p;var S=!0,b=!1,_=void 0;try{for(var F,x=e[Symbol.iterator]();!(S=(F=x.next()).done);S=!0){var R=F.value;if(RA&&T("overflow"),R==a){for(var $=s,D=36;;D+=36){var j=D<=o?1:o+26<=D?26:D-o;if($>6|192).toString(16).toUpperCase()+"%"+(63&r|128).toString(16).toUpperCase():"%"+(r>>12|224).toString(16).toUpperCase()+"%"+(r>>6&63|128).toString(16).toUpperCase()+"%"+(63&r|128).toString(16).toUpperCase()}function f(e){for(var r="",t=0,a=e.length;tA-Z\\x5E-\\x7E]",'[\\"\\\\]'),Z=new RegExp(M,"g"),G=new RegExp(K,"g"),Y=new RegExp(C("[^]","[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]","[\\.]",'[\\"]',J),"g"),W=new RegExp(C("[^]",M,"[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]"),"g"),X=W;function ee(e){var r=f(e);return r.match(Z)?r:e}var re={scheme:"mailto",parse:function(e,r){var t=e,a=t.to=t.path?t.path.split(","):[];if(t.path=void 0,t.query){for(var s=!1,o={},i=t.query.split("&"),n=0,l=i.length;n (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _is_native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../is/native-disabled-supported */ 7381); -/* harmony import */ var _util_toggle_attribute__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute */ 7273); -/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 4656); -/* harmony import */ var _util_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/logger */ 3429); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _is_native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../is/native-disabled-supported */ 67381); +/* harmony import */ var _util_toggle_attribute__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute */ 37273); +/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 94656); +/* harmony import */ var _util_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/logger */ 93429); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 94569); /* Utility to make any element inert (disabled). Inert means the elements cannot be interacted with and they cannot be focused via script, pointer or keyboard - and thus not receive focus. @@ -8838,7 +8836,7 @@ function setElementDisabled(element, disabledState) { /***/ }), -/***/ 59: +/***/ 40059: /*!***************************************************************************!*\ !*** ./node_modules/ally.js/esm/element/focus.svg-foreign-object-hack.js ***! \***************************************************************************/ @@ -8882,7 +8880,7 @@ function makeFocusableForeignObject() { /***/ }), -/***/ 1514: +/***/ 11514: /*!****************************************************************!*\ !*** ./node_modules/ally.js/esm/get/insignificant-branches.js ***! \****************************************************************/ @@ -8893,10 +8891,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 1695); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 21695); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-document */ 34426); // find all highest elements within context that do not contain any of the filter elements. // (basically the tree minus the parent paths of each filtered element reduced to the top most nodes) // originally inspired by Marcy Sutton's Material Dialog Component: @@ -8988,7 +8986,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); // [elem, elem.parent, elem.parent.parent, …, html] @@ -9014,7 +9012,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 820: +/***/ 20820: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/get/shadow-host.js ***! \*****************************************************/ @@ -9025,7 +9023,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__() { var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, @@ -9053,7 +9051,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2327: +/***/ 12327: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/is/active-element.js ***! \*******************************************************/ @@ -9064,9 +9062,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/shadow-host */ 820); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/shadow-host */ 20820); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 34426); // Determines if an element is the activeElement within its context, i.e. its document iFrame or ShadowHost @@ -9093,7 +9091,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1471: +/***/ 21471: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/is/disabled.js ***! \*************************************************/ @@ -9104,10 +9102,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./native-disabled-supported */ 7381); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./native-disabled-supported */ 67381); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../supports/supports */ 94569); // Determine if an element is disabled (i.e. not editable) @@ -9159,7 +9157,7 @@ function isDisabledForm(element) { /***/ }), -/***/ 7347: +/***/ 97347: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/is/focus-relevant.js ***! \*******************************************************/ @@ -9171,12 +9169,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 1404); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _valid_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./valid-tabindex */ 2429); -/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./is.util */ 317); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 21404); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _valid_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./valid-tabindex */ 82429); +/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./is.util */ 60317); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element supports.can be focused by script regardless // of the element actually being focusable at the time of execution // i.e. is conisdered focus-relevant, but not focusable @@ -9403,7 +9401,7 @@ var isFocusRelevant = isFocusRelevantRules.except({}); /***/ }), -/***/ 490: +/***/ 40490: /*!**************************************************!*\ !*** ./node_modules/ally.js/esm/is/focusable.js ***! \**************************************************/ @@ -9414,15 +9412,15 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focus-relevant */ 7347); -/* harmony import */ var _valid_area__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./valid-area */ 1094); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./visible */ 8078); -/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./disabled */ 1471); -/* harmony import */ var _only_tabbable__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./only-tabbable */ 2003); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focus-relevant */ 97347); +/* harmony import */ var _valid_area__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./valid-area */ 31094); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./visible */ 38078); +/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./disabled */ 21471); +/* harmony import */ var _only_tabbable__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./only-tabbable */ 52003); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element can be focused // https://www.w3.org/TR/html5/editing.html#focus-management @@ -9575,7 +9573,7 @@ var isFocusable = isFocusableRules.except({}); /***/ }), -/***/ 317: +/***/ 60317: /*!************************************************!*\ !*** ./node_modules/ally.js/esm/is/is.util.js ***! \************************************************/ @@ -9622,7 +9620,7 @@ function isScrollableContainer(element, nodeName, parentNodeName, parentStyle) { /***/ }), -/***/ 7381: +/***/ 67381: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/is/native-disabled-supported.js ***! \******************************************************************/ @@ -9633,8 +9631,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 94569); // Determine if an element supports the disabled attribute @@ -9672,7 +9670,7 @@ var disabledElements = { /***/ }), -/***/ 2003: +/***/ 52003: /*!******************************************************!*\ !*** ./node_modules/ally.js/esm/is/only-tabbable.js ***! \******************************************************/ @@ -9683,11 +9681,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 8078); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 38078); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -9759,7 +9757,7 @@ var isOnlyTabbable = isOnlyTabbableRules.except({}); /***/ }), -/***/ 9130: +/***/ 39130: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/is/tabbable.js ***! \*************************************************/ @@ -9770,16 +9768,16 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 8078); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 1404); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-relevant */ 7347); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/platform */ 612); -/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/image-map */ 9250); -/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./is.util */ 317); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 38078); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 21404); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-relevant */ 97347); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/platform */ 20612); +/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/image-map */ 79250); +/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./is.util */ 60317); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element can be focused by keyboard (i.e. is part of the document's sequential focus navigation order) @@ -10040,7 +10038,7 @@ var isTabbable = isTabbableRules.except({}); /***/ }), -/***/ 1094: +/***/ 31094: /*!***************************************************!*\ !*** ./node_modules/ally.js/esm/is/valid-area.js ***! \***************************************************/ @@ -10051,11 +10049,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./visible */ 8078); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./visible */ 38078); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 9250); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 79250); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element is being properly used by and via a @@ -10118,7 +10116,7 @@ var supports = void 0; /***/ }), -/***/ 2429: +/***/ 82429: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/is/valid-tabindex.js ***! \*******************************************************/ @@ -10129,8 +10127,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element's tabindex attribute has a valid value @@ -10183,7 +10181,7 @@ var validIntegerPatternWithTrailing = /^\s*(-|\+)?[0-9]+.*$/; /***/ }), -/***/ 8078: +/***/ 38078: /*!************************************************!*\ !*** ./node_modules/ally.js/esm/is/visible.js ***! \************************************************/ @@ -10194,10 +10192,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 1760); +/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 71760); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); // determine if an element is rendered // NOTE: that does not mean an element is visible in the viewport, see util/visible-area @@ -10323,7 +10321,7 @@ var isVisible = isVisibleRules.except({}); /***/ }), -/***/ 2525: +/***/ 32525: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/_maintain.js ***! \********************************************************/ @@ -10334,9 +10332,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./disabled */ 5066); -/* harmony import */ var _hidden__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./hidden */ 842); -/* harmony import */ var _tab_focus__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./tab-focus */ 2772); +/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./disabled */ 35066); +/* harmony import */ var _hidden__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./hidden */ 20842); +/* harmony import */ var _tab_focus__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./tab-focus */ 22772); // exporting modules to be included the UMD bundle @@ -10350,7 +10348,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 5066: +/***/ 35066: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/disabled.js ***! \*******************************************************/ @@ -10361,11 +10359,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _query_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/focusable */ 7327); -/* harmony import */ var _element_disabled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element/disabled */ 7348); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _query_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/focusable */ 27327); +/* harmony import */ var _element_disabled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element/disabled */ 97348); /* harmony import */ var _observe_shadow_mutations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../observe/shadow-mutations */ 8539); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 1695); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 21695); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -10551,7 +10549,7 @@ var InertSubtree = function () { /***/ }), -/***/ 842: +/***/ 20842: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/hidden.js ***! \*****************************************************/ @@ -10562,11 +10560,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _get_insignificant_branches__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/insignificant-branches */ 1514); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _get_insignificant_branches__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/insignificant-branches */ 11514); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 4656); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 1695); +/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 94656); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 21695); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -10713,7 +10711,7 @@ var HiddenSubtree = function () { /***/ }), -/***/ 2772: +/***/ 22772: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/tab-focus.js ***! \********************************************************/ @@ -10724,9 +10722,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _is_active_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/active-element */ 2327); -/* harmony import */ var _query_tabsequence__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/tabsequence */ 8397); -/* harmony import */ var _when_key__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../when/key */ 825); +/* harmony import */ var _is_active_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/active-element */ 12327); +/* harmony import */ var _query_tabsequence__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/tabsequence */ 68397); +/* harmony import */ var _when_key__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../when/key */ 70825); @@ -10786,7 +10784,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2867: +/***/ 92867: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/map/keycode.js ***! \*************************************************/ @@ -10879,9 +10877,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _query_shadow_hosts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/shadow-hosts */ 8610); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _query_shadow_hosts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/shadow-hosts */ 38610); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 15547); var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { @@ -11007,7 +11005,7 @@ var ShadowMutationObserver = function () { /***/ }), -/***/ 7327: +/***/ 27327: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/query/focusable.js ***! \*****************************************************/ @@ -11018,9 +11016,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _focusable_strict__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./focusable.strict */ 8569); -/* harmony import */ var _focusable_quick__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./focusable.quick */ 9113); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _focusable_strict__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./focusable.strict */ 88569); +/* harmony import */ var _focusable_quick__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./focusable.quick */ 49113); // https://www.w3.org/TR/html5/editing.html#focusable // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11056,7 +11054,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9113: +/***/ 49113: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/query/focusable.quick.js ***! \***********************************************************/ @@ -11068,7 +11066,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (/* binding */ queryFocusableQuick) /* harmony export */ }); /* harmony import */ var _selector_focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../selector/focusable */ 3525); -/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focusable */ 490); +/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focusable */ 40490); // https://www.w3.org/TR/html5/editing.html#focusable // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11097,7 +11095,7 @@ function queryFocusableQuick() { /***/ }), -/***/ 8569: +/***/ 88569: /*!************************************************************!*\ !*** ./node_modules/ally.js/esm/query/focusable.strict.js ***! \************************************************************/ @@ -11108,9 +11106,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ queryFocusableStrict) /* harmony export */ }); -/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/focusable */ 490); -/* harmony import */ var _is_focus_relevant__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focus-relevant */ 7347); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/focusable */ 40490); +/* harmony import */ var _is_focus_relevant__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focus-relevant */ 97347); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 34426); // https://www.w3.org/TR/html5/editing.html#focusable // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11191,7 +11189,7 @@ function queryFocusableStrict() { /***/ }), -/***/ 8610: +/***/ 38610: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/query/shadow-hosts.js ***! \********************************************************/ @@ -11202,8 +11200,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ queryShadowHosts) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 34426); @@ -11256,7 +11254,7 @@ function queryShadowHosts() { /***/ }), -/***/ 6694: +/***/ 5019: /*!****************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabbable.js ***! \****************************************************/ @@ -11267,8 +11265,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focusable */ 7327); -/* harmony import */ var _is_tabbable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/tabbable */ 9130); +/* harmony import */ var _focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focusable */ 27327); +/* harmony import */ var _is_tabbable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/tabbable */ 39130); // https://www.w3.org/TR/html5/editing.html#sequential-focus-navigation-and-the-tabindex-attribute // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11293,7 +11291,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8397: +/***/ 68397: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.js ***! \*******************************************************/ @@ -11304,13 +11302,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 6694); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/platform */ 612); -/* harmony import */ var _tabsequence_sort_area__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./tabsequence.sort-area */ 7049); -/* harmony import */ var _tabsequence_sort_shadowed__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./tabsequence.sort-shadowed */ 3311); -/* harmony import */ var _tabsequence_sort_tabindex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./tabsequence.sort-tabindex */ 9662); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 5019); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/platform */ 20612); +/* harmony import */ var _tabsequence_sort_area__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./tabsequence.sort-area */ 30880); +/* harmony import */ var _tabsequence_sort_shadowed__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./tabsequence.sort-shadowed */ 73311); +/* harmony import */ var _tabsequence_sort_tabindex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./tabsequence.sort-tabindex */ 89662); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 94569); // https://www.w3.org/TR/html5/editing.html#sequential-focus-navigation-and-the-tabindex-attribute // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11373,7 +11371,7 @@ function sortElements(elements, _context) { /***/ }), -/***/ 7049: +/***/ 30880: /*!*****************************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.sort-area.js ***! \*****************************************************************/ @@ -11384,10 +11382,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 6694); +/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 5019); /* harmony import */ var _util_merge_dom_order__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/merge-dom-order */ 6273); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 4426); -/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 9250); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 34426); +/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 79250); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -11492,7 +11490,7 @@ var Maps = function () { /***/ }), -/***/ 3311: +/***/ 73311: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.sort-shadowed.js ***! \*********************************************************************/ @@ -11503,9 +11501,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../get/shadow-host */ 820); +/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../get/shadow-host */ 20820); /* harmony import */ var _util_merge_dom_order__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/merge-dom-order */ 6273); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -11693,7 +11691,7 @@ var Shadows = function () { /***/ }), -/***/ 9662: +/***/ 89662: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.sort-tabindex.js ***! \*********************************************************************/ @@ -11704,7 +11702,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(elements) { // https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.tabIndex @@ -11773,8 +11771,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_select_in_shadows__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/select-in-shadows */ 6910); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_select_in_shadows__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/select-in-shadows */ 36910); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 94569); // NOTE: this selector MUST *never* be used directly, // always go through query/focusable or is/focusable.js // there are too many edge cases that they could be covered in @@ -11825,7 +11823,7 @@ var selector = void 0; /***/ }), -/***/ 2676: +/***/ 42676: /*!**********************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/css-shadow-piercing-deep-combinator.js ***! \**********************************************************************************/ @@ -11871,7 +11869,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); function before() { var data = { @@ -11962,7 +11960,7 @@ function after(data) { /***/ }), -/***/ 5887: +/***/ 55887: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-area-img-tabindex.js ***! \**********************************************************************/ @@ -11973,7 +11971,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-usemap @@ -11987,7 +11985,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2291: +/***/ 92291: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-area-tabindex.js ***! \******************************************************************/ @@ -11998,8 +11996,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -12024,7 +12022,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 805: +/***/ 70805: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-area-without-href.js ***! \**********************************************************************/ @@ -12035,8 +12033,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -12070,7 +12068,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_mp3__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp3 */ 8863); +/* harmony import */ var _media_mp3__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp3 */ 15299); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'can-focus-audio-without-controls', @@ -12087,7 +12085,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2562: +/***/ 12562: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-broken-image-map.js ***! \*********************************************************************/ @@ -12098,7 +12096,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif_invalid__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif.invalid */ 4957); +/* harmony import */ var _media_gif_invalid__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif.invalid */ 44957); // NOTE: https://github.com/medialize/ally.js/issues/35 @@ -12113,7 +12111,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6680: +/***/ 96680: /*!**********************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-children-of-focusable-flexbox.js ***! \**********************************************************************************/ @@ -12137,7 +12135,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6186: +/***/ 16186: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-fieldset-disabled.js ***! \**********************************************************************/ @@ -12162,7 +12160,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 7563: +/***/ 27563: /*!*************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-fieldset.js ***! \*************************************************************/ @@ -12182,7 +12180,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 332: +/***/ 30332: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-flexbox-container.js ***! \**********************************************************************/ @@ -12204,7 +12202,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6469: +/***/ 35746: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-form-disabled.js ***! \******************************************************************/ @@ -12228,7 +12226,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2129: +/***/ 42129: /*!**************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-img-ismap.js ***! \**************************************************************/ @@ -12239,7 +12237,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); // NOTE: https://github.com/medialize/ally.js/issues/35 @@ -12256,7 +12254,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4712: +/***/ 64712: /*!************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-img-usemap-tabindex.js ***! \************************************************************************/ @@ -12267,7 +12265,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); // NOTE: https://github.com/medialize/ally.js/issues/35 @@ -12282,7 +12280,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2084: +/***/ 82084: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-in-hidden-iframe.js ***! \*********************************************************************/ @@ -12322,7 +12320,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4560: +/***/ 24560: /*!*****************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-in-zero-dimension-object.js ***! \*****************************************************************************/ @@ -12333,7 +12331,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); var result = !_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.WEBKIT; /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__() { @@ -12342,7 +12340,7 @@ var result = !_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.WEBKIT; /***/ }), -/***/ 2054: +/***/ 52054: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-invalid-tabindex.js ***! \*********************************************************************/ @@ -12364,7 +12362,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 927: +/***/ 60927: /*!*******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-label-tabindex.js ***! \*******************************************************************/ @@ -12392,7 +12390,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9225: +/***/ 79225: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-object-svg-hidden.js ***! \**********************************************************************/ @@ -12403,7 +12401,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 2436); +/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 22436); // Note: IE10 on BrowserStack does not like this test @@ -12421,7 +12419,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 5973: +/***/ 95973: /*!***************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-object-svg.js ***! \***************************************************************/ @@ -12432,8 +12430,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 2436); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 22436); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -12460,7 +12458,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3644: +/***/ 13644: /*!***************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-object-swf.js ***! \***************************************************************/ @@ -12471,7 +12469,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); // Every Environment except IE9 considers SWF objects focusable @@ -12482,7 +12480,7 @@ var result = !_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.IE9; /***/ }), -/***/ 4511: +/***/ 74511: /*!************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-redirect-img-usemap.js ***! \************************************************************************/ @@ -12493,7 +12491,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12511,7 +12509,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3977: +/***/ 93977: /*!********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-redirect-legend.js ***! \********************************************************************/ @@ -12545,7 +12543,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2036: +/***/ 12036: /*!****************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-scroll-body.js ***! \****************************************************************/ @@ -12568,7 +12566,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1103: +/***/ 11103: /*!**************************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-scroll-container-without-overflow.js ***! \**************************************************************************************/ @@ -12590,7 +12588,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1478: +/***/ 51478: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-scroll-container.js ***! \*********************************************************************/ @@ -12644,7 +12642,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12668,7 +12666,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12682,7 +12680,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8032: +/***/ 88032: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg-in-iframe.js ***! \******************************************************************/ @@ -12693,7 +12691,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); // Firefox seems to be handling the SVG-document-in-iframe creation asynchronously @@ -12708,7 +12706,7 @@ var result = Boolean(_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.G /***/ }), -/***/ 2691: +/***/ 72691: /*!************************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg-negative-tabindex-attribute.js ***! \************************************************************************************/ @@ -12719,7 +12717,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12743,7 +12741,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12756,7 +12754,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 7757: +/***/ 47757: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg-use-tabindex.js ***! \*********************************************************************/ @@ -12767,7 +12765,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12780,7 +12778,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1689: +/***/ 81689: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg.js ***! \********************************************************/ @@ -12791,7 +12789,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12804,7 +12802,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2880: +/***/ 32880: /*!*********************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-tabindex-trailing-characters.js ***! \*********************************************************************************/ @@ -12826,7 +12824,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3459: +/***/ 63459: /*!**********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-table.js ***! \**********************************************************/ @@ -12851,7 +12849,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9987: +/***/ 71969: /*!***************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-video-without-controls.js ***! \***************************************************************************/ @@ -12862,7 +12860,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_mp4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp4 */ 5477); +/* harmony import */ var _media_mp4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp4 */ 15477); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'video', @@ -12878,7 +12876,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3139: +/***/ 43139: /*!*********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/helper/svg.js ***! \*********************************************************/ @@ -12891,7 +12889,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ generate: () => (/* binding */ generate), /* harmony export */ validate: () => (/* binding */ validate) /* harmony export */ }); -/* harmony import */ var _element_focus_svg_foreign_object_hack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../element/focus.svg-foreign-object-hack */ 59); +/* harmony import */ var _element_focus_svg_foreign_object_hack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../element/focus.svg-foreign-object-hack */ 40059); function generate(element) { return '' + element + ''; @@ -12913,7 +12911,7 @@ function validate(element, focusTarget, _document) { /***/ }), -/***/ 4957: +/***/ 44957: /*!****************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/gif.invalid.js ***! \****************************************************************/ @@ -12928,7 +12926,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9709: +/***/ 19709: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/gif.js ***! \********************************************************/ @@ -12943,7 +12941,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8863: +/***/ 15299: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/mp3.js ***! \********************************************************/ @@ -12954,14 +12952,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 9709); +/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 19709); // export default 'data:audio/mp3;base64,audio-focus-test'; /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_gif__WEBPACK_IMPORTED_MODULE_0__["default"]); /***/ }), -/***/ 5477: +/***/ 15477: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/mp4.js ***! \********************************************************/ @@ -12972,14 +12970,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 9709); +/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 19709); // export default 'data:video/mp4;base64,video-focus-test'; /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_gif__WEBPACK_IMPORTED_MODULE_0__["default"]); /***/ }), -/***/ 2436: +/***/ 22436: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/svg.js ***! \********************************************************/ @@ -12994,7 +12992,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9759: +/***/ 99759: /*!*************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/supports-cache.js ***! \*************************************************************/ @@ -13005,7 +13003,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../version */ 9291); +/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../version */ 29291); /* Facility to cache test results in localStorage. @@ -13070,7 +13068,7 @@ cache.version = _version__WEBPACK_IMPORTED_MODULE_0__["default"]; /***/ }), -/***/ 4569: +/***/ 94569: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/supports/supports.js ***! \*******************************************************/ @@ -13082,44 +13080,44 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _detect_focus__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./detect-focus */ 5536); -/* harmony import */ var _supports_cache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./supports-cache */ 9759); -/* harmony import */ var _css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./css-shadow-piercing-deep-combinator */ 2676); -/* harmony import */ var _focus_area_img_tabindex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./focus-area-img-tabindex */ 5887); -/* harmony import */ var _focus_area_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-area-tabindex */ 2291); -/* harmony import */ var _focus_area_without_href__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./focus-area-without-href */ 805); +/* harmony import */ var _supports_cache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./supports-cache */ 99759); +/* harmony import */ var _css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./css-shadow-piercing-deep-combinator */ 42676); +/* harmony import */ var _focus_area_img_tabindex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./focus-area-img-tabindex */ 55887); +/* harmony import */ var _focus_area_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-area-tabindex */ 92291); +/* harmony import */ var _focus_area_without_href__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./focus-area-without-href */ 70805); /* harmony import */ var _focus_audio_without_controls__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./focus-audio-without-controls */ 314); -/* harmony import */ var _focus_broken_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./focus-broken-image-map */ 2562); -/* harmony import */ var _focus_children_of_focusable_flexbox__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./focus-children-of-focusable-flexbox */ 6680); -/* harmony import */ var _focus_fieldset_disabled__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./focus-fieldset-disabled */ 6186); -/* harmony import */ var _focus_fieldset__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./focus-fieldset */ 7563); -/* harmony import */ var _focus_flexbox_container__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./focus-flexbox-container */ 332); -/* harmony import */ var _focus_form_disabled__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./focus-form-disabled */ 6469); -/* harmony import */ var _focus_img_ismap__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./focus-img-ismap */ 2129); -/* harmony import */ var _focus_img_usemap_tabindex__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./focus-img-usemap-tabindex */ 4712); -/* harmony import */ var _focus_in_hidden_iframe__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./focus-in-hidden-iframe */ 2084); -/* harmony import */ var _focus_in_zero_dimension_object__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./focus-in-zero-dimension-object */ 4560); -/* harmony import */ var _focus_invalid_tabindex__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./focus-invalid-tabindex */ 2054); -/* harmony import */ var _focus_label_tabindex__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./focus-label-tabindex */ 927); -/* harmony import */ var _focus_object_svg_hidden__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./focus-object-svg-hidden */ 9225); -/* harmony import */ var _focus_object_svg__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./focus-object-svg */ 5973); -/* harmony import */ var _focus_object_swf__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./focus-object-swf */ 3644); -/* harmony import */ var _focus_redirect_img_usemap__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./focus-redirect-img-usemap */ 4511); -/* harmony import */ var _focus_redirect_legend__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./focus-redirect-legend */ 3977); -/* harmony import */ var _focus_scroll_body__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./focus-scroll-body */ 2036); -/* harmony import */ var _focus_scroll_container_without_overflow__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./focus-scroll-container-without-overflow */ 1103); -/* harmony import */ var _focus_scroll_container__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./focus-scroll-container */ 1478); +/* harmony import */ var _focus_broken_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./focus-broken-image-map */ 12562); +/* harmony import */ var _focus_children_of_focusable_flexbox__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./focus-children-of-focusable-flexbox */ 96680); +/* harmony import */ var _focus_fieldset_disabled__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./focus-fieldset-disabled */ 16186); +/* harmony import */ var _focus_fieldset__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./focus-fieldset */ 27563); +/* harmony import */ var _focus_flexbox_container__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./focus-flexbox-container */ 30332); +/* harmony import */ var _focus_form_disabled__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./focus-form-disabled */ 35746); +/* harmony import */ var _focus_img_ismap__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./focus-img-ismap */ 42129); +/* harmony import */ var _focus_img_usemap_tabindex__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./focus-img-usemap-tabindex */ 64712); +/* harmony import */ var _focus_in_hidden_iframe__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./focus-in-hidden-iframe */ 82084); +/* harmony import */ var _focus_in_zero_dimension_object__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./focus-in-zero-dimension-object */ 24560); +/* harmony import */ var _focus_invalid_tabindex__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./focus-invalid-tabindex */ 52054); +/* harmony import */ var _focus_label_tabindex__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./focus-label-tabindex */ 60927); +/* harmony import */ var _focus_object_svg_hidden__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./focus-object-svg-hidden */ 79225); +/* harmony import */ var _focus_object_svg__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./focus-object-svg */ 95973); +/* harmony import */ var _focus_object_swf__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./focus-object-swf */ 13644); +/* harmony import */ var _focus_redirect_img_usemap__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./focus-redirect-img-usemap */ 74511); +/* harmony import */ var _focus_redirect_legend__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./focus-redirect-legend */ 93977); +/* harmony import */ var _focus_scroll_body__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./focus-scroll-body */ 12036); +/* harmony import */ var _focus_scroll_container_without_overflow__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./focus-scroll-container-without-overflow */ 11103); +/* harmony import */ var _focus_scroll_container__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./focus-scroll-container */ 51478); /* harmony import */ var _focus_summary__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./focus-summary */ 3993); /* harmony import */ var _focus_svg_focusable_attribute__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./focus-svg-focusable-attribute */ 1058); /* harmony import */ var _focus_svg_tabindex_attribute__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./focus-svg-tabindex-attribute */ 7503); -/* harmony import */ var _focus_svg_negative_tabindex_attribute__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./focus-svg-negative-tabindex-attribute */ 2691); -/* harmony import */ var _focus_svg_use_tabindex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./focus-svg-use-tabindex */ 7757); +/* harmony import */ var _focus_svg_negative_tabindex_attribute__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./focus-svg-negative-tabindex-attribute */ 72691); +/* harmony import */ var _focus_svg_use_tabindex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./focus-svg-use-tabindex */ 47757); /* harmony import */ var _focus_svg_foreignobject_tabindex__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./focus-svg-foreignobject-tabindex */ 6284); -/* harmony import */ var _focus_svg_in_iframe__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./focus-svg-in-iframe */ 8032); -/* harmony import */ var _focus_svg__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./focus-svg */ 1689); -/* harmony import */ var _focus_tabindex_trailing_characters__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./focus-tabindex-trailing-characters */ 2880); -/* harmony import */ var _focus_table__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./focus-table */ 3459); -/* harmony import */ var _focus_video_without_controls__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./focus-video-without-controls */ 9987); -/* harmony import */ var _tabsequence_area_at_img_position__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./tabsequence-area-at-img-position */ 7841); +/* harmony import */ var _focus_svg_in_iframe__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./focus-svg-in-iframe */ 88032); +/* harmony import */ var _focus_svg__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./focus-svg */ 81689); +/* harmony import */ var _focus_tabindex_trailing_characters__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./focus-tabindex-trailing-characters */ 32880); +/* harmony import */ var _focus_table__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./focus-table */ 63459); +/* harmony import */ var _focus_video_without_controls__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./focus-video-without-controls */ 71969); +/* harmony import */ var _tabsequence_area_at_img_position__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./tabsequence-area-at-img-position */ 57841); @@ -13222,7 +13220,7 @@ var supportsCache = null; /***/ }), -/***/ 7841: +/***/ 57841: /*!*******************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/tabsequence-area-at-img-position.js ***! \*******************************************************************************/ @@ -13233,7 +13231,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); // https://jsbin.com/vafaba/3/edit?html,js,console,output @@ -13244,7 +13242,7 @@ var result = _util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.GECKO || /***/ }), -/***/ 1760: +/***/ 71760: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/util/array-find-index.js ***! \***********************************************************/ @@ -13278,7 +13276,7 @@ function findIndex(array, callback) { /***/ }), -/***/ 1695: +/***/ 21695: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/util/compare-position.js ***! \***********************************************************/ @@ -13318,7 +13316,7 @@ function getParentComparator() { /***/ }), -/***/ 5547: +/***/ 15547: /*!*************************************************************!*\ !*** ./node_modules/ally.js/esm/util/context-to-element.js ***! \*************************************************************/ @@ -13329,7 +13327,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(_ref) { var context = _ref.context, @@ -13355,7 +13353,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1404: +/***/ 21404: /*!**********************************************************!*\ !*** ./node_modules/ally.js/esm/util/element-matches.js ***! \**********************************************************/ @@ -13417,7 +13415,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4426: +/***/ 34426: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/util/get-document.js ***! \*******************************************************/ @@ -13440,7 +13438,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3041: +/***/ 73041: /*!************************************************************!*\ !*** ./node_modules/ally.js/esm/util/get-frame-element.js ***! \************************************************************/ @@ -13452,8 +13450,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (/* binding */ getFrameElement) /* harmony export */ }); /* harmony import */ var _get_content_document__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./get-content-document */ 7099); -/* harmony import */ var _get_window__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./get-window */ 1190); -/* harmony import */ var _select_in_shadows__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./select-in-shadows */ 6910); +/* harmony import */ var _get_window__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./get-window */ 81190); +/* harmony import */ var _select_in_shadows__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./select-in-shadows */ 36910); @@ -13495,7 +13493,7 @@ function getFrameElement(element) { /***/ }), -/***/ 1190: +/***/ 81190: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/util/get-window.js ***! \*****************************************************/ @@ -13506,7 +13504,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _get_document__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./get-document */ 4426); +/* harmony import */ var _get_document__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./get-document */ 34426); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(node) { var _document = (0,_get_document__WEBPACK_IMPORTED_MODULE_0__["default"])(node); @@ -13515,7 +13513,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9250: +/***/ 79250: /*!****************************************************!*\ !*** ./node_modules/ally.js/esm/util/image-map.js ***! \****************************************************/ @@ -13528,9 +13526,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ getMapByName: () => (/* binding */ getMapByName), /* harmony export */ getMapOfImage: () => (/* binding */ getMapOfImage) /* harmony export */ }); -/* harmony import */ var css_escape__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! css.escape */ 9403); +/* harmony import */ var css_escape__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! css.escape */ 99403); /* harmony import */ var css_escape__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(css_escape__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 34426); function getMapByName(name, _document) { @@ -13567,7 +13565,7 @@ function getImageOfArea(element) { /***/ }), -/***/ 3429: +/***/ 93429: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/util/logger.js ***! \*************************************************/ @@ -13601,9 +13599,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 1760); -/* harmony import */ var _node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node-array */ 6072); -/* harmony import */ var _sort_dom_order__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./sort-dom-order */ 779); +/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 71760); +/* harmony import */ var _node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node-array */ 66072); +/* harmony import */ var _sort_dom_order__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./sort-dom-order */ 20779); // sort a list of elements into another list of elements in DOM order /* @@ -13702,7 +13700,7 @@ function insertElementsAtOffsets(list, insertions) { /***/ }), -/***/ 6072: +/***/ 66072: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/util/node-array.js ***! \*****************************************************/ @@ -13738,7 +13736,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 612: +/***/ 20612: /*!***************************************************!*\ !*** ./node_modules/ally.js/esm/util/platform.js ***! \***************************************************/ @@ -13749,7 +13747,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! platform */ 8861); +/* harmony import */ var platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! platform */ 78861); /* harmony import */ var platform__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(platform__WEBPACK_IMPORTED_MODULE_0__); // sugar for https://github.com/bestiejs/platform.js // make sure to ALWAYS reference the layout engine, @@ -13805,7 +13803,7 @@ platform.is = { /***/ }), -/***/ 6910: +/***/ 36910: /*!************************************************************!*\ !*** ./node_modules/ally.js/esm/util/select-in-shadows.js ***! \************************************************************/ @@ -13816,7 +13814,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _supports_css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../supports/css-shadow-piercing-deep-combinator */ 2676); +/* harmony import */ var _supports_css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../supports/css-shadow-piercing-deep-combinator */ 42676); // convert a CSS selector so that it also pierces ShadowDOM // takes ".a, #b" and turns it into ".a, #b, html >>> .a, html >>> #b" @@ -13837,7 +13835,7 @@ var shadowPrefix = void 0; /***/ }), -/***/ 779: +/***/ 20779: /*!*********************************************************!*\ !*** ./node_modules/ally.js/esm/util/sort-dom-order.js ***! \*********************************************************/ @@ -13859,7 +13857,7 @@ function compareDomPosition(a, b) { /***/ }), -/***/ 1149: +/***/ 91149: /*!*********************************************************!*\ !*** ./node_modules/ally.js/esm/util/tabindex-value.js ***! \*********************************************************/ @@ -13870,7 +13868,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _is_valid_tabindex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/valid-tabindex */ 2429); +/* harmony import */ var _is_valid_tabindex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/valid-tabindex */ 82429); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(element) { if (!(0,_is_valid_tabindex__WEBPACK_IMPORTED_MODULE_0__["default"])(element)) { @@ -13889,7 +13887,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4656: +/***/ 94656: /*!*****************************************************************!*\ !*** ./node_modules/ally.js/esm/util/toggle-attribute-value.js ***! \*****************************************************************/ @@ -13929,7 +13927,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 7273: +/***/ 37273: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/util/toggle-attribute.js ***! \***********************************************************/ @@ -13968,7 +13966,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9291: +/***/ 29291: /*!*********************************************!*\ !*** ./node_modules/ally.js/esm/version.js ***! \*********************************************/ @@ -13985,7 +13983,7 @@ var version = '1.4.1'; /***/ }), -/***/ 5853: +/***/ 95853: /*!******************************************************!*\ !*** ./node_modules/ally.js/esm/when/key.binding.js ***! \******************************************************/ @@ -13996,7 +13994,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _map_keycode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../map/keycode */ 2867); +/* harmony import */ var _map_keycode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../map/keycode */ 92867); /* decodes a key binding token to a JavaScript structure @@ -14096,7 +14094,7 @@ function matchModifiers(expected, event) { /***/ }), -/***/ 825: +/***/ 70825: /*!**********************************************!*\ !*** ./node_modules/ally.js/esm/when/key.js ***! \**********************************************/ @@ -14107,9 +14105,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _key_binding__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./key.binding */ 5853); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 1695); +/* harmony import */ var _key_binding__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./key.binding */ 95853); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 21695); @@ -14182,7 +14180,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9403: +/***/ 99403: /*!***********************************************!*\ !*** ./node_modules/css.escape/css.escape.js ***! \***********************************************/ @@ -14271,7 +14269,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8861: +/***/ 78861: /*!*******************************************!*\ !*** ./node_modules/platform/platform.js ***! \*******************************************/ @@ -15315,7 +15313,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/*! /***/ }), -/***/ 7550: +/***/ 87550: /*!**************************************************!*\ !*** ./node_modules/reflect-metadata/Reflect.js ***! \**************************************************/ @@ -15395,7 +15393,7 @@ var Reflect; }; // Load global or shim versions of Map, Set, and WeakMap var functionPrototype = Object.getPrototypeOf(Function); - var usePolyfill = typeof process === "object" && process["env" + ""] && process["env" + ""]["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true"; + var usePolyfill = typeof process === "object" && process.env && process.env["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true"; var _Map = !usePolyfill && typeof Map === "function" && typeof Map.prototype.entries === "function" ? Map : CreateMapPolyfill(); var _Set = !usePolyfill && typeof Set === "function" && typeof Set.prototype.entries === "function" ? Set : CreateSetPolyfill(); var _WeakMap = !usePolyfill && typeof WeakMap === "function" ? WeakMap : CreateWeakMapPolyfill(); @@ -16237,85 +16235,84 @@ var Reflect; }; return MapIterator; }(); - return (/** @class */function () { - function Map() { - this._keys = []; - this._values = []; - this._cacheKey = cacheSentinel; - this._cacheIndex = -2; - } - Object.defineProperty(Map.prototype, "size", { - get: function () { - return this._keys.length; - }, - enumerable: true, - configurable: true - }); - Map.prototype.has = function (key) { - return this._find(key, /*insert*/false) >= 0; - }; - Map.prototype.get = function (key) { - var index = this._find(key, /*insert*/false); - return index >= 0 ? this._values[index] : undefined; - }; - Map.prototype.set = function (key, value) { - var index = this._find(key, /*insert*/true); - this._values[index] = value; - return this; - }; - Map.prototype.delete = function (key) { - var index = this._find(key, /*insert*/false); - if (index >= 0) { - var size = this._keys.length; - for (var i = index + 1; i < size; i++) { - this._keys[i - 1] = this._keys[i]; - this._values[i - 1] = this._values[i]; - } - this._keys.length--; - this._values.length--; - if (key === this._cacheKey) { - this._cacheKey = cacheSentinel; - this._cacheIndex = -2; - } - return true; - } - return false; - }; - Map.prototype.clear = function () { - this._keys.length = 0; - this._values.length = 0; - this._cacheKey = cacheSentinel; - this._cacheIndex = -2; - }; - Map.prototype.keys = function () { - return new MapIterator(this._keys, this._values, getKey); - }; - Map.prototype.values = function () { - return new MapIterator(this._keys, this._values, getValue); - }; - Map.prototype.entries = function () { - return new MapIterator(this._keys, this._values, getEntry); - }; - Map.prototype["@@iterator"] = function () { - return this.entries(); - }; - Map.prototype[iteratorSymbol] = function () { - return this.entries(); - }; - Map.prototype._find = function (key, insert) { - if (this._cacheKey !== key) { - this._cacheIndex = this._keys.indexOf(this._cacheKey = key); + return /** @class */function () { + function Map() { + this._keys = []; + this._values = []; + this._cacheKey = cacheSentinel; + this._cacheIndex = -2; + } + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: true, + configurable: true + }); + Map.prototype.has = function (key) { + return this._find(key, /*insert*/false) >= 0; + }; + Map.prototype.get = function (key) { + var index = this._find(key, /*insert*/false); + return index >= 0 ? this._values[index] : undefined; + }; + Map.prototype.set = function (key, value) { + var index = this._find(key, /*insert*/true); + this._values[index] = value; + return this; + }; + Map.prototype.delete = function (key) { + var index = this._find(key, /*insert*/false); + if (index >= 0) { + var size = this._keys.length; + for (var i = index + 1; i < size; i++) { + this._keys[i - 1] = this._keys[i]; + this._values[i - 1] = this._values[i]; } - if (this._cacheIndex < 0 && insert) { - this._cacheIndex = this._keys.length; - this._keys.push(key); - this._values.push(undefined); + this._keys.length--; + this._values.length--; + if (key === this._cacheKey) { + this._cacheKey = cacheSentinel; + this._cacheIndex = -2; } - return this._cacheIndex; - }; - return Map; - }() - ); + return true; + } + return false; + }; + Map.prototype.clear = function () { + this._keys.length = 0; + this._values.length = 0; + this._cacheKey = cacheSentinel; + this._cacheIndex = -2; + }; + Map.prototype.keys = function () { + return new MapIterator(this._keys, this._values, getKey); + }; + Map.prototype.values = function () { + return new MapIterator(this._keys, this._values, getValue); + }; + Map.prototype.entries = function () { + return new MapIterator(this._keys, this._values, getEntry); + }; + Map.prototype["@@iterator"] = function () { + return this.entries(); + }; + Map.prototype[iteratorSymbol] = function () { + return this.entries(); + }; + Map.prototype._find = function (key, insert) { + if (this._cacheKey !== key) { + this._cacheIndex = this._keys.indexOf(this._cacheKey = key); + } + if (this._cacheIndex < 0 && insert) { + this._cacheIndex = this._keys.length; + this._keys.push(key); + this._values.push(undefined); + } + return this._cacheIndex; + }; + return Map; + }(); function getKey(key, _) { return key; } @@ -16328,81 +16325,79 @@ var Reflect; } // naive Set shim function CreateSetPolyfill() { - return (/** @class */function () { - function Set() { - this._map = new _Map(); - } - Object.defineProperty(Set.prototype, "size", { - get: function () { - return this._map.size; - }, - enumerable: true, - configurable: true - }); - Set.prototype.has = function (value) { - return this._map.has(value); - }; - Set.prototype.add = function (value) { - return this._map.set(value, value), this; - }; - Set.prototype.delete = function (value) { - return this._map.delete(value); - }; - Set.prototype.clear = function () { - this._map.clear(); - }; - Set.prototype.keys = function () { - return this._map.keys(); - }; - Set.prototype.values = function () { - return this._map.values(); - }; - Set.prototype.entries = function () { - return this._map.entries(); - }; - Set.prototype["@@iterator"] = function () { - return this.keys(); - }; - Set.prototype[iteratorSymbol] = function () { - return this.keys(); - }; - return Set; - }() - ); + return /** @class */function () { + function Set() { + this._map = new _Map(); + } + Object.defineProperty(Set.prototype, "size", { + get: function () { + return this._map.size; + }, + enumerable: true, + configurable: true + }); + Set.prototype.has = function (value) { + return this._map.has(value); + }; + Set.prototype.add = function (value) { + return this._map.set(value, value), this; + }; + Set.prototype.delete = function (value) { + return this._map.delete(value); + }; + Set.prototype.clear = function () { + this._map.clear(); + }; + Set.prototype.keys = function () { + return this._map.keys(); + }; + Set.prototype.values = function () { + return this._map.values(); + }; + Set.prototype.entries = function () { + return this._map.entries(); + }; + Set.prototype["@@iterator"] = function () { + return this.keys(); + }; + Set.prototype[iteratorSymbol] = function () { + return this.keys(); + }; + return Set; + }(); } // naive WeakMap shim function CreateWeakMapPolyfill() { var UUID_SIZE = 16; var keys = HashMap.create(); var rootKey = CreateUniqueKey(); - return (/** @class */function () { - function WeakMap() { - this._key = CreateUniqueKey(); - } - WeakMap.prototype.has = function (target) { - var table = GetOrCreateWeakMapTable(target, /*create*/false); - return table !== undefined ? HashMap.has(table, this._key) : false; - }; - WeakMap.prototype.get = function (target) { - var table = GetOrCreateWeakMapTable(target, /*create*/false); - return table !== undefined ? HashMap.get(table, this._key) : undefined; - }; - WeakMap.prototype.set = function (target, value) { - var table = GetOrCreateWeakMapTable(target, /*create*/true); - table[this._key] = value; - return this; - }; - WeakMap.prototype.delete = function (target) { - var table = GetOrCreateWeakMapTable(target, /*create*/false); - return table !== undefined ? delete table[this._key] : false; - }; - WeakMap.prototype.clear = function () { - // NOTE: not a real clear, just makes the previous data unreachable - this._key = CreateUniqueKey(); - }; - return WeakMap; - }() - ); + return /** @class */function () { + function WeakMap() { + this._key = CreateUniqueKey(); + } + WeakMap.prototype.has = function (target) { + var table = GetOrCreateWeakMapTable(target, /*create*/false); + return table !== undefined ? HashMap.has(table, this._key) : false; + }; + WeakMap.prototype.get = function (target) { + var table = GetOrCreateWeakMapTable(target, /*create*/false); + return table !== undefined ? HashMap.get(table, this._key) : undefined; + }; + WeakMap.prototype.set = function (target, value) { + var table = GetOrCreateWeakMapTable(target, /*create*/true); + table[this._key] = value; + return this; + }; + WeakMap.prototype.delete = function (target) { + var table = GetOrCreateWeakMapTable(target, /*create*/false); + return table !== undefined ? delete table[this._key] : false; + }; + WeakMap.prototype.clear = function () { + // NOTE: not a real clear, just makes the previous data unreachable + this._key = CreateUniqueKey(); + }; + return WeakMap; + }(); function CreateUniqueKey() { var key; do key = "@@WeakMap@@" + CreateUUID(); while (HashMap.has(keys, key)); @@ -16456,7 +16451,7 @@ var Reflect; /***/ }), -/***/ 462: +/***/ 70462: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/BehaviorSubject.js ***! \****************************************************************/ @@ -16467,8 +16462,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ BehaviorSubject: () => (/* binding */ BehaviorSubject) /* harmony export */ }); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 2484); -/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 6950); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 32484); +/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 66950); class BehaviorSubject extends _Subject__WEBPACK_IMPORTED_MODULE_0__.Subject { @@ -16502,7 +16497,43 @@ class BehaviorSubject extends _Subject__WEBPACK_IMPORTED_MODULE_0__.Subject { /***/ }), -/***/ 7618: +/***/ 16090: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/InnerSubscriber.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ InnerSubscriber: () => (/* binding */ InnerSubscriber) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); + +class InnerSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + constructor(parent, outerValue, outerIndex) { + super(); + this.parent = parent; + this.outerValue = outerValue; + this.outerIndex = outerIndex; + this.index = 0; + } + _next(value) { + this.parent.notifyNext(this.outerValue, value, this.outerIndex, this.index++, this); + } + _error(error) { + this.parent.notifyError(error, this); + this.unsubscribe(); + } + _complete() { + this.parent.notifyComplete(this); + this.unsubscribe(); + } +} + +/***/ }), + +/***/ 77618: /*!*************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Notification.js ***! \*************************************************************/ @@ -16514,9 +16545,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ Notification: () => (/* binding */ Notification), /* harmony export */ NotificationKind: () => (/* binding */ NotificationKind) /* harmony export */ }); -/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./observable/empty */ 506); +/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./observable/empty */ 70506); /* harmony import */ var _observable_of__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./observable/of */ 9681); -/* harmony import */ var _observable_throwError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./observable/throwError */ 3994); +/* harmony import */ var _observable_throwError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./observable/throwError */ 33994); @@ -16591,7 +16622,7 @@ Notification.undefinedValueNotification = new Notification('N', undefined); /***/ }), -/***/ 3064: +/***/ 73064: /*!***********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Observable.js ***! \***********************************************************/ @@ -16602,11 +16633,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Observable: () => (/* binding */ Observable) /* harmony export */ }); -/* harmony import */ var _util_canReportError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/canReportError */ 3159); +/* harmony import */ var _util_canReportError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/canReportError */ 73159); /* harmony import */ var _util_toSubscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util/toSubscriber */ 6920); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./symbol/observable */ 5129); -/* harmony import */ var _util_pipe__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./util/pipe */ 7734); -/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ 7329); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./symbol/observable */ 65129); +/* harmony import */ var _util_pipe__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./util/pipe */ 27734); +/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ 67329); @@ -16714,7 +16745,7 @@ function getPromiseCtor(promiseCtor) { /***/ }), -/***/ 6195: +/***/ 16195: /*!*********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Observer.js ***! \*********************************************************/ @@ -16725,8 +16756,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ empty: () => (/* binding */ empty) /* harmony export */ }); -/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ 7329); -/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/hostReportError */ 8722); +/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ 67329); +/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/hostReportError */ 98722); const empty = { @@ -16744,7 +16775,34 @@ const empty = { /***/ }), -/***/ 6309: +/***/ 78369: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/OuterSubscriber.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ OuterSubscriber: () => (/* binding */ OuterSubscriber) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); + +class OuterSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + notifyNext(outerValue, innerValue, outerIndex, innerIndex, innerSub) { + this.destination.next(innerValue); + } + notifyError(error, innerSub) { + this.destination.error(error); + } + notifyComplete(innerSub) { + this.destination.complete(); + } +} + +/***/ }), + +/***/ 76309: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/ReplaySubject.js ***! \**************************************************************/ @@ -16755,12 +16813,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ReplaySubject: () => (/* binding */ ReplaySubject) /* harmony export */ }); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 2484); -/* harmony import */ var _scheduler_queue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduler/queue */ 6948); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Subscription */ 4614); -/* harmony import */ var _operators_observeOn__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./operators/observeOn */ 8892); -/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 6950); -/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SubjectSubscription */ 1460); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 32484); +/* harmony import */ var _scheduler_queue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduler/queue */ 76948); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Subscription */ 84614); +/* harmony import */ var _operators_observeOn__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./operators/observeOn */ 28892); +/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 66950); +/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SubjectSubscription */ 41460); @@ -16866,7 +16924,7 @@ class ReplayEvent { /***/ }), -/***/ 7792: +/***/ 11109: /*!**********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Scheduler.js ***! \**********************************************************/ @@ -16890,7 +16948,7 @@ Scheduler.now = () => Date.now(); /***/ }), -/***/ 2484: +/***/ 32484: /*!********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Subject.js ***! \********************************************************/ @@ -16903,12 +16961,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ Subject: () => (/* binding */ Subject), /* harmony export */ SubjectSubscriber: () => (/* binding */ SubjectSubscriber) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 3064); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 5142); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Subscription */ 4614); -/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 6950); -/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./SubjectSubscription */ 1460); -/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 1999); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 73064); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Subscription */ 84614); +/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 66950); +/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./SubjectSubscription */ 41460); +/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 51999); @@ -17064,7 +17122,7 @@ class AnonymousSubject extends Subject { /***/ }), -/***/ 1460: +/***/ 41460: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/SubjectSubscription.js ***! \********************************************************************/ @@ -17075,7 +17133,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SubjectSubscription: () => (/* binding */ SubjectSubscription) /* harmony export */ }); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 4614); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 84614); class SubjectSubscription extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Subscription { constructor(subject, subscriber) { @@ -17104,7 +17162,7 @@ class SubjectSubscription extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Sub /***/ }), -/***/ 5142: +/***/ 55142: /*!***********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Subscriber.js ***! \***********************************************************/ @@ -17116,12 +17174,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ SafeSubscriber: () => (/* binding */ SafeSubscriber), /* harmony export */ Subscriber: () => (/* binding */ Subscriber) /* harmony export */ }); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isFunction */ 5251); -/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observer */ 6195); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 4614); -/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 1999); -/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ 7329); -/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./util/hostReportError */ 8722); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isFunction */ 45251); +/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observer */ 16195); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 84614); +/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 51999); +/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ 67329); +/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./util/hostReportError */ 98722); @@ -17347,7 +17405,7 @@ class SafeSubscriber extends Subscriber { /***/ }), -/***/ 4614: +/***/ 84614: /*!*************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Subscription.js ***! \*************************************************************/ @@ -17358,10 +17416,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Subscription: () => (/* binding */ Subscription) /* harmony export */ }); -/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/isArray */ 7264); -/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isObject */ 7560); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util/isFunction */ 5251); -/* harmony import */ var _util_UnsubscriptionError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/UnsubscriptionError */ 9164); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/isArray */ 97264); +/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isObject */ 97560); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util/isFunction */ 45251); +/* harmony import */ var _util_UnsubscriptionError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/UnsubscriptionError */ 29164); @@ -17499,7 +17557,7 @@ function flattenUnsubscriptionErrors(errors) { /***/ }), -/***/ 7329: +/***/ 67329: /*!*******************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/config.js ***! \*******************************************************/ @@ -17529,7 +17587,7 @@ const config = { /***/ }), -/***/ 6241: +/***/ 26241: /*!***************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/innerSubscribe.js ***! \***************************************************************/ @@ -17544,9 +17602,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ SimpleOuterSubscriber: () => (/* binding */ SimpleOuterSubscriber), /* harmony export */ innerSubscribe: () => (/* binding */ innerSubscribe) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 5142); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 3064); -/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/subscribeTo */ 3787); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 73064); +/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/subscribeTo */ 63787); @@ -17626,7 +17684,7 @@ function innerSubscribe(result, innerSubscriber) { /***/ }), -/***/ 9148: +/***/ 19148: /*!*********************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/ConnectableObservable.js ***! \*********************************************************************************/ @@ -17638,11 +17696,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ ConnectableObservable: () => (/* binding */ ConnectableObservable), /* harmony export */ connectableObservableDescriptor: () => (/* binding */ connectableObservableDescriptor) /* harmony export */ }); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Subject */ 2484); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); -/* harmony import */ var _operators_refCount__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/refCount */ 6159); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Subject */ 32484); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); +/* harmony import */ var _operators_refCount__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/refCount */ 26159); @@ -17801,7 +17859,132 @@ class RefCountSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_4__.Subscr /***/ }), -/***/ 506: +/***/ 64555: +/*!*************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/combineLatest.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CombineLatestOperator: () => (/* binding */ CombineLatestOperator), +/* harmony export */ CombineLatestSubscriber: () => (/* binding */ CombineLatestSubscriber), +/* harmony export */ combineLatest: () => (/* binding */ combineLatest) +/* harmony export */ }); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isArray */ 97264); +/* harmony import */ var _OuterSubscriber__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../OuterSubscriber */ 78369); +/* harmony import */ var _util_subscribeToResult__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/subscribeToResult */ 24660); +/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromArray */ 81155); + + + + + +const NONE = {}; +function combineLatest(...observables) { + let resultSelector = undefined; + let scheduler = undefined; + if ((0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_0__.isScheduler)(observables[observables.length - 1])) { + scheduler = observables.pop(); + } + if (typeof observables[observables.length - 1] === 'function') { + resultSelector = observables.pop(); + } + if (observables.length === 1 && (0,_util_isArray__WEBPACK_IMPORTED_MODULE_1__.isArray)(observables[0])) { + observables = observables[0]; + } + return (0,_fromArray__WEBPACK_IMPORTED_MODULE_2__.fromArray)(observables, scheduler).lift(new CombineLatestOperator(resultSelector)); +} +class CombineLatestOperator { + constructor(resultSelector) { + this.resultSelector = resultSelector; + } + call(subscriber, source) { + return source.subscribe(new CombineLatestSubscriber(subscriber, this.resultSelector)); + } +} +class CombineLatestSubscriber extends _OuterSubscriber__WEBPACK_IMPORTED_MODULE_3__.OuterSubscriber { + constructor(destination, resultSelector) { + super(destination); + this.resultSelector = resultSelector; + this.active = 0; + this.values = []; + this.observables = []; + } + _next(observable) { + this.values.push(NONE); + this.observables.push(observable); + } + _complete() { + const observables = this.observables; + const len = observables.length; + if (len === 0) { + this.destination.complete(); + } else { + this.active = len; + this.toRespond = len; + for (let i = 0; i < len; i++) { + const observable = observables[i]; + this.add((0,_util_subscribeToResult__WEBPACK_IMPORTED_MODULE_4__.subscribeToResult)(this, observable, undefined, i)); + } + } + } + notifyComplete(unused) { + if ((this.active -= 1) === 0) { + this.destination.complete(); + } + } + notifyNext(_outerValue, innerValue, outerIndex) { + const values = this.values; + const oldVal = values[outerIndex]; + const toRespond = !this.toRespond ? 0 : oldVal === NONE ? --this.toRespond : this.toRespond; + values[outerIndex] = innerValue; + if (toRespond === 0) { + if (this.resultSelector) { + this._tryResultSelector(values); + } else { + this.destination.next(values.slice()); + } + } + } + _tryResultSelector(values) { + let result; + try { + result = this.resultSelector.apply(this, values); + } catch (err) { + this.destination.error(err); + return; + } + this.destination.next(result); + } +} + +/***/ }), + +/***/ 75774: +/*!******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/concat.js ***! + \******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ concat: () => (/* binding */ concat) +/* harmony export */ }); +/* harmony import */ var _of__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./of */ 9681); +/* harmony import */ var _operators_concatAll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../operators/concatAll */ 98106); + + +function concat(...observables) { + return (0,_operators_concatAll__WEBPACK_IMPORTED_MODULE_0__.concatAll)()((0,_of__WEBPACK_IMPORTED_MODULE_1__.of)(...observables)); +} + +/***/ }), + +/***/ 70506: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/empty.js ***! \*****************************************************************/ @@ -17813,7 +17996,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ EMPTY: () => (/* binding */ EMPTY), /* harmony export */ empty: () => (/* binding */ empty) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); const EMPTY = new _Observable__WEBPACK_IMPORTED_MODULE_0__.Observable(subscriber => subscriber.complete()); function empty(scheduler) { @@ -17825,7 +18008,7 @@ function emptyScheduled(scheduler) { /***/ }), -/***/ 2130: +/***/ 92130: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/forkJoin.js ***! \********************************************************************/ @@ -17836,11 +18019,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ forkJoin: () => (/* binding */ forkJoin) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isArray */ 7264); -/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/map */ 7422); -/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isObject */ 7560); -/* harmony import */ var _from__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./from */ 502); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isArray */ 97264); +/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/map */ 47422); +/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isObject */ 97560); +/* harmony import */ var _from__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./from */ 30502); @@ -17902,7 +18085,7 @@ function forkJoinInternal(sources, keys) { /***/ }), -/***/ 502: +/***/ 30502: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/from.js ***! \****************************************************************/ @@ -17913,9 +18096,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ from: () => (/* binding */ from) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeTo */ 3787); -/* harmony import */ var _scheduled_scheduled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduled */ 6340); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeTo */ 63787); +/* harmony import */ var _scheduled_scheduled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduled */ 26340); @@ -17932,7 +18115,7 @@ function from(input, scheduler) { /***/ }), -/***/ 1155: +/***/ 81155: /*!*********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/fromArray.js ***! \*********************************************************************/ @@ -17943,9 +18126,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ fromArray: () => (/* binding */ fromArray) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_subscribeToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeToArray */ 4491); -/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 8577); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_subscribeToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeToArray */ 24491); +/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 38577); @@ -17959,7 +18142,7 @@ function fromArray(input, scheduler) { /***/ }), -/***/ 3190: +/***/ 93190: /*!*********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/fromEvent.js ***! \*********************************************************************/ @@ -17970,10 +18153,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ fromEvent: () => (/* binding */ fromEvent) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isArray */ 7264); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isFunction */ 5251); -/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../operators/map */ 7422); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isArray */ 97264); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isFunction */ 45251); +/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../operators/map */ 47422); @@ -18033,7 +18216,56 @@ function isEventTarget(sourceObj) { /***/ }), -/***/ 9718: +/***/ 17827: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/interval.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ interval: () => (/* binding */ interval) +/* harmony export */ }); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../scheduler/async */ 61432); +/* harmony import */ var _util_isNumeric__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isNumeric */ 20240); + + + +function interval(period = 0, scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async) { + if (!(0,_util_isNumeric__WEBPACK_IMPORTED_MODULE_1__.isNumeric)(period) || period < 0) { + period = 0; + } + if (!scheduler || typeof scheduler.schedule !== 'function') { + scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async; + } + return new _Observable__WEBPACK_IMPORTED_MODULE_2__.Observable(subscriber => { + subscriber.add(scheduler.schedule(dispatch, period, { + subscriber, + counter: 0, + period + })); + return subscriber; + }); +} +function dispatch(state) { + const { + subscriber, + counter, + period + } = state; + subscriber.next(counter); + this.schedule({ + subscriber, + counter: counter + 1, + period + }, period); +} + +/***/ }), + +/***/ 89718: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/merge.js ***! \*****************************************************************/ @@ -18044,10 +18276,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ merge: () => (/* binding */ merge) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 9054); -/* harmony import */ var _operators_mergeAll__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/mergeAll */ 2600); -/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fromArray */ 1155); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); +/* harmony import */ var _operators_mergeAll__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/mergeAll */ 32600); +/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fromArray */ 81155); @@ -18083,9 +18315,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ of: () => (/* binding */ of) /* harmony export */ }); -/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 9054); -/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromArray */ 1155); -/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 8577); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); +/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromArray */ 81155); +/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 38577); @@ -18101,7 +18333,7 @@ function of(...args) { /***/ }), -/***/ 3994: +/***/ 33994: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/throwError.js ***! \**********************************************************************/ @@ -18112,7 +18344,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ throwError: () => (/* binding */ throwError) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); function throwError(error, scheduler) { if (!scheduler) { @@ -18133,7 +18365,185 @@ function dispatch({ /***/ }), -/***/ 7293: +/***/ 38435: +/*!*****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/timer.js ***! + \*****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ timer: () => (/* binding */ timer) +/* harmony export */ }); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduler/async */ 61432); +/* harmony import */ var _util_isNumeric__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isNumeric */ 20240); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isScheduler */ 99054); + + + + +function timer(dueTime = 0, periodOrScheduler, scheduler) { + let period = -1; + if ((0,_util_isNumeric__WEBPACK_IMPORTED_MODULE_0__.isNumeric)(periodOrScheduler)) { + period = Number(periodOrScheduler) < 1 && 1 || Number(periodOrScheduler); + } else if ((0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_1__.isScheduler)(periodOrScheduler)) { + scheduler = periodOrScheduler; + } + if (!(0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_1__.isScheduler)(scheduler)) { + scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_2__.async; + } + return new _Observable__WEBPACK_IMPORTED_MODULE_3__.Observable(subscriber => { + const due = (0,_util_isNumeric__WEBPACK_IMPORTED_MODULE_0__.isNumeric)(dueTime) ? dueTime : +dueTime - scheduler.now(); + return scheduler.schedule(dispatch, due, { + index: 0, + period, + subscriber + }); + }); +} +function dispatch(state) { + const { + index, + period, + subscriber + } = state; + subscriber.next(index); + if (subscriber.closed) { + return; + } else if (period === -1) { + return subscriber.complete(); + } + state.index = index + 1; + this.schedule(state, period); +} + +/***/ }), + +/***/ 50702: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/audit.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ audit: () => (/* binding */ audit) +/* harmony export */ }); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../innerSubscribe */ 26241); + +function audit(durationSelector) { + return function auditOperatorFunction(source) { + return source.lift(new AuditOperator(durationSelector)); + }; +} +class AuditOperator { + constructor(durationSelector) { + this.durationSelector = durationSelector; + } + call(subscriber, source) { + return source.subscribe(new AuditSubscriber(subscriber, this.durationSelector)); + } +} +class AuditSubscriber extends _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.SimpleOuterSubscriber { + constructor(destination, durationSelector) { + super(destination); + this.durationSelector = durationSelector; + this.hasValue = false; + } + _next(value) { + this.value = value; + this.hasValue = true; + if (!this.throttled) { + let duration; + try { + const { + durationSelector + } = this; + duration = durationSelector(value); + } catch (err) { + return this.destination.error(err); + } + const innerSubscription = (0,_innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.innerSubscribe)(duration, new _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.SimpleInnerSubscriber(this)); + if (!innerSubscription || innerSubscription.closed) { + this.clearThrottle(); + } else { + this.add(this.throttled = innerSubscription); + } + } + } + clearThrottle() { + const { + value, + hasValue, + throttled + } = this; + if (throttled) { + this.remove(throttled); + this.throttled = undefined; + throttled.unsubscribe(); + } + if (hasValue) { + this.value = undefined; + this.hasValue = false; + this.destination.next(value); + } + } + notifyNext() { + this.clearThrottle(); + } + notifyComplete() { + this.clearThrottle(); + } +} + +/***/ }), + +/***/ 41270: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/auditTime.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ auditTime: () => (/* binding */ auditTime) +/* harmony export */ }); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../scheduler/async */ 61432); +/* harmony import */ var _audit__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./audit */ 50702); +/* harmony import */ var _observable_timer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../observable/timer */ 38435); + + + +function auditTime(duration, scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async) { + return (0,_audit__WEBPACK_IMPORTED_MODULE_1__.audit)(() => (0,_observable_timer__WEBPACK_IMPORTED_MODULE_2__.timer)(duration, scheduler)); +} + +/***/ }), + +/***/ 98106: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/concatAll.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ concatAll: () => (/* binding */ concatAll) +/* harmony export */ }); +/* harmony import */ var _mergeAll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeAll */ 32600); + +function concatAll() { + return (0,_mergeAll__WEBPACK_IMPORTED_MODULE_0__.mergeAll)(1); +} + +/***/ }), + +/***/ 67293: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/concatMap.js ***! \********************************************************************/ @@ -18144,7 +18554,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ concatMap: () => (/* binding */ concatMap) /* harmony export */ }); -/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 7965); +/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 87965); function concatMap(project, resultSelector) { return (0,_mergeMap__WEBPACK_IMPORTED_MODULE_0__.mergeMap)(project, resultSelector, 1); @@ -18152,7 +18562,79 @@ function concatMap(project, resultSelector) { /***/ }), -/***/ 2345: +/***/ 95933: +/*!***********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/debounceTime.js ***! + \***********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ debounceTime: () => (/* binding */ debounceTime) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../scheduler/async */ 61432); + + +function debounceTime(dueTime, scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async) { + return source => source.lift(new DebounceTimeOperator(dueTime, scheduler)); +} +class DebounceTimeOperator { + constructor(dueTime, scheduler) { + this.dueTime = dueTime; + this.scheduler = scheduler; + } + call(subscriber, source) { + return source.subscribe(new DebounceTimeSubscriber(subscriber, this.dueTime, this.scheduler)); + } +} +class DebounceTimeSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_1__.Subscriber { + constructor(destination, dueTime, scheduler) { + super(destination); + this.dueTime = dueTime; + this.scheduler = scheduler; + this.debouncedSubscription = null; + this.lastValue = null; + this.hasValue = false; + } + _next(value) { + this.clearDebounce(); + this.lastValue = value; + this.hasValue = true; + this.add(this.debouncedSubscription = this.scheduler.schedule(dispatchNext, this.dueTime, this)); + } + _complete() { + this.debouncedNext(); + this.destination.complete(); + } + debouncedNext() { + this.clearDebounce(); + if (this.hasValue) { + const { + lastValue + } = this; + this.lastValue = null; + this.hasValue = false; + this.destination.next(lastValue); + } + } + clearDebounce() { + const debouncedSubscription = this.debouncedSubscription; + if (debouncedSubscription !== null) { + this.remove(debouncedSubscription); + debouncedSubscription.unsubscribe(); + this.debouncedSubscription = null; + } + } +} +function dispatchNext(subscriber) { + subscriber.debouncedNext(); +} + +/***/ }), + +/***/ 32345: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/defaultIfEmpty.js ***! \*************************************************************************/ @@ -18163,7 +18645,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ defaultIfEmpty: () => (/* binding */ defaultIfEmpty) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function defaultIfEmpty(defaultValue = null) { return source => source.lift(new DefaultIfEmptyOperator(defaultValue)); @@ -18196,7 +18678,7 @@ class DefaultIfEmptySubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__. /***/ }), -/***/ 5083: +/***/ 45083: /*!*******************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/distinctUntilChanged.js ***! \*******************************************************************************/ @@ -18207,7 +18689,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ distinctUntilChanged: () => (/* binding */ distinctUntilChanged) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function distinctUntilChanged(compare, keySelector) { return source => source.lift(new DistinctUntilChangedOperator(compare, keySelector)); @@ -18265,7 +18747,7 @@ class DistinctUntilChangedSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODUL /***/ }), -/***/ 5046: +/***/ 85046: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/filter.js ***! \*****************************************************************/ @@ -18276,7 +18758,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ filter: () => (/* binding */ filter) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function filter(predicate, thisArg) { return function filterOperatorFunction(source) { @@ -18315,7 +18797,7 @@ class FilterSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscrib /***/ }), -/***/ 786: +/***/ 90786: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/finalize.js ***! \*******************************************************************/ @@ -18326,8 +18808,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ finalize: () => (/* binding */ finalize) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); function finalize(callback) { @@ -18350,7 +18832,7 @@ class FinallySubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscri /***/ }), -/***/ 7627: +/***/ 17627: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/first.js ***! \****************************************************************/ @@ -18361,12 +18843,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ first: () => (/* binding */ first) /* harmony export */ }); -/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/EmptyError */ 1742); -/* harmony import */ var _filter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./filter */ 5046); -/* harmony import */ var _take__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./take */ 6939); -/* harmony import */ var _defaultIfEmpty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./defaultIfEmpty */ 2345); -/* harmony import */ var _throwIfEmpty__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./throwIfEmpty */ 1620); -/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 6361); +/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/EmptyError */ 51742); +/* harmony import */ var _filter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./filter */ 85046); +/* harmony import */ var _take__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./take */ 46939); +/* harmony import */ var _defaultIfEmpty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./defaultIfEmpty */ 32345); +/* harmony import */ var _throwIfEmpty__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./throwIfEmpty */ 91620); +/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 56361); @@ -18380,7 +18862,7 @@ function first(predicate, defaultValue) { /***/ }), -/***/ 7422: +/***/ 47422: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/map.js ***! \**************************************************************/ @@ -18392,7 +18874,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ MapOperator: () => (/* binding */ MapOperator), /* harmony export */ map: () => (/* binding */ map) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function map(project, thisArg) { return function mapOperation(source) { @@ -18432,7 +18914,7 @@ class MapSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber /***/ }), -/***/ 2600: +/***/ 32600: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/mergeAll.js ***! \*******************************************************************/ @@ -18443,8 +18925,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ mergeAll: () => (/* binding */ mergeAll) /* harmony export */ }); -/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 7965); -/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 6361); +/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 87965); +/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 56361); function mergeAll(concurrent = Number.POSITIVE_INFINITY) { @@ -18453,7 +18935,7 @@ function mergeAll(concurrent = Number.POSITIVE_INFINITY) { /***/ }), -/***/ 7965: +/***/ 87965: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/mergeMap.js ***! \*******************************************************************/ @@ -18467,9 +18949,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ flatMap: () => (/* binding */ flatMap), /* harmony export */ mergeMap: () => (/* binding */ mergeMap) /* harmony export */ }); -/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 7422); -/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 502); -/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 6241); +/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 47422); +/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 30502); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 26241); @@ -18552,7 +19034,7 @@ const flatMap = mergeMap; /***/ }), -/***/ 202: +/***/ 80202: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/multicast.js ***! \********************************************************************/ @@ -18564,7 +19046,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ MulticastOperator: () => (/* binding */ MulticastOperator), /* harmony export */ multicast: () => (/* binding */ multicast) /* harmony export */ }); -/* harmony import */ var _observable_ConnectableObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/ConnectableObservable */ 9148); +/* harmony import */ var _observable_ConnectableObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/ConnectableObservable */ 19148); function multicast(subjectOrSubjectFactory, selector) { return function multicastOperatorFunction(source) { @@ -18603,7 +19085,7 @@ class MulticastOperator { /***/ }), -/***/ 8892: +/***/ 28892: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/observeOn.js ***! \********************************************************************/ @@ -18617,8 +19099,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ ObserveOnSubscriber: () => (/* binding */ ObserveOnSubscriber), /* harmony export */ observeOn: () => (/* binding */ observeOn) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _Notification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Notification */ 7618); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _Notification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Notification */ 77618); function observeOn(scheduler, delay = 0) { @@ -18674,7 +19156,49 @@ class ObserveOnMessage { /***/ }), -/***/ 6159: +/***/ 66407: +/*!*******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/pairwise.js ***! + \*******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ pairwise: () => (/* binding */ pairwise) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); + +function pairwise() { + return source => source.lift(new PairwiseOperator()); +} +class PairwiseOperator { + call(subscriber, source) { + return source.subscribe(new PairwiseSubscriber(subscriber)); + } +} +class PairwiseSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + constructor(destination) { + super(destination); + this.hasPrev = false; + } + _next(value) { + let pair; + if (this.hasPrev) { + pair = [this.prev, value]; + } else { + this.hasPrev = true; + } + this.prev = value; + if (pair) { + this.destination.next(pair); + } + } +} + +/***/ }), + +/***/ 26159: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/refCount.js ***! \*******************************************************************/ @@ -18685,7 +19209,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ refCount: () => (/* binding */ refCount) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function refCount() { return function refCountOperatorFunction(source) { @@ -18746,7 +19270,7 @@ class RefCountSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscr /***/ }), -/***/ 1272: +/***/ 99718: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/share.js ***! \****************************************************************/ @@ -18757,9 +19281,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ share: () => (/* binding */ share) /* harmony export */ }); -/* harmony import */ var _multicast__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./multicast */ 202); -/* harmony import */ var _refCount__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./refCount */ 6159); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subject */ 2484); +/* harmony import */ var _multicast__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./multicast */ 80202); +/* harmony import */ var _refCount__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./refCount */ 26159); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subject */ 32484); @@ -18772,7 +19296,153 @@ function share() { /***/ }), -/***/ 6520: +/***/ 680: +/*!**********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/shareReplay.js ***! + \**********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ shareReplay: () => (/* binding */ shareReplay) +/* harmony export */ }); +/* harmony import */ var _ReplaySubject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../ReplaySubject */ 76309); + +function shareReplay(configOrBufferSize, windowTime, scheduler) { + let config; + if (configOrBufferSize && typeof configOrBufferSize === 'object') { + config = configOrBufferSize; + } else { + config = { + bufferSize: configOrBufferSize, + windowTime, + refCount: false, + scheduler + }; + } + return source => source.lift(shareReplayOperator(config)); +} +function shareReplayOperator({ + bufferSize = Number.POSITIVE_INFINITY, + windowTime = Number.POSITIVE_INFINITY, + refCount: useRefCount, + scheduler +}) { + let subject; + let refCount = 0; + let subscription; + let hasError = false; + let isComplete = false; + return function shareReplayOperation(source) { + refCount++; + let innerSub; + if (!subject || hasError) { + hasError = false; + subject = new _ReplaySubject__WEBPACK_IMPORTED_MODULE_0__.ReplaySubject(bufferSize, windowTime, scheduler); + innerSub = subject.subscribe(this); + subscription = source.subscribe({ + next(value) { + subject.next(value); + }, + error(err) { + hasError = true; + subject.error(err); + }, + complete() { + isComplete = true; + subscription = undefined; + subject.complete(); + } + }); + if (isComplete) { + subscription = undefined; + } + } else { + innerSub = subject.subscribe(this); + } + this.add(() => { + refCount--; + innerSub.unsubscribe(); + innerSub = undefined; + if (subscription && !isComplete && useRefCount && refCount === 0) { + subscription.unsubscribe(); + subscription = undefined; + subject = undefined; + } + }); + }; +} + +/***/ }), + +/***/ 51063: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/skip.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ skip: () => (/* binding */ skip) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); + +function skip(count) { + return source => source.lift(new SkipOperator(count)); +} +class SkipOperator { + constructor(total) { + this.total = total; + } + call(subscriber, source) { + return source.subscribe(new SkipSubscriber(subscriber, this.total)); + } +} +class SkipSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + constructor(destination, total) { + super(destination); + this.total = total; + this.count = 0; + } + _next(x) { + if (++this.count > this.total) { + this.destination.next(x); + } + } +} + +/***/ }), + +/***/ 1062: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/startWith.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ startWith: () => (/* binding */ startWith) +/* harmony export */ }); +/* harmony import */ var _observable_concat__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../observable/concat */ 75774); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); + + +function startWith(...array) { + const scheduler = array[array.length - 1]; + if ((0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_0__.isScheduler)(scheduler)) { + array.pop(); + return source => (0,_observable_concat__WEBPACK_IMPORTED_MODULE_1__.concat)(array, source, scheduler); + } else { + return source => (0,_observable_concat__WEBPACK_IMPORTED_MODULE_1__.concat)(array, source); + } +} + +/***/ }), + +/***/ 36520: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/switchMap.js ***! \********************************************************************/ @@ -18783,9 +19453,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ switchMap: () => (/* binding */ switchMap) /* harmony export */ }); -/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 7422); -/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 502); -/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 6241); +/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 47422); +/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 30502); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 26241); @@ -18858,7 +19528,7 @@ class SwitchMapSubscriber extends _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__.S /***/ }), -/***/ 6939: +/***/ 46939: /*!***************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/take.js ***! \***************************************************************/ @@ -18869,9 +19539,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ take: () => (/* binding */ take) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _util_ArgumentOutOfRangeError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/ArgumentOutOfRangeError */ 2081); -/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/empty */ 506); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _util_ArgumentOutOfRangeError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/ArgumentOutOfRangeError */ 72081); +/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/empty */ 70506); @@ -18916,7 +19586,7 @@ class TakeSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_2__.Subscriber /***/ }), -/***/ 3303: +/***/ 13303: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/takeUntil.js ***! \********************************************************************/ @@ -18927,7 +19597,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ takeUntil: () => (/* binding */ takeUntil) /* harmony export */ }); -/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../innerSubscribe */ 6241); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../innerSubscribe */ 26241); function takeUntil(notifier) { return source => source.lift(new TakeUntilOperator(notifier)); @@ -18960,7 +19630,7 @@ class TakeUntilSubscriber extends _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.S /***/ }), -/***/ 5746: +/***/ 15746: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/tap.js ***! \**************************************************************/ @@ -18971,9 +19641,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ tap: () => (/* binding */ tap) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); /* harmony import */ var _util_noop__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/noop */ 5717); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isFunction */ 5251); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isFunction */ 45251); @@ -19041,7 +19711,7 @@ class TapSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber /***/ }), -/***/ 1620: +/***/ 91620: /*!***********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/throwIfEmpty.js ***! \***********************************************************************/ @@ -19052,8 +19722,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ throwIfEmpty: () => (/* binding */ throwIfEmpty) /* harmony export */ }); -/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/EmptyError */ 1742); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/EmptyError */ 51742); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function throwIfEmpty(errorFactory = defaultErrorFactory) { @@ -19099,7 +19769,7 @@ function defaultErrorFactory() { /***/ }), -/***/ 8577: +/***/ 38577: /*!************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduleArray.js ***! \************************************************************************/ @@ -19110,8 +19780,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduleArray: () => (/* binding */ scheduleArray) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); function scheduleArray(input, scheduler) { @@ -19134,7 +19804,7 @@ function scheduleArray(input, scheduler) { /***/ }), -/***/ 5299: +/***/ 35299: /*!***************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduleIterable.js ***! \***************************************************************************/ @@ -19145,9 +19815,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduleIterable: () => (/* binding */ scheduleIterable) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/iterator */ 6603); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/iterator */ 86603); @@ -19193,7 +19863,7 @@ function scheduleIterable(input, scheduler) { /***/ }), -/***/ 8275: +/***/ 68275: /*!*****************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduleObservable.js ***! \*****************************************************************************/ @@ -19204,9 +19874,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduleObservable: () => (/* binding */ scheduleObservable) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/observable */ 5129); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/observable */ 65129); @@ -19233,7 +19903,7 @@ function scheduleObservable(input, scheduler) { /***/ }), -/***/ 5576: +/***/ 65576: /*!**************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/schedulePromise.js ***! \**************************************************************************/ @@ -19244,8 +19914,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ schedulePromise: () => (/* binding */ schedulePromise) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); function schedulePromise(input, scheduler) { @@ -19265,7 +19935,7 @@ function schedulePromise(input, scheduler) { /***/ }), -/***/ 6340: +/***/ 26340: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduled.js ***! \********************************************************************/ @@ -19276,14 +19946,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduled: () => (/* binding */ scheduled) /* harmony export */ }); -/* harmony import */ var _scheduleObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./scheduleObservable */ 8275); -/* harmony import */ var _schedulePromise__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./schedulePromise */ 5576); -/* harmony import */ var _scheduleArray__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduleArray */ 8577); -/* harmony import */ var _scheduleIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./scheduleIterable */ 5299); -/* harmony import */ var _util_isInteropObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isInteropObservable */ 9428); +/* harmony import */ var _scheduleObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./scheduleObservable */ 68275); +/* harmony import */ var _schedulePromise__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./schedulePromise */ 65576); +/* harmony import */ var _scheduleArray__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduleArray */ 38577); +/* harmony import */ var _scheduleIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./scheduleIterable */ 35299); +/* harmony import */ var _util_isInteropObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isInteropObservable */ 49428); /* harmony import */ var _util_isPromise__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isPromise */ 8290); -/* harmony import */ var _util_isArrayLike__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/isArrayLike */ 4361); -/* harmony import */ var _util_isIterable__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/isIterable */ 5540); +/* harmony import */ var _util_isArrayLike__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/isArrayLike */ 24361); +/* harmony import */ var _util_isIterable__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/isIterable */ 95540); @@ -19309,7 +19979,7 @@ function scheduled(input, scheduler) { /***/ }), -/***/ 8674: +/***/ 38674: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/Action.js ***! \*****************************************************************/ @@ -19320,7 +19990,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Action: () => (/* binding */ Action) /* harmony export */ }); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscription */ 84614); class Action extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Subscription { constructor(scheduler, work) { @@ -19333,7 +20003,171 @@ class Action extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Subscription { /***/ }), -/***/ 5610: +/***/ 69922: +/*!*******************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js ***! + \*******************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AnimationFrameAction: () => (/* binding */ AnimationFrameAction) +/* harmony export */ }); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 65610); + +class AnimationFrameAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction { + constructor(scheduler, work) { + super(scheduler, work); + this.scheduler = scheduler; + this.work = work; + } + requestAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0) { + return super.requestAsyncId(scheduler, id, delay); + } + scheduler.actions.push(this); + return scheduler.scheduled || (scheduler.scheduled = requestAnimationFrame(() => scheduler.flush(null))); + } + recycleAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0 || delay === null && this.delay > 0) { + return super.recycleAsyncId(scheduler, id, delay); + } + if (scheduler.actions.length === 0) { + cancelAnimationFrame(id); + scheduler.scheduled = undefined; + } + return undefined; + } +} + +/***/ }), + +/***/ 83453: +/*!**********************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js ***! + \**********************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AnimationFrameScheduler: () => (/* binding */ AnimationFrameScheduler) +/* harmony export */ }); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); + +class AnimationFrameScheduler extends _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler { + flush(action) { + this.active = true; + this.scheduled = undefined; + const { + actions + } = this; + let error; + let index = -1; + let count = actions.length; + action = action || actions.shift(); + do { + if (error = action.execute(action.state, action.delay)) { + break; + } + } while (++index < count && (action = actions.shift())); + this.active = false; + if (error) { + while (++index < count && (action = actions.shift())) { + action.unsubscribe(); + } + throw error; + } + } +} + +/***/ }), + +/***/ 77130: +/*!*********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js ***! + \*********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AsapAction: () => (/* binding */ AsapAction) +/* harmony export */ }); +/* harmony import */ var _util_Immediate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/Immediate */ 14642); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 65610); + + +class AsapAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction { + constructor(scheduler, work) { + super(scheduler, work); + this.scheduler = scheduler; + this.work = work; + } + requestAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0) { + return super.requestAsyncId(scheduler, id, delay); + } + scheduler.actions.push(this); + return scheduler.scheduled || (scheduler.scheduled = _util_Immediate__WEBPACK_IMPORTED_MODULE_1__.Immediate.setImmediate(scheduler.flush.bind(scheduler, null))); + } + recycleAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0 || delay === null && this.delay > 0) { + return super.recycleAsyncId(scheduler, id, delay); + } + if (scheduler.actions.length === 0) { + _util_Immediate__WEBPACK_IMPORTED_MODULE_1__.Immediate.clearImmediate(id); + scheduler.scheduled = undefined; + } + return undefined; + } +} + +/***/ }), + +/***/ 63263: +/*!************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js ***! + \************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AsapScheduler: () => (/* binding */ AsapScheduler) +/* harmony export */ }); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); + +class AsapScheduler extends _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler { + flush(action) { + this.active = true; + this.scheduled = undefined; + const { + actions + } = this; + let error; + let index = -1; + let count = actions.length; + action = action || actions.shift(); + do { + if (error = action.execute(action.state, action.delay)) { + break; + } + } while (++index < count && (action = actions.shift())); + this.active = false; + if (error) { + while (++index < count && (action = actions.shift())) { + action.unsubscribe(); + } + throw error; + } + } +} + +/***/ }), + +/***/ 65610: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js ***! \**********************************************************************/ @@ -19344,7 +20178,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AsyncAction: () => (/* binding */ AsyncAction) /* harmony export */ }); -/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Action */ 8674); +/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Action */ 38674); class AsyncAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action { constructor(scheduler, work) { @@ -19425,7 +20259,7 @@ class AsyncAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action { /***/ }), -/***/ 7203: +/***/ 57203: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js ***! \*************************************************************************/ @@ -19436,7 +20270,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AsyncScheduler: () => (/* binding */ AsyncScheduler) /* harmony export */ }); -/* harmony import */ var _Scheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Scheduler */ 7792); +/* harmony import */ var _Scheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Scheduler */ 11109); class AsyncScheduler extends _Scheduler__WEBPACK_IMPORTED_MODULE_0__.Scheduler { constructor(SchedulerAction, now = _Scheduler__WEBPACK_IMPORTED_MODULE_0__.Scheduler.now) { @@ -19485,7 +20319,7 @@ class AsyncScheduler extends _Scheduler__WEBPACK_IMPORTED_MODULE_0__.Scheduler { /***/ }), -/***/ 5586: +/***/ 75586: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js ***! \**********************************************************************/ @@ -19496,7 +20330,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QueueAction: () => (/* binding */ QueueAction) /* harmony export */ }); -/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 5610); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 65610); class QueueAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction { constructor(scheduler, work) { @@ -19526,7 +20360,7 @@ class QueueAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction /***/ }), -/***/ 4942: +/***/ 64942: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js ***! \*************************************************************************/ @@ -19537,13 +20371,76 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QueueScheduler: () => (/* binding */ QueueScheduler) /* harmony export */ }); -/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 7203); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); class QueueScheduler extends _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler {} /***/ }), -/***/ 6948: +/***/ 82727: +/*!*************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ animationFrame: () => (/* binding */ animationFrame), +/* harmony export */ animationFrameScheduler: () => (/* binding */ animationFrameScheduler) +/* harmony export */ }); +/* harmony import */ var _AnimationFrameAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnimationFrameAction */ 69922); +/* harmony import */ var _AnimationFrameScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AnimationFrameScheduler */ 83453); + + +const animationFrameScheduler = new _AnimationFrameScheduler__WEBPACK_IMPORTED_MODULE_0__.AnimationFrameScheduler(_AnimationFrameAction__WEBPACK_IMPORTED_MODULE_1__.AnimationFrameAction); +const animationFrame = animationFrameScheduler; + +/***/ }), + +/***/ 81151: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/asap.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ asap: () => (/* binding */ asap), +/* harmony export */ asapScheduler: () => (/* binding */ asapScheduler) +/* harmony export */ }); +/* harmony import */ var _AsapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AsapAction */ 77130); +/* harmony import */ var _AsapScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsapScheduler */ 63263); + + +const asapScheduler = new _AsapScheduler__WEBPACK_IMPORTED_MODULE_0__.AsapScheduler(_AsapAction__WEBPACK_IMPORTED_MODULE_1__.AsapAction); +const asap = asapScheduler; + +/***/ }), + +/***/ 61432: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/async.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ async: () => (/* binding */ async), +/* harmony export */ asyncScheduler: () => (/* binding */ asyncScheduler) +/* harmony export */ }); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AsyncAction */ 65610); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); + + +const asyncScheduler = new _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler(_AsyncAction__WEBPACK_IMPORTED_MODULE_1__.AsyncAction); +const async = asyncScheduler; + +/***/ }), + +/***/ 76948: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/queue.js ***! \****************************************************************/ @@ -19555,8 +20452,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ queue: () => (/* binding */ queue), /* harmony export */ queueScheduler: () => (/* binding */ queueScheduler) /* harmony export */ }); -/* harmony import */ var _QueueAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./QueueAction */ 5586); -/* harmony import */ var _QueueScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./QueueScheduler */ 4942); +/* harmony import */ var _QueueAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./QueueAction */ 75586); +/* harmony import */ var _QueueScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./QueueScheduler */ 64942); const queueScheduler = new _QueueScheduler__WEBPACK_IMPORTED_MODULE_0__.QueueScheduler(_QueueAction__WEBPACK_IMPORTED_MODULE_1__.QueueAction); @@ -19564,7 +20461,7 @@ const queue = queueScheduler; /***/ }), -/***/ 6603: +/***/ 86603: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/symbol/iterator.js ***! \****************************************************************/ @@ -19588,7 +20485,7 @@ const $$iterator = iterator; /***/ }), -/***/ 5129: +/***/ 65129: /*!******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/symbol/observable.js ***! \******************************************************************/ @@ -19603,7 +20500,7 @@ const observable = (() => typeof Symbol === 'function' && Symbol.observable || ' /***/ }), -/***/ 1999: +/***/ 51999: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/symbol/rxSubscriber.js ***! \********************************************************************/ @@ -19620,7 +20517,7 @@ const $$rxSubscriber = rxSubscriber; /***/ }), -/***/ 2081: +/***/ 72081: /*!*****************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/ArgumentOutOfRangeError.js ***! \*****************************************************************************/ @@ -19645,7 +20542,7 @@ const ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl; /***/ }), -/***/ 1742: +/***/ 51742: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/EmptyError.js ***! \****************************************************************/ @@ -19670,7 +20567,48 @@ const EmptyError = EmptyErrorImpl; /***/ }), -/***/ 6950: +/***/ 14642: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/Immediate.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ Immediate: () => (/* binding */ Immediate), +/* harmony export */ TestTools: () => (/* binding */ TestTools) +/* harmony export */ }); +let nextHandle = 1; +const RESOLVED = (() => Promise.resolve())(); +const activeHandles = {}; +function findAndClearHandle(handle) { + if (handle in activeHandles) { + delete activeHandles[handle]; + return true; + } + return false; +} +const Immediate = { + setImmediate(cb) { + const handle = nextHandle++; + activeHandles[handle] = true; + RESOLVED.then(() => findAndClearHandle(handle) && cb()); + return handle; + }, + clearImmediate(handle) { + findAndClearHandle(handle); + } +}; +const TestTools = { + pending() { + return Object.keys(activeHandles).length; + } +}; + +/***/ }), + +/***/ 66950: /*!*****************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/ObjectUnsubscribedError.js ***! \*****************************************************************************/ @@ -19695,7 +20633,7 @@ const ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl; /***/ }), -/***/ 9164: +/***/ 29164: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/UnsubscriptionError.js ***! \*************************************************************************/ @@ -19722,7 +20660,7 @@ const UnsubscriptionError = UnsubscriptionErrorImpl; /***/ }), -/***/ 3159: +/***/ 73159: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/canReportError.js ***! \********************************************************************/ @@ -19733,7 +20671,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ canReportError: () => (/* binding */ canReportError) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function canReportError(observer) { while (observer) { @@ -19755,7 +20693,7 @@ function canReportError(observer) { /***/ }), -/***/ 8722: +/***/ 98722: /*!*********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/hostReportError.js ***! \*********************************************************************/ @@ -19774,7 +20712,7 @@ function hostReportError(err) { /***/ }), -/***/ 6361: +/***/ 56361: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/identity.js ***! \**************************************************************/ @@ -19791,7 +20729,7 @@ function identity(x) { /***/ }), -/***/ 7264: +/***/ 97264: /*!*************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isArray.js ***! \*************************************************************/ @@ -19806,7 +20744,7 @@ const isArray = (() => Array.isArray || (x => x && typeof x.length === 'number') /***/ }), -/***/ 4361: +/***/ 24361: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isArrayLike.js ***! \*****************************************************************/ @@ -19821,7 +20759,7 @@ const isArrayLike = x => x && typeof x.length === 'number' && typeof x !== 'func /***/ }), -/***/ 5251: +/***/ 45251: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isFunction.js ***! \****************************************************************/ @@ -19838,7 +20776,7 @@ function isFunction(x) { /***/ }), -/***/ 9428: +/***/ 49428: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isInteropObservable.js ***! \*************************************************************************/ @@ -19849,7 +20787,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ isInteropObservable: () => (/* binding */ isInteropObservable) /* harmony export */ }); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 5129); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 65129); function isInteropObservable(input) { return input && typeof input[_symbol_observable__WEBPACK_IMPORTED_MODULE_0__.observable] === 'function'; @@ -19857,7 +20795,7 @@ function isInteropObservable(input) { /***/ }), -/***/ 5540: +/***/ 95540: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isIterable.js ***! \****************************************************************/ @@ -19868,7 +20806,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ isIterable: () => (/* binding */ isIterable) /* harmony export */ }); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 6603); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 86603); function isIterable(input) { return input && typeof input[_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__.iterator] === 'function'; @@ -19876,7 +20814,26 @@ function isIterable(input) { /***/ }), -/***/ 7560: +/***/ 20240: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/isNumeric.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ isNumeric: () => (/* binding */ isNumeric) +/* harmony export */ }); +/* harmony import */ var _isArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray */ 97264); + +function isNumeric(val) { + return !(0,_isArray__WEBPACK_IMPORTED_MODULE_0__.isArray)(val) && val - parseFloat(val) + 1 >= 0; +} + +/***/ }), + +/***/ 97560: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isObject.js ***! \**************************************************************/ @@ -19893,6 +20850,25 @@ function isObject(x) { /***/ }), +/***/ 72450: +/*!******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/isObservable.js ***! + \******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ isObservable: () => (/* binding */ isObservable) +/* harmony export */ }); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); + +function isObservable(obj) { + return !!obj && (obj instanceof _Observable__WEBPACK_IMPORTED_MODULE_0__.Observable || typeof obj.lift === 'function' && typeof obj.subscribe === 'function'); +} + +/***/ }), + /***/ 8290: /*!***************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isPromise.js ***! @@ -19910,7 +20886,7 @@ function isPromise(value) { /***/ }), -/***/ 9054: +/***/ 99054: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isScheduler.js ***! \*****************************************************************/ @@ -19942,7 +20918,7 @@ function noop() {} /***/ }), -/***/ 7734: +/***/ 27734: /*!**********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/pipe.js ***! \**********************************************************/ @@ -19954,7 +20930,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ pipe: () => (/* binding */ pipe), /* harmony export */ pipeFromArray: () => (/* binding */ pipeFromArray) /* harmony export */ }); -/* harmony import */ var _identity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity */ 6361); +/* harmony import */ var _identity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity */ 56361); function pipe(...fns) { return pipeFromArray(fns); @@ -19973,7 +20949,7 @@ function pipeFromArray(fns) { /***/ }), -/***/ 3787: +/***/ 63787: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeTo.js ***! \*****************************************************************/ @@ -19984,15 +20960,15 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ subscribeTo: () => (/* binding */ subscribeTo) /* harmony export */ }); -/* harmony import */ var _subscribeToArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./subscribeToArray */ 4491); -/* harmony import */ var _subscribeToPromise__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./subscribeToPromise */ 9757); -/* harmony import */ var _subscribeToIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./subscribeToIterable */ 8883); -/* harmony import */ var _subscribeToObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./subscribeToObservable */ 3746); -/* harmony import */ var _isArrayLike__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLike */ 4361); +/* harmony import */ var _subscribeToArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./subscribeToArray */ 24491); +/* harmony import */ var _subscribeToPromise__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./subscribeToPromise */ 29757); +/* harmony import */ var _subscribeToIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./subscribeToIterable */ 78883); +/* harmony import */ var _subscribeToObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./subscribeToObservable */ 93746); +/* harmony import */ var _isArrayLike__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLike */ 24361); /* harmony import */ var _isPromise__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isPromise */ 8290); -/* harmony import */ var _isObject__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./isObject */ 7560); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../symbol/iterator */ 6603); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 5129); +/* harmony import */ var _isObject__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./isObject */ 97560); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../symbol/iterator */ 86603); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 65129); @@ -20020,321 +20996,10753 @@ const subscribeTo = result => { /***/ }), -/***/ 4491: +/***/ 24491: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToArray.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToArray: () => (/* binding */ subscribeToArray) -/* harmony export */ }); -const subscribeToArray = array => subscriber => { - for (let i = 0, len = array.length; i < len && !subscriber.closed; i++) { - subscriber.next(array[i]); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToArray: () => (/* binding */ subscribeToArray) +/* harmony export */ }); +const subscribeToArray = array => subscriber => { + for (let i = 0, len = array.length; i < len && !subscriber.closed; i++) { + subscriber.next(array[i]); + } + subscriber.complete(); +}; + +/***/ }), + +/***/ 78883: +/*!*************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToIterable.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToIterable: () => (/* binding */ subscribeToIterable) +/* harmony export */ }); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 86603); + +const subscribeToIterable = iterable => subscriber => { + const iterator = iterable[_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__.iterator](); + do { + let item; + try { + item = iterator.next(); + } catch (err) { + subscriber.error(err); + return subscriber; + } + if (item.done) { + subscriber.complete(); + break; + } + subscriber.next(item.value); + if (subscriber.closed) { + break; + } + } while (true); + if (typeof iterator.return === 'function') { + subscriber.add(() => { + if (iterator.return) { + iterator.return(); + } + }); + } + return subscriber; +}; + +/***/ }), + +/***/ 93746: +/*!***************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToObservable.js ***! + \***************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToObservable: () => (/* binding */ subscribeToObservable) +/* harmony export */ }); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 65129); + +const subscribeToObservable = obj => subscriber => { + const obs = obj[_symbol_observable__WEBPACK_IMPORTED_MODULE_0__.observable](); + if (typeof obs.subscribe !== 'function') { + throw new TypeError('Provided object does not correctly implement Symbol.observable'); + } else { + return obs.subscribe(subscriber); + } +}; + +/***/ }), + +/***/ 29757: +/*!************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToPromise.js ***! + \************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToPromise: () => (/* binding */ subscribeToPromise) +/* harmony export */ }); +/* harmony import */ var _hostReportError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./hostReportError */ 98722); + +const subscribeToPromise = promise => subscriber => { + promise.then(value => { + if (!subscriber.closed) { + subscriber.next(value); + subscriber.complete(); + } + }, err => subscriber.error(err)).then(null, _hostReportError__WEBPACK_IMPORTED_MODULE_0__.hostReportError); + return subscriber; +}; + +/***/ }), + +/***/ 24660: +/*!***********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToResult.js ***! + \***********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToResult: () => (/* binding */ subscribeToResult) +/* harmony export */ }); +/* harmony import */ var _InnerSubscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../InnerSubscriber */ 16090); +/* harmony import */ var _subscribeTo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./subscribeTo */ 63787); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Observable */ 73064); + + + +function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, innerSubscriber = new _InnerSubscriber__WEBPACK_IMPORTED_MODULE_0__.InnerSubscriber(outerSubscriber, outerValue, outerIndex)) { + if (innerSubscriber.closed) { + return undefined; + } + if (result instanceof _Observable__WEBPACK_IMPORTED_MODULE_1__.Observable) { + return result.subscribe(innerSubscriber); + } + return (0,_subscribeTo__WEBPACK_IMPORTED_MODULE_2__.subscribeTo)(result)(innerSubscriber); +} + +/***/ }), + +/***/ 6920: +/*!******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/toSubscriber.js ***! + \******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ toSubscriber: () => (/* binding */ toSubscriber) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../symbol/rxSubscriber */ 51999); +/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Observer */ 16195); + + + +function toSubscriber(nextOrObserver, error, complete) { + if (nextOrObserver) { + if (nextOrObserver instanceof _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber) { + return nextOrObserver; + } + if (nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber]) { + return nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber](); + } + } + if (!nextOrObserver && !error && !complete) { + return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(_Observer__WEBPACK_IMPORTED_MODULE_2__.empty); + } + return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(nextOrObserver, error, complete); +} + +/***/ }), + +/***/ 99210: +/*!******************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/native.js ***! + \******************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + randomUUID +}); + +/***/ }), + +/***/ 39772: +/*!*****************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/regex.js ***! + \*****************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); + +/***/ }), + +/***/ 47948: +/*!***************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/rng.js ***! + \***************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* binding */ rng) +/* harmony export */ }); +// Unique ID creation requires a high quality random # generator. In the browser we therefore +// require the crypto API and do not support built-in fallback to lower quality random number +// generators (like Math.random()). +let getRandomValues; +const rnds8 = new Uint8Array(16); +function rng() { + // lazy load so that environments that need to polyfill have a chance to do so + if (!getRandomValues) { + // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. + getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto); + if (!getRandomValues) { + throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); + } + } + return getRandomValues(rnds8); +} + +/***/ }), + +/***/ 10564: +/*!*********************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/stringify.js ***! + \*********************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), +/* harmony export */ unsafeStringify: () => (/* binding */ unsafeStringify) +/* harmony export */ }); +/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ 69359); + +/** + * Convert array of 16 byte values to UUID string format of the form: + * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + */ + +const byteToHex = []; +for (let i = 0; i < 256; ++i) { + byteToHex.push((i + 0x100).toString(16).slice(1)); +} +function unsafeStringify(arr, offset = 0) { + // Note: Be careful editing this code! It's been tuned for performance + // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 + return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]; +} +function stringify(arr, offset = 0) { + const uuid = unsafeStringify(arr, offset); // Consistency check for valid UUID. If this throws, it's likely due to one + // of the following: + // - One or more input array values don't map to a hex octet (leading to + // "undefined" in the uuid) + // - Invalid input values for the RFC `version` or `variant` fields + + if (!(0,_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) { + throw TypeError('Stringified UUID is invalid'); + } + return uuid; +} +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (stringify); + +/***/ }), + +/***/ 94289: +/*!**************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/v4.js ***! + \**************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _native_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./native.js */ 99210); +/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rng.js */ 47948); +/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./stringify.js */ 10564); + + + +function v4(options, buf, offset) { + if (_native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID && !buf && !options) { + return _native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID(); + } + options = options || {}; + const rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_1__["default"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + + rnds[6] = rnds[6] & 0x0f | 0x40; + rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided + + if (buf) { + offset = offset || 0; + for (let i = 0; i < 16; ++i) { + buf[offset + i] = rnds[i]; + } + return buf; + } + return (0,_stringify_js__WEBPACK_IMPORTED_MODULE_2__.unsafeStringify)(rnds); +} +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (v4); + +/***/ }), + +/***/ 69359: +/*!********************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/validate.js ***! + \********************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ 39772); + +function validate(uuid) { + return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__["default"].test(uuid); +} +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (validate); + +/***/ }), + +/***/ 93170: +/*!*****************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/a11y.mjs ***! + \*****************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ A11yModule: () => (/* binding */ A11yModule), +/* harmony export */ ActiveDescendantKeyManager: () => (/* binding */ ActiveDescendantKeyManager), +/* harmony export */ AriaDescriber: () => (/* binding */ AriaDescriber), +/* harmony export */ CDK_DESCRIBEDBY_HOST_ATTRIBUTE: () => (/* binding */ CDK_DESCRIBEDBY_HOST_ATTRIBUTE), +/* harmony export */ CDK_DESCRIBEDBY_ID_PREFIX: () => (/* binding */ CDK_DESCRIBEDBY_ID_PREFIX), +/* harmony export */ CdkAriaLive: () => (/* binding */ CdkAriaLive), +/* harmony export */ CdkMonitorFocus: () => (/* binding */ CdkMonitorFocus), +/* harmony export */ CdkTrapFocus: () => (/* binding */ CdkTrapFocus), +/* harmony export */ ConfigurableFocusTrap: () => (/* binding */ ConfigurableFocusTrap), +/* harmony export */ ConfigurableFocusTrapFactory: () => (/* binding */ ConfigurableFocusTrapFactory), +/* harmony export */ EventListenerFocusTrapInertStrategy: () => (/* binding */ EventListenerFocusTrapInertStrategy), +/* harmony export */ FOCUS_MONITOR_DEFAULT_OPTIONS: () => (/* binding */ FOCUS_MONITOR_DEFAULT_OPTIONS), +/* harmony export */ FOCUS_TRAP_INERT_STRATEGY: () => (/* binding */ FOCUS_TRAP_INERT_STRATEGY), +/* harmony export */ FocusKeyManager: () => (/* binding */ FocusKeyManager), +/* harmony export */ FocusMonitor: () => (/* binding */ FocusMonitor), +/* harmony export */ FocusTrap: () => (/* binding */ FocusTrap), +/* harmony export */ FocusTrapFactory: () => (/* binding */ FocusTrapFactory), +/* harmony export */ HighContrastModeDetector: () => (/* binding */ HighContrastModeDetector), +/* harmony export */ INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS: () => (/* binding */ INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS), +/* harmony export */ INPUT_MODALITY_DETECTOR_OPTIONS: () => (/* binding */ INPUT_MODALITY_DETECTOR_OPTIONS), +/* harmony export */ InputModalityDetector: () => (/* binding */ InputModalityDetector), +/* harmony export */ InteractivityChecker: () => (/* binding */ InteractivityChecker), +/* harmony export */ IsFocusableConfig: () => (/* binding */ IsFocusableConfig), +/* harmony export */ LIVE_ANNOUNCER_DEFAULT_OPTIONS: () => (/* binding */ LIVE_ANNOUNCER_DEFAULT_OPTIONS), +/* harmony export */ LIVE_ANNOUNCER_ELEMENT_TOKEN: () => (/* binding */ LIVE_ANNOUNCER_ELEMENT_TOKEN), +/* harmony export */ LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY: () => (/* binding */ LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY), +/* harmony export */ ListKeyManager: () => (/* binding */ ListKeyManager), +/* harmony export */ LiveAnnouncer: () => (/* binding */ LiveAnnouncer), +/* harmony export */ MESSAGES_CONTAINER_ID: () => (/* binding */ MESSAGES_CONTAINER_ID), +/* harmony export */ addAriaReferencedId: () => (/* binding */ addAriaReferencedId), +/* harmony export */ getAriaReferenceIds: () => (/* binding */ getAriaReferenceIds), +/* harmony export */ isFakeMousedownFromScreenReader: () => (/* binding */ isFakeMousedownFromScreenReader), +/* harmony export */ isFakeTouchstartFromScreenReader: () => (/* binding */ isFakeTouchstartFromScreenReader), +/* harmony export */ removeAriaReferencedId: () => (/* binding */ removeAriaReferencedId) +/* harmony export */ }); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs */ 70462); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! rxjs */ 9681); +/* harmony import */ var _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/cdk/keycodes */ 30554); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs/operators */ 15746); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 95933); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 85046); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 46939); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs/operators */ 51063); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs/operators */ 45083); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @angular/cdk/observers */ 66787); +/* harmony import */ var _angular_cdk_layout__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! @angular/cdk/layout */ 39743); + + + + + + + + + + + + + +/** IDs are delimited by an empty space, as per the spec. */ +const ID_DELIMITER = ' '; +/** + * Adds the given ID to the specified ARIA attribute on an element. + * Used for attributes such as aria-labelledby, aria-owns, etc. + */ +function addAriaReferencedId(el, attr, id) { + const ids = getAriaReferenceIds(el, attr); + if (ids.some(existingId => existingId.trim() == id.trim())) { + return; + } + ids.push(id.trim()); + el.setAttribute(attr, ids.join(ID_DELIMITER)); +} +/** + * Removes the given ID from the specified ARIA attribute on an element. + * Used for attributes such as aria-labelledby, aria-owns, etc. + */ +function removeAriaReferencedId(el, attr, id) { + const ids = getAriaReferenceIds(el, attr); + const filteredIds = ids.filter(val => val != id.trim()); + if (filteredIds.length) { + el.setAttribute(attr, filteredIds.join(ID_DELIMITER)); + } else { + el.removeAttribute(attr); + } +} +/** + * Gets the list of IDs referenced by the given ARIA attribute on an element. + * Used for attributes such as aria-labelledby, aria-owns, etc. + */ +function getAriaReferenceIds(el, attr) { + // Get string array of all individual ids (whitespace delimited) in the attribute value + return (el.getAttribute(attr) || '').match(/\S+/g) || []; +} + +/** + * ID used for the body container where all messages are appended. + * @deprecated No longer being used. To be removed. + * @breaking-change 14.0.0 + */ +const MESSAGES_CONTAINER_ID = 'cdk-describedby-message-container'; +/** + * ID prefix used for each created message element. + * @deprecated To be turned into a private variable. + * @breaking-change 14.0.0 + */ +const CDK_DESCRIBEDBY_ID_PREFIX = 'cdk-describedby-message'; +/** + * Attribute given to each host element that is described by a message element. + * @deprecated To be turned into a private variable. + * @breaking-change 14.0.0 + */ +const CDK_DESCRIBEDBY_HOST_ATTRIBUTE = 'cdk-describedby-host'; +/** Global incremental identifier for each registered message element. */ +let nextId = 0; +/** + * Utility that creates visually hidden elements with a message content. Useful for elements that + * want to use aria-describedby to further describe themselves without adding additional visual + * content. + */ +class AriaDescriber { + constructor(_document, + /** + * @deprecated To be turned into a required parameter. + * @breaking-change 14.0.0 + */ + _platform) { + this._platform = _platform; + /** Map of all registered message elements that have been placed into the document. */ + this._messageRegistry = new Map(); + /** Container for all registered messages. */ + this._messagesContainer = null; + /** Unique ID for the service. */ + this._id = `${nextId++}`; + this._document = _document; + this._id = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.APP_ID) + '-' + nextId++; + } + describe(hostElement, message, role) { + if (!this._canBeDescribed(hostElement, message)) { + return; + } + const key = getKey(message, role); + if (typeof message !== 'string') { + // We need to ensure that the element has an ID. + setMessageId(message, this._id); + this._messageRegistry.set(key, { + messageElement: message, + referenceCount: 0 + }); + } else if (!this._messageRegistry.has(key)) { + this._createMessageElement(message, role); + } + if (!this._isElementDescribedByMessage(hostElement, key)) { + this._addMessageReference(hostElement, key); + } + } + removeDescription(hostElement, message, role) { + if (!message || !this._isElementNode(hostElement)) { + return; + } + const key = getKey(message, role); + if (this._isElementDescribedByMessage(hostElement, key)) { + this._removeMessageReference(hostElement, key); + } + // If the message is a string, it means that it's one that we created for the + // consumer so we can remove it safely, otherwise we should leave it in place. + if (typeof message === 'string') { + const registeredMessage = this._messageRegistry.get(key); + if (registeredMessage && registeredMessage.referenceCount === 0) { + this._deleteMessageElement(key); + } + } + if (this._messagesContainer?.childNodes.length === 0) { + this._messagesContainer.remove(); + this._messagesContainer = null; + } + } + /** Unregisters all created message elements and removes the message container. */ + ngOnDestroy() { + const describedElements = this._document.querySelectorAll(`[${CDK_DESCRIBEDBY_HOST_ATTRIBUTE}="${this._id}"]`); + for (let i = 0; i < describedElements.length; i++) { + this._removeCdkDescribedByReferenceIds(describedElements[i]); + describedElements[i].removeAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE); + } + this._messagesContainer?.remove(); + this._messagesContainer = null; + this._messageRegistry.clear(); + } + /** + * Creates a new element in the visually hidden message container element with the message + * as its content and adds it to the message registry. + */ + _createMessageElement(message, role) { + const messageElement = this._document.createElement('div'); + setMessageId(messageElement, this._id); + messageElement.textContent = message; + if (role) { + messageElement.setAttribute('role', role); + } + this._createMessagesContainer(); + this._messagesContainer.appendChild(messageElement); + this._messageRegistry.set(getKey(message, role), { + messageElement, + referenceCount: 0 + }); + } + /** Deletes the message element from the global messages container. */ + _deleteMessageElement(key) { + this._messageRegistry.get(key)?.messageElement?.remove(); + this._messageRegistry.delete(key); + } + /** Creates the global container for all aria-describedby messages. */ + _createMessagesContainer() { + if (this._messagesContainer) { + return; + } + const containerClassName = 'cdk-describedby-message-container'; + const serverContainers = this._document.querySelectorAll(`.${containerClassName}[platform="server"]`); + for (let i = 0; i < serverContainers.length; i++) { + // When going from the server to the client, we may end up in a situation where there's + // already a container on the page, but we don't have a reference to it. Clear the + // old container so we don't get duplicates. Doing this, instead of emptying the previous + // container, should be slightly faster. + serverContainers[i].remove(); + } + const messagesContainer = this._document.createElement('div'); + // We add `visibility: hidden` in order to prevent text in this container from + // being searchable by the browser's Ctrl + F functionality. + // Screen-readers will still read the description for elements with aria-describedby even + // when the description element is not visible. + messagesContainer.style.visibility = 'hidden'; + // Even though we use `visibility: hidden`, we still apply `cdk-visually-hidden` so that + // the description element doesn't impact page layout. + messagesContainer.classList.add(containerClassName); + messagesContainer.classList.add('cdk-visually-hidden'); + // @breaking-change 14.0.0 Remove null check for `_platform`. + if (this._platform && !this._platform.isBrowser) { + messagesContainer.setAttribute('platform', 'server'); + } + this._document.body.appendChild(messagesContainer); + this._messagesContainer = messagesContainer; + } + /** Removes all cdk-describedby messages that are hosted through the element. */ + _removeCdkDescribedByReferenceIds(element) { + // Remove all aria-describedby reference IDs that are prefixed by CDK_DESCRIBEDBY_ID_PREFIX + const originalReferenceIds = getAriaReferenceIds(element, 'aria-describedby').filter(id => id.indexOf(CDK_DESCRIBEDBY_ID_PREFIX) != 0); + element.setAttribute('aria-describedby', originalReferenceIds.join(' ')); + } + /** + * Adds a message reference to the element using aria-describedby and increments the registered + * message's reference count. + */ + _addMessageReference(element, key) { + const registeredMessage = this._messageRegistry.get(key); + // Add the aria-describedby reference and set the + // describedby_host attribute to mark the element. + addAriaReferencedId(element, 'aria-describedby', registeredMessage.messageElement.id); + element.setAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE, this._id); + registeredMessage.referenceCount++; + } + /** + * Removes a message reference from the element using aria-describedby + * and decrements the registered message's reference count. + */ + _removeMessageReference(element, key) { + const registeredMessage = this._messageRegistry.get(key); + registeredMessage.referenceCount--; + removeAriaReferencedId(element, 'aria-describedby', registeredMessage.messageElement.id); + element.removeAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE); + } + /** Returns true if the element has been described by the provided message ID. */ + _isElementDescribedByMessage(element, key) { + const referenceIds = getAriaReferenceIds(element, 'aria-describedby'); + const registeredMessage = this._messageRegistry.get(key); + const messageId = registeredMessage && registeredMessage.messageElement.id; + return !!messageId && referenceIds.indexOf(messageId) != -1; + } + /** Determines whether a message can be described on a particular element. */ + _canBeDescribed(element, message) { + if (!this._isElementNode(element)) { + return false; + } + if (message && typeof message === 'object') { + // We'd have to make some assumptions about the description element's text, if the consumer + // passed in an element. Assume that if an element is passed in, the consumer has verified + // that it can be used as a description. + return true; + } + const trimmedMessage = message == null ? '' : `${message}`.trim(); + const ariaLabel = element.getAttribute('aria-label'); + // We shouldn't set descriptions if they're exactly the same as the `aria-label` of the + // element, because screen readers will end up reading out the same text twice in a row. + return trimmedMessage ? !ariaLabel || ariaLabel.trim() !== trimmedMessage : false; + } + /** Checks whether a node is an Element node. */ + _isElementNode(element) { + return element.nodeType === this._document.ELEMENT_NODE; + } + static #_ = this.ɵfac = function AriaDescriber_Factory(t) { + return new (t || AriaDescriber)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: AriaDescriber, + factory: AriaDescriber.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](AriaDescriber, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }]; + }, null); +})(); +/** Gets a key that can be used to look messages up in the registry. */ +function getKey(message, role) { + return typeof message === 'string' ? `${role || ''}/${message}` : message; +} +/** Assigns a unique ID to an element, if it doesn't have one already. */ +function setMessageId(element, serviceId) { + if (!element.id) { + element.id = `${CDK_DESCRIBEDBY_ID_PREFIX}-${serviceId}-${nextId++}`; + } +} + +/** + * This class manages keyboard events for selectable lists. If you pass it a query list + * of items, it will set the active item correctly when arrow events occur. + */ +class ListKeyManager { + constructor(_items) { + this._items = _items; + this._activeItemIndex = -1; + this._activeItem = null; + this._wrap = false; + this._letterKeyStream = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + this._typeaheadSubscription = rxjs__WEBPACK_IMPORTED_MODULE_4__.Subscription.EMPTY; + this._vertical = true; + this._allowedModifierKeys = []; + this._homeAndEnd = false; + this._pageUpAndDown = { + enabled: false, + delta: 10 + }; + /** + * Predicate function that can be used to check whether an item should be skipped + * by the key manager. By default, disabled items are skipped. + */ + this._skipPredicateFn = item => item.disabled; + // Buffer for the letters that the user has pressed when the typeahead option is turned on. + this._pressedLetters = []; + /** + * Stream that emits any time the TAB key is pressed, so components can react + * when focus is shifted off of the list. + */ + this.tabOut = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + /** Stream that emits whenever the active item of the list manager changes. */ + this.change = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + // We allow for the items to be an array because, in some cases, the consumer may + // not have access to a QueryList of the items they want to manage (e.g. when the + // items aren't being collected via `ViewChildren` or `ContentChildren`). + if (_items instanceof _angular_core__WEBPACK_IMPORTED_MODULE_0__.QueryList) { + this._itemChangesSubscription = _items.changes.subscribe(newItems => { + if (this._activeItem) { + const itemArray = newItems.toArray(); + const newIndex = itemArray.indexOf(this._activeItem); + if (newIndex > -1 && newIndex !== this._activeItemIndex) { + this._activeItemIndex = newIndex; + } + } + }); + } + } + /** + * Sets the predicate function that determines which items should be skipped by the + * list key manager. + * @param predicate Function that determines whether the given item should be skipped. + */ + skipPredicate(predicate) { + this._skipPredicateFn = predicate; + return this; + } + /** + * Configures wrapping mode, which determines whether the active item will wrap to + * the other end of list when there are no more items in the given direction. + * @param shouldWrap Whether the list should wrap when reaching the end. + */ + withWrap(shouldWrap = true) { + this._wrap = shouldWrap; + return this; + } + /** + * Configures whether the key manager should be able to move the selection vertically. + * @param enabled Whether vertical selection should be enabled. + */ + withVerticalOrientation(enabled = true) { + this._vertical = enabled; + return this; + } + /** + * Configures the key manager to move the selection horizontally. + * Passing in `null` will disable horizontal movement. + * @param direction Direction in which the selection can be moved. + */ + withHorizontalOrientation(direction) { + this._horizontal = direction; + return this; + } + /** + * Modifier keys which are allowed to be held down and whose default actions will be prevented + * as the user is pressing the arrow keys. Defaults to not allowing any modifier keys. + */ + withAllowedModifierKeys(keys) { + this._allowedModifierKeys = keys; + return this; + } + /** + * Turns on typeahead mode which allows users to set the active item by typing. + * @param debounceInterval Time to wait after the last keystroke before setting the active item. + */ + withTypeAhead(debounceInterval = 200) { + if ((typeof ngDevMode === 'undefined' || ngDevMode) && this._items.length && this._items.some(item => typeof item.getLabel !== 'function')) { + throw Error('ListKeyManager items in typeahead mode must implement the `getLabel` method.'); + } + this._typeaheadSubscription.unsubscribe(); + // Debounce the presses of non-navigational keys, collect the ones that correspond to letters + // and convert those letters back into a string. Afterwards find the first item that starts + // with that string and select it. + this._typeaheadSubscription = this._letterKeyStream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.tap)(letter => this._pressedLetters.push(letter)), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.debounceTime)(debounceInterval), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.filter)(() => this._pressedLetters.length > 0), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_8__.map)(() => this._pressedLetters.join(''))).subscribe(inputString => { + const items = this._getItemsArray(); + // Start at 1 because we want to start searching at the item immediately + // following the current active item. + for (let i = 1; i < items.length + 1; i++) { + const index = (this._activeItemIndex + i) % items.length; + const item = items[index]; + if (!this._skipPredicateFn(item) && item.getLabel().toUpperCase().trim().indexOf(inputString) === 0) { + this.setActiveItem(index); + break; + } + } + this._pressedLetters = []; + }); + return this; + } + /** Cancels the current typeahead sequence. */ + cancelTypeahead() { + this._pressedLetters = []; + return this; + } + /** + * Configures the key manager to activate the first and last items + * respectively when the Home or End key is pressed. + * @param enabled Whether pressing the Home or End key activates the first/last item. + */ + withHomeAndEnd(enabled = true) { + this._homeAndEnd = enabled; + return this; + } + /** + * Configures the key manager to activate every 10th, configured or first/last element in up/down direction + * respectively when the Page-Up or Page-Down key is pressed. + * @param enabled Whether pressing the Page-Up or Page-Down key activates the first/last item. + * @param delta Whether pressing the Home or End key activates the first/last item. + */ + withPageUpDown(enabled = true, delta = 10) { + this._pageUpAndDown = { + enabled, + delta + }; + return this; + } + setActiveItem(item) { + const previousActiveItem = this._activeItem; + this.updateActiveItem(item); + if (this._activeItem !== previousActiveItem) { + this.change.next(this._activeItemIndex); + } + } + /** + * Sets the active item depending on the key event passed in. + * @param event Keyboard event to be used for determining which element should be active. + */ + onKeydown(event) { + const keyCode = event.keyCode; + const modifiers = ['altKey', 'ctrlKey', 'metaKey', 'shiftKey']; + const isModifierAllowed = modifiers.every(modifier => { + return !event[modifier] || this._allowedModifierKeys.indexOf(modifier) > -1; + }); + switch (keyCode) { + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.TAB: + this.tabOut.next(); + return; + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.DOWN_ARROW: + if (this._vertical && isModifierAllowed) { + this.setNextItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.UP_ARROW: + if (this._vertical && isModifierAllowed) { + this.setPreviousItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.RIGHT_ARROW: + if (this._horizontal && isModifierAllowed) { + this._horizontal === 'rtl' ? this.setPreviousItemActive() : this.setNextItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.LEFT_ARROW: + if (this._horizontal && isModifierAllowed) { + this._horizontal === 'rtl' ? this.setNextItemActive() : this.setPreviousItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.HOME: + if (this._homeAndEnd && isModifierAllowed) { + this.setFirstItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.END: + if (this._homeAndEnd && isModifierAllowed) { + this.setLastItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.PAGE_UP: + if (this._pageUpAndDown.enabled && isModifierAllowed) { + const targetIndex = this._activeItemIndex - this._pageUpAndDown.delta; + this._setActiveItemByIndex(targetIndex > 0 ? targetIndex : 0, 1); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.PAGE_DOWN: + if (this._pageUpAndDown.enabled && isModifierAllowed) { + const targetIndex = this._activeItemIndex + this._pageUpAndDown.delta; + const itemsLength = this._getItemsArray().length; + this._setActiveItemByIndex(targetIndex < itemsLength ? targetIndex : itemsLength - 1, -1); + break; + } else { + return; + } + default: + if (isModifierAllowed || (0,_angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.hasModifierKey)(event, 'shiftKey')) { + // Attempt to use the `event.key` which also maps it to the user's keyboard language, + // otherwise fall back to resolving alphanumeric characters via the keyCode. + if (event.key && event.key.length === 1) { + this._letterKeyStream.next(event.key.toLocaleUpperCase()); + } else if (keyCode >= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.A && keyCode <= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.Z || keyCode >= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.ZERO && keyCode <= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.NINE) { + this._letterKeyStream.next(String.fromCharCode(keyCode)); + } + } + // Note that we return here, in order to avoid preventing + // the default action of non-navigational keys. + return; + } + this._pressedLetters = []; + event.preventDefault(); + } + /** Index of the currently active item. */ + get activeItemIndex() { + return this._activeItemIndex; + } + /** The active item. */ + get activeItem() { + return this._activeItem; + } + /** Gets whether the user is currently typing into the manager using the typeahead feature. */ + isTyping() { + return this._pressedLetters.length > 0; + } + /** Sets the active item to the first enabled item in the list. */ + setFirstItemActive() { + this._setActiveItemByIndex(0, 1); + } + /** Sets the active item to the last enabled item in the list. */ + setLastItemActive() { + this._setActiveItemByIndex(this._items.length - 1, -1); + } + /** Sets the active item to the next enabled item in the list. */ + setNextItemActive() { + this._activeItemIndex < 0 ? this.setFirstItemActive() : this._setActiveItemByDelta(1); + } + /** Sets the active item to a previous enabled item in the list. */ + setPreviousItemActive() { + this._activeItemIndex < 0 && this._wrap ? this.setLastItemActive() : this._setActiveItemByDelta(-1); + } + updateActiveItem(item) { + const itemArray = this._getItemsArray(); + const index = typeof item === 'number' ? item : itemArray.indexOf(item); + const activeItem = itemArray[index]; + // Explicitly check for `null` and `undefined` because other falsy values are valid. + this._activeItem = activeItem == null ? null : activeItem; + this._activeItemIndex = index; + } + /** Cleans up the key manager. */ + destroy() { + this._typeaheadSubscription.unsubscribe(); + this._itemChangesSubscription?.unsubscribe(); + this._letterKeyStream.complete(); + this.tabOut.complete(); + this.change.complete(); + this._pressedLetters = []; + } + /** + * This method sets the active item, given a list of items and the delta between the + * currently active item and the new active item. It will calculate differently + * depending on whether wrap mode is turned on. + */ + _setActiveItemByDelta(delta) { + this._wrap ? this._setActiveInWrapMode(delta) : this._setActiveInDefaultMode(delta); + } + /** + * Sets the active item properly given "wrap" mode. In other words, it will continue to move + * down the list until it finds an item that is not disabled, and it will wrap if it + * encounters either end of the list. + */ + _setActiveInWrapMode(delta) { + const items = this._getItemsArray(); + for (let i = 1; i <= items.length; i++) { + const index = (this._activeItemIndex + delta * i + items.length) % items.length; + const item = items[index]; + if (!this._skipPredicateFn(item)) { + this.setActiveItem(index); + return; + } + } + } + /** + * Sets the active item properly given the default mode. In other words, it will + * continue to move down the list until it finds an item that is not disabled. If + * it encounters either end of the list, it will stop and not wrap. + */ + _setActiveInDefaultMode(delta) { + this._setActiveItemByIndex(this._activeItemIndex + delta, delta); + } + /** + * Sets the active item to the first enabled item starting at the index specified. If the + * item is disabled, it will move in the fallbackDelta direction until it either + * finds an enabled item or encounters the end of the list. + */ + _setActiveItemByIndex(index, fallbackDelta) { + const items = this._getItemsArray(); + if (!items[index]) { + return; + } + while (this._skipPredicateFn(items[index])) { + index += fallbackDelta; + if (!items[index]) { + return; + } + } + this.setActiveItem(index); + } + /** Returns the items as an array. */ + _getItemsArray() { + return this._items instanceof _angular_core__WEBPACK_IMPORTED_MODULE_0__.QueryList ? this._items.toArray() : this._items; + } +} +class ActiveDescendantKeyManager extends ListKeyManager { + setActiveItem(index) { + if (this.activeItem) { + this.activeItem.setInactiveStyles(); + } + super.setActiveItem(index); + if (this.activeItem) { + this.activeItem.setActiveStyles(); + } + } +} +class FocusKeyManager extends ListKeyManager { + constructor() { + super(...arguments); + this._origin = 'program'; + } + /** + * Sets the focus origin that will be passed in to the items for any subsequent `focus` calls. + * @param origin Focus origin to be used when focusing items. + */ + setFocusOrigin(origin) { + this._origin = origin; + return this; + } + setActiveItem(item) { + super.setActiveItem(item); + if (this.activeItem) { + this.activeItem.focus(this._origin); + } + } +} + +/** + * Configuration for the isFocusable method. + */ +class IsFocusableConfig { + constructor() { + /** + * Whether to count an element as focusable even if it is not currently visible. + */ + this.ignoreVisibility = false; + } +} +// The InteractivityChecker leans heavily on the ally.js accessibility utilities. +// Methods like `isTabbable` are only covering specific edge-cases for the browsers which are +// supported. +/** + * Utility for checking the interactivity of an element, such as whether it is focusable or + * tabbable. + */ +class InteractivityChecker { + constructor(_platform) { + this._platform = _platform; + } + /** + * Gets whether an element is disabled. + * + * @param element Element to be checked. + * @returns Whether the element is disabled. + */ + isDisabled(element) { + // This does not capture some cases, such as a non-form control with a disabled attribute or + // a form control inside of a disabled form, but should capture the most common cases. + return element.hasAttribute('disabled'); + } + /** + * Gets whether an element is visible for the purposes of interactivity. + * + * This will capture states like `display: none` and `visibility: hidden`, but not things like + * being clipped by an `overflow: hidden` parent or being outside the viewport. + * + * @returns Whether the element is visible. + */ + isVisible(element) { + return hasGeometry(element) && getComputedStyle(element).visibility === 'visible'; + } + /** + * Gets whether an element can be reached via Tab key. + * Assumes that the element has already been checked with isFocusable. + * + * @param element Element to be checked. + * @returns Whether the element is tabbable. + */ + isTabbable(element) { + // Nothing is tabbable on the server 😎 + if (!this._platform.isBrowser) { + return false; + } + const frameElement = getFrameElement(getWindow(element)); + if (frameElement) { + // Frame elements inherit their tabindex onto all child elements. + if (getTabIndexValue(frameElement) === -1) { + return false; + } + // Browsers disable tabbing to an element inside of an invisible frame. + if (!this.isVisible(frameElement)) { + return false; + } + } + let nodeName = element.nodeName.toLowerCase(); + let tabIndexValue = getTabIndexValue(element); + if (element.hasAttribute('contenteditable')) { + return tabIndexValue !== -1; + } + if (nodeName === 'iframe' || nodeName === 'object') { + // The frame or object's content may be tabbable depending on the content, but it's + // not possibly to reliably detect the content of the frames. We always consider such + // elements as non-tabbable. + return false; + } + // In iOS, the browser only considers some specific elements as tabbable. + if (this._platform.WEBKIT && this._platform.IOS && !isPotentiallyTabbableIOS(element)) { + return false; + } + if (nodeName === 'audio') { + // Audio elements without controls enabled are never tabbable, regardless + // of the tabindex attribute explicitly being set. + if (!element.hasAttribute('controls')) { + return false; + } + // Audio elements with controls are by default tabbable unless the + // tabindex attribute is set to `-1` explicitly. + return tabIndexValue !== -1; + } + if (nodeName === 'video') { + // For all video elements, if the tabindex attribute is set to `-1`, the video + // is not tabbable. Note: We cannot rely on the default `HTMLElement.tabIndex` + // property as that one is set to `-1` in Chrome, Edge and Safari v13.1. The + // tabindex attribute is the source of truth here. + if (tabIndexValue === -1) { + return false; + } + // If the tabindex is explicitly set, and not `-1` (as per check before), the + // video element is always tabbable (regardless of whether it has controls or not). + if (tabIndexValue !== null) { + return true; + } + // Otherwise (when no explicit tabindex is set), a video is only tabbable if it + // has controls enabled. Firefox is special as videos are always tabbable regardless + // of whether there are controls or not. + return this._platform.FIREFOX || element.hasAttribute('controls'); + } + return element.tabIndex >= 0; + } + /** + * Gets whether an element can be focused by the user. + * + * @param element Element to be checked. + * @param config The config object with options to customize this method's behavior + * @returns Whether the element is focusable. + */ + isFocusable(element, config) { + // Perform checks in order of left to most expensive. + // Again, naive approach that does not capture many edge cases and browser quirks. + return isPotentiallyFocusable(element) && !this.isDisabled(element) && (config?.ignoreVisibility || this.isVisible(element)); + } + static #_ = this.ɵfac = function InteractivityChecker_Factory(t) { + return new (t || InteractivityChecker)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: InteractivityChecker, + factory: InteractivityChecker.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](InteractivityChecker, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }]; + }, null); +})(); +/** + * Returns the frame element from a window object. Since browsers like MS Edge throw errors if + * the frameElement property is being accessed from a different host address, this property + * should be accessed carefully. + */ +function getFrameElement(window) { + try { + return window.frameElement; + } catch { + return null; + } +} +/** Checks whether the specified element has any geometry / rectangles. */ +function hasGeometry(element) { + // Use logic from jQuery to check for an invisible element. + // See https://github.com/jquery/jquery/blob/master/src/css/hiddenVisibleSelectors.js#L12 + return !!(element.offsetWidth || element.offsetHeight || typeof element.getClientRects === 'function' && element.getClientRects().length); +} +/** Gets whether an element's */ +function isNativeFormElement(element) { + let nodeName = element.nodeName.toLowerCase(); + return nodeName === 'input' || nodeName === 'select' || nodeName === 'button' || nodeName === 'textarea'; +} +/** Gets whether an element is an ``. */ +function isHiddenInput(element) { + return isInputElement(element) && element.type == 'hidden'; +} +/** Gets whether an element is an anchor that has an href attribute. */ +function isAnchorWithHref(element) { + return isAnchorElement(element) && element.hasAttribute('href'); +} +/** Gets whether an element is an input element. */ +function isInputElement(element) { + return element.nodeName.toLowerCase() == 'input'; +} +/** Gets whether an element is an anchor element. */ +function isAnchorElement(element) { + return element.nodeName.toLowerCase() == 'a'; +} +/** Gets whether an element has a valid tabindex. */ +function hasValidTabIndex(element) { + if (!element.hasAttribute('tabindex') || element.tabIndex === undefined) { + return false; + } + let tabIndex = element.getAttribute('tabindex'); + return !!(tabIndex && !isNaN(parseInt(tabIndex, 10))); +} +/** + * Returns the parsed tabindex from the element attributes instead of returning the + * evaluated tabindex from the browsers defaults. + */ +function getTabIndexValue(element) { + if (!hasValidTabIndex(element)) { + return null; + } + // See browser issue in Gecko https://bugzilla.mozilla.org/show_bug.cgi?id=1128054 + const tabIndex = parseInt(element.getAttribute('tabindex') || '', 10); + return isNaN(tabIndex) ? -1 : tabIndex; +} +/** Checks whether the specified element is potentially tabbable on iOS */ +function isPotentiallyTabbableIOS(element) { + let nodeName = element.nodeName.toLowerCase(); + let inputType = nodeName === 'input' && element.type; + return inputType === 'text' || inputType === 'password' || nodeName === 'select' || nodeName === 'textarea'; +} +/** + * Gets whether an element is potentially focusable without taking current visible/disabled state + * into account. + */ +function isPotentiallyFocusable(element) { + // Inputs are potentially focusable *unless* they're type="hidden". + if (isHiddenInput(element)) { + return false; + } + return isNativeFormElement(element) || isAnchorWithHref(element) || element.hasAttribute('contenteditable') || hasValidTabIndex(element); +} +/** Gets the parent window of a DOM node with regards of being inside of an iframe. */ +function getWindow(node) { + // ownerDocument is null if `node` itself *is* a document. + return node.ownerDocument && node.ownerDocument.defaultView || window; +} + +/** + * Class that allows for trapping focus within a DOM element. + * + * This class currently uses a relatively simple approach to focus trapping. + * It assumes that the tab order is the same as DOM order, which is not necessarily true. + * Things like `tabIndex > 0`, flex `order`, and shadow roots can cause the two to be misaligned. + * + * @deprecated Use `ConfigurableFocusTrap` instead. + * @breaking-change 11.0.0 + */ +class FocusTrap { + /** Whether the focus trap is active. */ + get enabled() { + return this._enabled; + } + set enabled(value) { + this._enabled = value; + if (this._startAnchor && this._endAnchor) { + this._toggleAnchorTabIndex(value, this._startAnchor); + this._toggleAnchorTabIndex(value, this._endAnchor); + } + } + constructor(_element, _checker, _ngZone, _document, deferAnchors = false) { + this._element = _element; + this._checker = _checker; + this._ngZone = _ngZone; + this._document = _document; + this._hasAttached = false; + // Event listeners for the anchors. Need to be regular functions so that we can unbind them later. + this.startAnchorListener = () => this.focusLastTabbableElement(); + this.endAnchorListener = () => this.focusFirstTabbableElement(); + this._enabled = true; + if (!deferAnchors) { + this.attachAnchors(); + } + } + /** Destroys the focus trap by cleaning up the anchors. */ + destroy() { + const startAnchor = this._startAnchor; + const endAnchor = this._endAnchor; + if (startAnchor) { + startAnchor.removeEventListener('focus', this.startAnchorListener); + startAnchor.remove(); + } + if (endAnchor) { + endAnchor.removeEventListener('focus', this.endAnchorListener); + endAnchor.remove(); + } + this._startAnchor = this._endAnchor = null; + this._hasAttached = false; + } + /** + * Inserts the anchors into the DOM. This is usually done automatically + * in the constructor, but can be deferred for cases like directives with `*ngIf`. + * @returns Whether the focus trap managed to attach successfully. This may not be the case + * if the target element isn't currently in the DOM. + */ + attachAnchors() { + // If we're not on the browser, there can be no focus to trap. + if (this._hasAttached) { + return true; + } + this._ngZone.runOutsideAngular(() => { + if (!this._startAnchor) { + this._startAnchor = this._createAnchor(); + this._startAnchor.addEventListener('focus', this.startAnchorListener); + } + if (!this._endAnchor) { + this._endAnchor = this._createAnchor(); + this._endAnchor.addEventListener('focus', this.endAnchorListener); + } + }); + if (this._element.parentNode) { + this._element.parentNode.insertBefore(this._startAnchor, this._element); + this._element.parentNode.insertBefore(this._endAnchor, this._element.nextSibling); + this._hasAttached = true; + } + return this._hasAttached; + } + /** + * Waits for the zone to stabilize, then focuses the first tabbable element. + * @returns Returns a promise that resolves with a boolean, depending + * on whether focus was moved successfully. + */ + focusInitialElementWhenReady(options) { + return new Promise(resolve => { + this._executeOnStable(() => resolve(this.focusInitialElement(options))); + }); + } + /** + * Waits for the zone to stabilize, then focuses + * the first tabbable element within the focus trap region. + * @returns Returns a promise that resolves with a boolean, depending + * on whether focus was moved successfully. + */ + focusFirstTabbableElementWhenReady(options) { + return new Promise(resolve => { + this._executeOnStable(() => resolve(this.focusFirstTabbableElement(options))); + }); + } + /** + * Waits for the zone to stabilize, then focuses + * the last tabbable element within the focus trap region. + * @returns Returns a promise that resolves with a boolean, depending + * on whether focus was moved successfully. + */ + focusLastTabbableElementWhenReady(options) { + return new Promise(resolve => { + this._executeOnStable(() => resolve(this.focusLastTabbableElement(options))); + }); + } + /** + * Get the specified boundary element of the trapped region. + * @param bound The boundary to get (start or end of trapped region). + * @returns The boundary element. + */ + _getRegionBoundary(bound) { + // Contains the deprecated version of selector, for temporary backwards comparability. + const markers = this._element.querySelectorAll(`[cdk-focus-region-${bound}], ` + `[cdkFocusRegion${bound}], ` + `[cdk-focus-${bound}]`); + if (typeof ngDevMode === 'undefined' || ngDevMode) { + for (let i = 0; i < markers.length; i++) { + // @breaking-change 8.0.0 + if (markers[i].hasAttribute(`cdk-focus-${bound}`)) { + console.warn(`Found use of deprecated attribute 'cdk-focus-${bound}', ` + `use 'cdkFocusRegion${bound}' instead. The deprecated ` + `attribute will be removed in 8.0.0.`, markers[i]); + } else if (markers[i].hasAttribute(`cdk-focus-region-${bound}`)) { + console.warn(`Found use of deprecated attribute 'cdk-focus-region-${bound}', ` + `use 'cdkFocusRegion${bound}' instead. The deprecated attribute ` + `will be removed in 8.0.0.`, markers[i]); + } + } + } + if (bound == 'start') { + return markers.length ? markers[0] : this._getFirstTabbableElement(this._element); + } + return markers.length ? markers[markers.length - 1] : this._getLastTabbableElement(this._element); + } + /** + * Focuses the element that should be focused when the focus trap is initialized. + * @returns Whether focus was moved successfully. + */ + focusInitialElement(options) { + // Contains the deprecated version of selector, for temporary backwards comparability. + const redirectToElement = this._element.querySelector(`[cdk-focus-initial], ` + `[cdkFocusInitial]`); + if (redirectToElement) { + // @breaking-change 8.0.0 + if ((typeof ngDevMode === 'undefined' || ngDevMode) && redirectToElement.hasAttribute(`cdk-focus-initial`)) { + console.warn(`Found use of deprecated attribute 'cdk-focus-initial', ` + `use 'cdkFocusInitial' instead. The deprecated attribute ` + `will be removed in 8.0.0`, redirectToElement); + } + // Warn the consumer if the element they've pointed to + // isn't focusable, when not in production mode. + if ((typeof ngDevMode === 'undefined' || ngDevMode) && !this._checker.isFocusable(redirectToElement)) { + console.warn(`Element matching '[cdkFocusInitial]' is not focusable.`, redirectToElement); + } + if (!this._checker.isFocusable(redirectToElement)) { + const focusableChild = this._getFirstTabbableElement(redirectToElement); + focusableChild?.focus(options); + return !!focusableChild; + } + redirectToElement.focus(options); + return true; + } + return this.focusFirstTabbableElement(options); + } + /** + * Focuses the first tabbable element within the focus trap region. + * @returns Whether focus was moved successfully. + */ + focusFirstTabbableElement(options) { + const redirectToElement = this._getRegionBoundary('start'); + if (redirectToElement) { + redirectToElement.focus(options); + } + return !!redirectToElement; + } + /** + * Focuses the last tabbable element within the focus trap region. + * @returns Whether focus was moved successfully. + */ + focusLastTabbableElement(options) { + const redirectToElement = this._getRegionBoundary('end'); + if (redirectToElement) { + redirectToElement.focus(options); + } + return !!redirectToElement; + } + /** + * Checks whether the focus trap has successfully been attached. + */ + hasAttached() { + return this._hasAttached; + } + /** Get the first tabbable element from a DOM subtree (inclusive). */ + _getFirstTabbableElement(root) { + if (this._checker.isFocusable(root) && this._checker.isTabbable(root)) { + return root; + } + const children = root.children; + for (let i = 0; i < children.length; i++) { + const tabbableChild = children[i].nodeType === this._document.ELEMENT_NODE ? this._getFirstTabbableElement(children[i]) : null; + if (tabbableChild) { + return tabbableChild; + } + } + return null; + } + /** Get the last tabbable element from a DOM subtree (inclusive). */ + _getLastTabbableElement(root) { + if (this._checker.isFocusable(root) && this._checker.isTabbable(root)) { + return root; + } + // Iterate in reverse DOM order. + const children = root.children; + for (let i = children.length - 1; i >= 0; i--) { + const tabbableChild = children[i].nodeType === this._document.ELEMENT_NODE ? this._getLastTabbableElement(children[i]) : null; + if (tabbableChild) { + return tabbableChild; + } + } + return null; + } + /** Creates an anchor element. */ + _createAnchor() { + const anchor = this._document.createElement('div'); + this._toggleAnchorTabIndex(this._enabled, anchor); + anchor.classList.add('cdk-visually-hidden'); + anchor.classList.add('cdk-focus-trap-anchor'); + anchor.setAttribute('aria-hidden', 'true'); + return anchor; + } + /** + * Toggles the `tabindex` of an anchor, based on the enabled state of the focus trap. + * @param isEnabled Whether the focus trap is enabled. + * @param anchor Anchor on which to toggle the tabindex. + */ + _toggleAnchorTabIndex(isEnabled, anchor) { + // Remove the tabindex completely, rather than setting it to -1, because if the + // element has a tabindex, the user might still hit it when navigating with the arrow keys. + isEnabled ? anchor.setAttribute('tabindex', '0') : anchor.removeAttribute('tabindex'); + } + /** + * Toggles the`tabindex` of both anchors to either trap Tab focus or allow it to escape. + * @param enabled: Whether the anchors should trap Tab. + */ + toggleAnchors(enabled) { + if (this._startAnchor && this._endAnchor) { + this._toggleAnchorTabIndex(enabled, this._startAnchor); + this._toggleAnchorTabIndex(enabled, this._endAnchor); + } + } + /** Executes a function when the zone is stable. */ + _executeOnStable(fn) { + if (this._ngZone.isStable) { + fn(); + } else { + this._ngZone.onStable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_10__.take)(1)).subscribe(fn); + } + } +} +/** + * Factory that allows easy instantiation of focus traps. + * @deprecated Use `ConfigurableFocusTrapFactory` instead. + * @breaking-change 11.0.0 + */ +class FocusTrapFactory { + constructor(_checker, _ngZone, _document) { + this._checker = _checker; + this._ngZone = _ngZone; + this._document = _document; + } + /** + * Creates a focus-trapped region around the given element. + * @param element The element around which focus will be trapped. + * @param deferCaptureElements Defers the creation of focus-capturing elements to be done + * manually by the user. + * @returns The created focus trap instance. + */ + create(element, deferCaptureElements = false) { + return new FocusTrap(element, this._checker, this._ngZone, this._document, deferCaptureElements); + } + static #_ = this.ɵfac = function FocusTrapFactory_Factory(t) { + return new (t || FocusTrapFactory)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](InteractivityChecker), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: FocusTrapFactory, + factory: FocusTrapFactory.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FocusTrapFactory, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: InteractivityChecker + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }]; + }, null); +})(); +/** Directive for trapping focus within a region. */ +class CdkTrapFocus { + /** Whether the focus trap is active. */ + get enabled() { + return this.focusTrap.enabled; + } + set enabled(value) { + this.focusTrap.enabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceBooleanProperty)(value); + } + /** + * Whether the directive should automatically move focus into the trapped region upon + * initialization and return focus to the previous activeElement upon destruction. + */ + get autoCapture() { + return this._autoCapture; + } + set autoCapture(value) { + this._autoCapture = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceBooleanProperty)(value); + } + constructor(_elementRef, _focusTrapFactory, + /** + * @deprecated No longer being used. To be removed. + * @breaking-change 13.0.0 + */ + _document) { + this._elementRef = _elementRef; + this._focusTrapFactory = _focusTrapFactory; + /** Previously focused element to restore focus to upon destroy when using autoCapture. */ + this._previouslyFocusedElement = null; + this.focusTrap = this._focusTrapFactory.create(this._elementRef.nativeElement, true); + } + ngOnDestroy() { + this.focusTrap.destroy(); + // If we stored a previously focused element when using autoCapture, return focus to that + // element now that the trapped region is being destroyed. + if (this._previouslyFocusedElement) { + this._previouslyFocusedElement.focus(); + this._previouslyFocusedElement = null; + } + } + ngAfterContentInit() { + this.focusTrap.attachAnchors(); + if (this.autoCapture) { + this._captureFocus(); + } + } + ngDoCheck() { + if (!this.focusTrap.hasAttached()) { + this.focusTrap.attachAnchors(); + } + } + ngOnChanges(changes) { + const autoCaptureChange = changes['autoCapture']; + if (autoCaptureChange && !autoCaptureChange.firstChange && this.autoCapture && this.focusTrap.hasAttached()) { + this._captureFocus(); + } + } + _captureFocus() { + this._previouslyFocusedElement = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getFocusedElementPierceShadowDom)(); + this.focusTrap.focusInitialElementWhenReady(); + } + static #_ = this.ɵfac = function CdkTrapFocus_Factory(t) { + return new (t || CdkTrapFocus)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](FocusTrapFactory), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkTrapFocus, + selectors: [["", "cdkTrapFocus", ""]], + inputs: { + enabled: ["cdkTrapFocus", "enabled"], + autoCapture: ["cdkTrapFocusAutoCapture", "autoCapture"] + }, + exportAs: ["cdkTrapFocus"], + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵNgOnChangesFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkTrapFocus, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkTrapFocus]', + exportAs: 'cdkTrapFocus' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: FocusTrapFactory + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }]; + }, { + enabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkTrapFocus'] + }], + autoCapture: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkTrapFocusAutoCapture'] + }] + }); +})(); + +/** + * Class that allows for trapping focus within a DOM element. + * + * This class uses a strategy pattern that determines how it traps focus. + * See FocusTrapInertStrategy. + */ +class ConfigurableFocusTrap extends FocusTrap { + /** Whether the FocusTrap is enabled. */ + get enabled() { + return this._enabled; + } + set enabled(value) { + this._enabled = value; + if (this._enabled) { + this._focusTrapManager.register(this); + } else { + this._focusTrapManager.deregister(this); + } + } + constructor(_element, _checker, _ngZone, _document, _focusTrapManager, _inertStrategy, config) { + super(_element, _checker, _ngZone, _document, config.defer); + this._focusTrapManager = _focusTrapManager; + this._inertStrategy = _inertStrategy; + this._focusTrapManager.register(this); + } + /** Notifies the FocusTrapManager that this FocusTrap will be destroyed. */ + destroy() { + this._focusTrapManager.deregister(this); + super.destroy(); + } + /** @docs-private Implemented as part of ManagedFocusTrap. */ + _enable() { + this._inertStrategy.preventFocus(this); + this.toggleAnchors(true); + } + /** @docs-private Implemented as part of ManagedFocusTrap. */ + _disable() { + this._inertStrategy.allowFocus(this); + this.toggleAnchors(false); + } +} + +/** The injection token used to specify the inert strategy. */ +const FOCUS_TRAP_INERT_STRATEGY = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('FOCUS_TRAP_INERT_STRATEGY'); + +/** + * Lightweight FocusTrapInertStrategy that adds a document focus event + * listener to redirect focus back inside the FocusTrap. + */ +class EventListenerFocusTrapInertStrategy { + constructor() { + /** Focus event handler. */ + this._listener = null; + } + /** Adds a document event listener that keeps focus inside the FocusTrap. */ + preventFocus(focusTrap) { + // Ensure there's only one listener per document + if (this._listener) { + focusTrap._document.removeEventListener('focus', this._listener, true); + } + this._listener = e => this._trapFocus(focusTrap, e); + focusTrap._ngZone.runOutsideAngular(() => { + focusTrap._document.addEventListener('focus', this._listener, true); + }); + } + /** Removes the event listener added in preventFocus. */ + allowFocus(focusTrap) { + if (!this._listener) { + return; + } + focusTrap._document.removeEventListener('focus', this._listener, true); + this._listener = null; + } + /** + * Refocuses the first element in the FocusTrap if the focus event target was outside + * the FocusTrap. + * + * This is an event listener callback. The event listener is added in runOutsideAngular, + * so all this code runs outside Angular as well. + */ + _trapFocus(focusTrap, event) { + const target = event.target; + const focusTrapRoot = focusTrap._element; + // Don't refocus if target was in an overlay, because the overlay might be associated + // with an element inside the FocusTrap, ex. mat-select. + if (target && !focusTrapRoot.contains(target) && !target.closest?.('div.cdk-overlay-pane')) { + // Some legacy FocusTrap usages have logic that focuses some element on the page + // just before FocusTrap is destroyed. For backwards compatibility, wait + // to be sure FocusTrap is still enabled before refocusing. + setTimeout(() => { + // Check whether focus wasn't put back into the focus trap while the timeout was pending. + if (focusTrap.enabled && !focusTrapRoot.contains(focusTrap._document.activeElement)) { + focusTrap.focusFirstTabbableElement(); + } + }); + } + } +} + +/** Injectable that ensures only the most recently enabled FocusTrap is active. */ +class FocusTrapManager { + constructor() { + // A stack of the FocusTraps on the page. Only the FocusTrap at the + // top of the stack is active. + this._focusTrapStack = []; + } + /** + * Disables the FocusTrap at the top of the stack, and then pushes + * the new FocusTrap onto the stack. + */ + register(focusTrap) { + // Dedupe focusTraps that register multiple times. + this._focusTrapStack = this._focusTrapStack.filter(ft => ft !== focusTrap); + let stack = this._focusTrapStack; + if (stack.length) { + stack[stack.length - 1]._disable(); + } + stack.push(focusTrap); + focusTrap._enable(); + } + /** + * Removes the FocusTrap from the stack, and activates the + * FocusTrap that is the new top of the stack. + */ + deregister(focusTrap) { + focusTrap._disable(); + const stack = this._focusTrapStack; + const i = stack.indexOf(focusTrap); + if (i !== -1) { + stack.splice(i, 1); + if (stack.length) { + stack[stack.length - 1]._enable(); + } + } + } + static #_ = this.ɵfac = function FocusTrapManager_Factory(t) { + return new (t || FocusTrapManager)(); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: FocusTrapManager, + factory: FocusTrapManager.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FocusTrapManager, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], null, null); +})(); + +/** Factory that allows easy instantiation of configurable focus traps. */ +class ConfigurableFocusTrapFactory { + constructor(_checker, _ngZone, _focusTrapManager, _document, _inertStrategy) { + this._checker = _checker; + this._ngZone = _ngZone; + this._focusTrapManager = _focusTrapManager; + this._document = _document; + // TODO split up the strategies into different modules, similar to DateAdapter. + this._inertStrategy = _inertStrategy || new EventListenerFocusTrapInertStrategy(); + } + create(element, config = { + defer: false + }) { + let configObject; + if (typeof config === 'boolean') { + configObject = { + defer: config + }; + } else { + configObject = config; + } + return new ConfigurableFocusTrap(element, this._checker, this._ngZone, this._document, this._focusTrapManager, this._inertStrategy, configObject); + } + static #_ = this.ɵfac = function ConfigurableFocusTrapFactory_Factory(t) { + return new (t || ConfigurableFocusTrapFactory)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](InteractivityChecker), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](FocusTrapManager), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](FOCUS_TRAP_INERT_STRATEGY, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ConfigurableFocusTrapFactory, + factory: ConfigurableFocusTrapFactory.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ConfigurableFocusTrapFactory, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: InteractivityChecker + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: FocusTrapManager + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [FOCUS_TRAP_INERT_STRATEGY] + }] + }]; + }, null); +})(); + +/** Gets whether an event could be a faked `mousedown` event dispatched by a screen reader. */ +function isFakeMousedownFromScreenReader(event) { + // Some screen readers will dispatch a fake `mousedown` event when pressing enter or space on + // a clickable element. We can distinguish these events when `event.buttons` is zero, or + // `event.detail` is zero depending on the browser: + // - `event.buttons` works on Firefox, but fails on Chrome. + // - `detail` works on Chrome, but fails on Firefox. + return event.buttons === 0 || event.detail === 0; +} +/** Gets whether an event could be a faked `touchstart` event dispatched by a screen reader. */ +function isFakeTouchstartFromScreenReader(event) { + const touch = event.touches && event.touches[0] || event.changedTouches && event.changedTouches[0]; + // A fake `touchstart` can be distinguished from a real one by looking at the `identifier` + // which is typically >= 0 on a real device versus -1 from a screen reader. Just to be safe, + // we can also look at `radiusX` and `radiusY`. This behavior was observed against a Windows 10 + // device with a touch screen running NVDA v2020.4 and Firefox 85 or Chrome 88. + return !!touch && touch.identifier === -1 && (touch.radiusX == null || touch.radiusX === 1) && (touch.radiusY == null || touch.radiusY === 1); +} + +/** + * Injectable options for the InputModalityDetector. These are shallowly merged with the default + * options. + */ +const INPUT_MODALITY_DETECTOR_OPTIONS = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('cdk-input-modality-detector-options'); +/** + * Default options for the InputModalityDetector. + * + * Modifier keys are ignored by default (i.e. when pressed won't cause the service to detect + * keyboard input modality) for two reasons: + * + * 1. Modifier keys are commonly used with mouse to perform actions such as 'right click' or 'open + * in new tab', and are thus less representative of actual keyboard interaction. + * 2. VoiceOver triggers some keyboard events when linearly navigating with Control + Option (but + * confusingly not with Caps Lock). Thus, to have parity with other screen readers, we ignore + * these keys so as to not update the input modality. + * + * Note that we do not by default ignore the right Meta key on Safari because it has the same key + * code as the ContextMenu key on other browsers. When we switch to using event.key, we can + * distinguish between the two. + */ +const INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS = { + ignoreKeys: [_angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.ALT, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.CONTROL, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.MAC_META, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.META, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.SHIFT] +}; +/** + * The amount of time needed to pass after a touchstart event in order for a subsequent mousedown + * event to be attributed as mouse and not touch. + * + * This is the value used by AngularJS Material. Through trial and error (on iPhone 6S) they found + * that a value of around 650ms seems appropriate. + */ +const TOUCH_BUFFER_MS = 650; +/** + * Event listener options that enable capturing and also mark the listener as passive if the browser + * supports it. + */ +const modalityEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.normalizePassiveListenerOptions)({ + passive: true, + capture: true +}); +/** + * Service that detects the user's input modality. + * + * This service does not update the input modality when a user navigates with a screen reader + * (e.g. linear navigation with VoiceOver, object navigation / browse mode with NVDA, virtual PC + * cursor mode with JAWS). This is in part due to technical limitations (i.e. keyboard events do not + * fire as expected in these modes) but is also arguably the correct behavior. Navigating with a + * screen reader is akin to visually scanning a page, and should not be interpreted as actual user + * input interaction. + * + * When a user is not navigating but *interacting* with a screen reader, this service attempts to + * update the input modality to keyboard, but in general this service's behavior is largely + * undefined. + */ +class InputModalityDetector { + /** The most recently detected input modality. */ + get mostRecentModality() { + return this._modality.value; + } + constructor(_platform, ngZone, document, options) { + this._platform = _platform; + /** + * The most recently detected input modality event target. Is null if no input modality has been + * detected or if the associated event target is null for some unknown reason. + */ + this._mostRecentTarget = null; + /** The underlying BehaviorSubject that emits whenever an input modality is detected. */ + this._modality = new rxjs__WEBPACK_IMPORTED_MODULE_12__.BehaviorSubject(null); + /** + * The timestamp of the last touch input modality. Used to determine whether mousedown events + * should be attributed to mouse or touch. + */ + this._lastTouchMs = 0; + /** + * Handles keydown events. Must be an arrow function in order to preserve the context when it gets + * bound. + */ + this._onKeydown = event => { + // If this is one of the keys we should ignore, then ignore it and don't update the input + // modality to keyboard. + if (this._options?.ignoreKeys?.some(keyCode => keyCode === event.keyCode)) { + return; + } + this._modality.next('keyboard'); + this._mostRecentTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + }; + /** + * Handles mousedown events. Must be an arrow function in order to preserve the context when it + * gets bound. + */ + this._onMousedown = event => { + // Touches trigger both touch and mouse events, so we need to distinguish between mouse events + // that were triggered via mouse vs touch. To do so, check if the mouse event occurs closely + // after the previous touch event. + if (Date.now() - this._lastTouchMs < TOUCH_BUFFER_MS) { + return; + } + // Fake mousedown events are fired by some screen readers when controls are activated by the + // screen reader. Attribute them to keyboard input modality. + this._modality.next(isFakeMousedownFromScreenReader(event) ? 'keyboard' : 'mouse'); + this._mostRecentTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + }; + /** + * Handles touchstart events. Must be an arrow function in order to preserve the context when it + * gets bound. + */ + this._onTouchstart = event => { + // Same scenario as mentioned in _onMousedown, but on touch screen devices, fake touchstart + // events are fired. Again, attribute to keyboard input modality. + if (isFakeTouchstartFromScreenReader(event)) { + this._modality.next('keyboard'); + return; + } + // Store the timestamp of this touch event, as it's used to distinguish between mouse events + // triggered via mouse vs touch. + this._lastTouchMs = Date.now(); + this._modality.next('touch'); + this._mostRecentTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + }; + this._options = { + ...INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS, + ...options + }; + // Skip the first emission as it's null. + this.modalityDetected = this._modality.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.skip)(1)); + this.modalityChanged = this.modalityDetected.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.distinctUntilChanged)()); + // If we're not in a browser, this service should do nothing, as there's no relevant input + // modality to detect. + if (_platform.isBrowser) { + ngZone.runOutsideAngular(() => { + document.addEventListener('keydown', this._onKeydown, modalityEventListenerOptions); + document.addEventListener('mousedown', this._onMousedown, modalityEventListenerOptions); + document.addEventListener('touchstart', this._onTouchstart, modalityEventListenerOptions); + }); + } + } + ngOnDestroy() { + this._modality.complete(); + if (this._platform.isBrowser) { + document.removeEventListener('keydown', this._onKeydown, modalityEventListenerOptions); + document.removeEventListener('mousedown', this._onMousedown, modalityEventListenerOptions); + document.removeEventListener('touchstart', this._onTouchstart, modalityEventListenerOptions); + } + } + static #_ = this.ɵfac = function InputModalityDetector_Factory(t) { + return new (t || InputModalityDetector)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](INPUT_MODALITY_DETECTOR_OPTIONS, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: InputModalityDetector, + factory: InputModalityDetector.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](InputModalityDetector, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: Document, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [INPUT_MODALITY_DETECTOR_OPTIONS] + }] + }]; + }, null); +})(); +const LIVE_ANNOUNCER_ELEMENT_TOKEN = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('liveAnnouncerElement', { + providedIn: 'root', + factory: LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY +}); +/** @docs-private */ +function LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY() { + return null; +} +/** Injection token that can be used to configure the default options for the LiveAnnouncer. */ +const LIVE_ANNOUNCER_DEFAULT_OPTIONS = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('LIVE_ANNOUNCER_DEFAULT_OPTIONS'); +let uniqueIds = 0; +class LiveAnnouncer { + constructor(elementToken, _ngZone, _document, _defaultOptions) { + this._ngZone = _ngZone; + this._defaultOptions = _defaultOptions; + // We inject the live element and document as `any` because the constructor signature cannot + // reference browser globals (HTMLElement, Document) on non-browser environments, since having + // a class decorator causes TypeScript to preserve the constructor signature types. + this._document = _document; + this._liveElement = elementToken || this._createLiveElement(); + } + announce(message, ...args) { + const defaultOptions = this._defaultOptions; + let politeness; + let duration; + if (args.length === 1 && typeof args[0] === 'number') { + duration = args[0]; + } else { + [politeness, duration] = args; + } + this.clear(); + clearTimeout(this._previousTimeout); + if (!politeness) { + politeness = defaultOptions && defaultOptions.politeness ? defaultOptions.politeness : 'polite'; + } + if (duration == null && defaultOptions) { + duration = defaultOptions.duration; + } + // TODO: ensure changing the politeness works on all environments we support. + this._liveElement.setAttribute('aria-live', politeness); + if (this._liveElement.id) { + this._exposeAnnouncerToModals(this._liveElement.id); + } + // This 100ms timeout is necessary for some browser + screen-reader combinations: + // - Both JAWS and NVDA over IE11 will not announce anything without a non-zero timeout. + // - With Chrome and IE11 with NVDA or JAWS, a repeated (identical) message won't be read a + // second time without clearing and then using a non-zero delay. + // (using JAWS 17 at time of this writing). + return this._ngZone.runOutsideAngular(() => { + if (!this._currentPromise) { + this._currentPromise = new Promise(resolve => this._currentResolve = resolve); + } + clearTimeout(this._previousTimeout); + this._previousTimeout = setTimeout(() => { + this._liveElement.textContent = message; + if (typeof duration === 'number') { + this._previousTimeout = setTimeout(() => this.clear(), duration); + } + this._currentResolve(); + this._currentPromise = this._currentResolve = undefined; + }, 100); + return this._currentPromise; + }); + } + /** + * Clears the current text from the announcer element. Can be used to prevent + * screen readers from reading the text out again while the user is going + * through the page landmarks. + */ + clear() { + if (this._liveElement) { + this._liveElement.textContent = ''; + } + } + ngOnDestroy() { + clearTimeout(this._previousTimeout); + this._liveElement?.remove(); + this._liveElement = null; + this._currentResolve?.(); + this._currentPromise = this._currentResolve = undefined; + } + _createLiveElement() { + const elementClass = 'cdk-live-announcer-element'; + const previousElements = this._document.getElementsByClassName(elementClass); + const liveEl = this._document.createElement('div'); + // Remove any old containers. This can happen when coming in from a server-side-rendered page. + for (let i = 0; i < previousElements.length; i++) { + previousElements[i].remove(); + } + liveEl.classList.add(elementClass); + liveEl.classList.add('cdk-visually-hidden'); + liveEl.setAttribute('aria-atomic', 'true'); + liveEl.setAttribute('aria-live', 'polite'); + liveEl.id = `cdk-live-announcer-${uniqueIds++}`; + this._document.body.appendChild(liveEl); + return liveEl; + } + /** + * Some browsers won't expose the accessibility node of the live announcer element if there is an + * `aria-modal` and the live announcer is outside of it. This method works around the issue by + * pointing the `aria-owns` of all modals to the live announcer element. + */ + _exposeAnnouncerToModals(id) { + // TODO(http://github.com/angular/components/issues/26853): consider de-duplicating this with + // the `SnakBarContainer` and other usages. + // + // Note that the selector here is limited to CDK overlays at the moment in order to reduce the + // section of the DOM we need to look through. This should cover all the cases we support, but + // the selector can be expanded if it turns out to be too narrow. + const modals = this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]'); + for (let i = 0; i < modals.length; i++) { + const modal = modals[i]; + const ariaOwns = modal.getAttribute('aria-owns'); + if (!ariaOwns) { + modal.setAttribute('aria-owns', id); + } else if (ariaOwns.indexOf(id) === -1) { + modal.setAttribute('aria-owns', ariaOwns + ' ' + id); + } + } + } + static #_ = this.ɵfac = function LiveAnnouncer_Factory(t) { + return new (t || LiveAnnouncer)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](LIVE_ANNOUNCER_ELEMENT_TOKEN, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](LIVE_ANNOUNCER_DEFAULT_OPTIONS, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: LiveAnnouncer, + factory: LiveAnnouncer.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](LiveAnnouncer, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [LIVE_ANNOUNCER_ELEMENT_TOKEN] + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [LIVE_ANNOUNCER_DEFAULT_OPTIONS] + }] + }]; + }, null); +})(); +/** + * A directive that works similarly to aria-live, but uses the LiveAnnouncer to ensure compatibility + * with a wider range of browsers and screen readers. + */ +class CdkAriaLive { + /** The aria-live politeness level to use when announcing messages. */ + get politeness() { + return this._politeness; + } + set politeness(value) { + this._politeness = value === 'off' || value === 'assertive' ? value : 'polite'; + if (this._politeness === 'off') { + if (this._subscription) { + this._subscription.unsubscribe(); + this._subscription = null; + } + } else if (!this._subscription) { + this._subscription = this._ngZone.runOutsideAngular(() => { + return this._contentObserver.observe(this._elementRef).subscribe(() => { + // Note that we use textContent here, rather than innerText, in order to avoid a reflow. + const elementText = this._elementRef.nativeElement.textContent; + // The `MutationObserver` fires also for attribute + // changes which we don't want to announce. + if (elementText !== this._previousAnnouncedText) { + this._liveAnnouncer.announce(elementText, this._politeness, this.duration); + this._previousAnnouncedText = elementText; + } + }); + }); + } + } + constructor(_elementRef, _liveAnnouncer, _contentObserver, _ngZone) { + this._elementRef = _elementRef; + this._liveAnnouncer = _liveAnnouncer; + this._contentObserver = _contentObserver; + this._ngZone = _ngZone; + this._politeness = 'polite'; + } + ngOnDestroy() { + if (this._subscription) { + this._subscription.unsubscribe(); + } + } + static #_ = this.ɵfac = function CdkAriaLive_Factory(t) { + return new (t || CdkAriaLive)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](LiveAnnouncer), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ContentObserver), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkAriaLive, + selectors: [["", "cdkAriaLive", ""]], + inputs: { + politeness: ["cdkAriaLive", "politeness"], + duration: ["cdkAriaLiveDuration", "duration"] + }, + exportAs: ["cdkAriaLive"] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkAriaLive, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkAriaLive]', + exportAs: 'cdkAriaLive' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: LiveAnnouncer + }, { + type: _angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ContentObserver + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, { + politeness: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkAriaLive'] + }], + duration: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkAriaLiveDuration'] + }] + }); +})(); + +/** InjectionToken for FocusMonitorOptions. */ +const FOCUS_MONITOR_DEFAULT_OPTIONS = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('cdk-focus-monitor-default-options'); +/** + * Event listener options that enable capturing and also + * mark the listener as passive if the browser supports it. + */ +const captureEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.normalizePassiveListenerOptions)({ + passive: true, + capture: true +}); +/** Monitors mouse and keyboard events to determine the cause of focus events. */ +class FocusMonitor { + constructor(_ngZone, _platform, _inputModalityDetector, /** @breaking-change 11.0.0 make document required */ + document, options) { + this._ngZone = _ngZone; + this._platform = _platform; + this._inputModalityDetector = _inputModalityDetector; + /** The focus origin that the next focus event is a result of. */ + this._origin = null; + /** Whether the window has just been focused. */ + this._windowFocused = false; + /** + * Whether the origin was determined via a touch interaction. Necessary as properly attributing + * focus events to touch interactions requires special logic. + */ + this._originFromTouchInteraction = false; + /** Map of elements being monitored to their info. */ + this._elementInfo = new Map(); + /** The number of elements currently being monitored. */ + this._monitoredElementCount = 0; + /** + * Keeps track of the root nodes to which we've currently bound a focus/blur handler, + * as well as the number of monitored elements that they contain. We have to treat focus/blur + * handlers differently from the rest of the events, because the browser won't emit events + * to the document when focus moves inside of a shadow root. + */ + this._rootNodeFocusListenerCount = new Map(); + /** + * Event listener for `focus` events on the window. + * Needs to be an arrow function in order to preserve the context when it gets bound. + */ + this._windowFocusListener = () => { + // Make a note of when the window regains focus, so we can + // restore the origin info for the focused element. + this._windowFocused = true; + this._windowFocusTimeoutId = window.setTimeout(() => this._windowFocused = false); + }; + /** Subject for stopping our InputModalityDetector subscription. */ + this._stopInputModalityDetector = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + /** + * Event listener for `focus` and 'blur' events on the document. + * Needs to be an arrow function in order to preserve the context when it gets bound. + */ + this._rootNodeFocusAndBlurListener = event => { + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + // We need to walk up the ancestor chain in order to support `checkChildren`. + for (let element = target; element; element = element.parentElement) { + if (event.type === 'focus') { + this._onFocus(event, element); + } else { + this._onBlur(event, element); + } + } + }; + this._document = document; + this._detectionMode = options?.detectionMode || 0 /* FocusMonitorDetectionMode.IMMEDIATE */; + } + monitor(element, checkChildren = false) { + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceElement)(element); + // Do nothing if we're not on the browser platform or the passed in node isn't an element. + if (!this._platform.isBrowser || nativeElement.nodeType !== 1) { + // Note: we don't want the observable to emit at all so we don't pass any parameters. + return (0,rxjs__WEBPACK_IMPORTED_MODULE_16__.of)(); + } + // If the element is inside the shadow DOM, we need to bind our focus/blur listeners to + // the shadow root, rather than the `document`, because the browser won't emit focus events + // to the `document`, if focus is moving within the same shadow root. + const rootNode = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getShadowRoot)(nativeElement) || this._getDocument(); + const cachedInfo = this._elementInfo.get(nativeElement); + // Check if we're already monitoring this element. + if (cachedInfo) { + if (checkChildren) { + // TODO(COMP-318): this can be problematic, because it'll turn all non-checkChildren + // observers into ones that behave as if `checkChildren` was turned on. We need a more + // robust solution. + cachedInfo.checkChildren = true; + } + return cachedInfo.subject; + } + // Create monitored element info. + const info = { + checkChildren: checkChildren, + subject: new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(), + rootNode + }; + this._elementInfo.set(nativeElement, info); + this._registerGlobalListeners(info); + return info.subject; + } + stopMonitoring(element) { + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceElement)(element); + const elementInfo = this._elementInfo.get(nativeElement); + if (elementInfo) { + elementInfo.subject.complete(); + this._setClasses(nativeElement); + this._elementInfo.delete(nativeElement); + this._removeGlobalListeners(elementInfo); + } + } + focusVia(element, origin, options) { + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceElement)(element); + const focusedElement = this._getDocument().activeElement; + // If the element is focused already, calling `focus` again won't trigger the event listener + // which means that the focus classes won't be updated. If that's the case, update the classes + // directly without waiting for an event. + if (nativeElement === focusedElement) { + this._getClosestElementsInfo(nativeElement).forEach(([currentElement, info]) => this._originChanged(currentElement, origin, info)); + } else { + this._setOrigin(origin); + // `focus` isn't available on the server + if (typeof nativeElement.focus === 'function') { + nativeElement.focus(options); + } + } + } + ngOnDestroy() { + this._elementInfo.forEach((_info, element) => this.stopMonitoring(element)); + } + /** Access injected document if available or fallback to global document reference */ + _getDocument() { + return this._document || document; + } + /** Use defaultView of injected document if available or fallback to global window reference */ + _getWindow() { + const doc = this._getDocument(); + return doc.defaultView || window; + } + _getFocusOrigin(focusEventTarget) { + if (this._origin) { + // If the origin was realized via a touch interaction, we need to perform additional checks + // to determine whether the focus origin should be attributed to touch or program. + if (this._originFromTouchInteraction) { + return this._shouldBeAttributedToTouch(focusEventTarget) ? 'touch' : 'program'; + } else { + return this._origin; + } + } + // If the window has just regained focus, we can restore the most recent origin from before the + // window blurred. Otherwise, we've reached the point where we can't identify the source of the + // focus. This typically means one of two things happened: + // + // 1) The element was programmatically focused, or + // 2) The element was focused via screen reader navigation (which generally doesn't fire + // events). + // + // Because we can't distinguish between these two cases, we default to setting `program`. + if (this._windowFocused && this._lastFocusOrigin) { + return this._lastFocusOrigin; + } + // If the interaction is coming from an input label, we consider it a mouse interactions. + // This is a special case where focus moves on `click`, rather than `mousedown` which breaks + // our detection, because all our assumptions are for `mousedown`. We need to handle this + // special case, because it's very common for checkboxes and radio buttons. + if (focusEventTarget && this._isLastInteractionFromInputLabel(focusEventTarget)) { + return 'mouse'; + } + return 'program'; + } + /** + * Returns whether the focus event should be attributed to touch. Recall that in IMMEDIATE mode, a + * touch origin isn't immediately reset at the next tick (see _setOrigin). This means that when we + * handle a focus event following a touch interaction, we need to determine whether (1) the focus + * event was directly caused by the touch interaction or (2) the focus event was caused by a + * subsequent programmatic focus call triggered by the touch interaction. + * @param focusEventTarget The target of the focus event under examination. + */ + _shouldBeAttributedToTouch(focusEventTarget) { + // Please note that this check is not perfect. Consider the following edge case: + // + //
+ //
+ //
+ // + // Suppose there is a FocusMonitor in IMMEDIATE mode attached to #parent. When the user touches + // #child, #parent is programmatically focused. This code will attribute the focus to touch + // instead of program. This is a relatively minor edge-case that can be worked around by using + // focusVia(parent, 'program') to focus #parent. + return this._detectionMode === 1 /* FocusMonitorDetectionMode.EVENTUAL */ || !!focusEventTarget?.contains(this._inputModalityDetector._mostRecentTarget); + } + /** + * Sets the focus classes on the element based on the given focus origin. + * @param element The element to update the classes on. + * @param origin The focus origin. + */ + _setClasses(element, origin) { + element.classList.toggle('cdk-focused', !!origin); + element.classList.toggle('cdk-touch-focused', origin === 'touch'); + element.classList.toggle('cdk-keyboard-focused', origin === 'keyboard'); + element.classList.toggle('cdk-mouse-focused', origin === 'mouse'); + element.classList.toggle('cdk-program-focused', origin === 'program'); + } + /** + * Updates the focus origin. If we're using immediate detection mode, we schedule an async + * function to clear the origin at the end of a timeout. The duration of the timeout depends on + * the origin being set. + * @param origin The origin to set. + * @param isFromInteraction Whether we are setting the origin from an interaction event. + */ + _setOrigin(origin, isFromInteraction = false) { + this._ngZone.runOutsideAngular(() => { + this._origin = origin; + this._originFromTouchInteraction = origin === 'touch' && isFromInteraction; + // If we're in IMMEDIATE mode, reset the origin at the next tick (or in `TOUCH_BUFFER_MS` ms + // for a touch event). We reset the origin at the next tick because Firefox focuses one tick + // after the interaction event. We wait `TOUCH_BUFFER_MS` ms before resetting the origin for + // a touch event because when a touch event is fired, the associated focus event isn't yet in + // the event queue. Before doing so, clear any pending timeouts. + if (this._detectionMode === 0 /* FocusMonitorDetectionMode.IMMEDIATE */) { + clearTimeout(this._originTimeoutId); + const ms = this._originFromTouchInteraction ? TOUCH_BUFFER_MS : 1; + this._originTimeoutId = setTimeout(() => this._origin = null, ms); + } + }); + } + /** + * Handles focus events on a registered element. + * @param event The focus event. + * @param element The monitored element. + */ + _onFocus(event, element) { + // NOTE(mmalerba): We currently set the classes based on the focus origin of the most recent + // focus event affecting the monitored element. If we want to use the origin of the first event + // instead we should check for the cdk-focused class here and return if the element already has + // it. (This only matters for elements that have includesChildren = true). + // If we are not counting child-element-focus as focused, make sure that the event target is the + // monitored element itself. + const elementInfo = this._elementInfo.get(element); + const focusEventTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + if (!elementInfo || !elementInfo.checkChildren && element !== focusEventTarget) { + return; + } + this._originChanged(element, this._getFocusOrigin(focusEventTarget), elementInfo); + } + /** + * Handles blur events on a registered element. + * @param event The blur event. + * @param element The monitored element. + */ + _onBlur(event, element) { + // If we are counting child-element-focus as focused, make sure that we aren't just blurring in + // order to focus another child of the monitored element. + const elementInfo = this._elementInfo.get(element); + if (!elementInfo || elementInfo.checkChildren && event.relatedTarget instanceof Node && element.contains(event.relatedTarget)) { + return; + } + this._setClasses(element); + this._emitOrigin(elementInfo, null); + } + _emitOrigin(info, origin) { + if (info.subject.observers.length) { + this._ngZone.run(() => info.subject.next(origin)); + } + } + _registerGlobalListeners(elementInfo) { + if (!this._platform.isBrowser) { + return; + } + const rootNode = elementInfo.rootNode; + const rootNodeFocusListeners = this._rootNodeFocusListenerCount.get(rootNode) || 0; + if (!rootNodeFocusListeners) { + this._ngZone.runOutsideAngular(() => { + rootNode.addEventListener('focus', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + rootNode.addEventListener('blur', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + }); + } + this._rootNodeFocusListenerCount.set(rootNode, rootNodeFocusListeners + 1); + // Register global listeners when first element is monitored. + if (++this._monitoredElementCount === 1) { + // Note: we listen to events in the capture phase so we + // can detect them even if the user stops propagation. + this._ngZone.runOutsideAngular(() => { + const window = this._getWindow(); + window.addEventListener('focus', this._windowFocusListener); + }); + // The InputModalityDetector is also just a collection of global listeners. + this._inputModalityDetector.modalityDetected.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.takeUntil)(this._stopInputModalityDetector)).subscribe(modality => { + this._setOrigin(modality, true /* isFromInteraction */); + }); + } + } + _removeGlobalListeners(elementInfo) { + const rootNode = elementInfo.rootNode; + if (this._rootNodeFocusListenerCount.has(rootNode)) { + const rootNodeFocusListeners = this._rootNodeFocusListenerCount.get(rootNode); + if (rootNodeFocusListeners > 1) { + this._rootNodeFocusListenerCount.set(rootNode, rootNodeFocusListeners - 1); + } else { + rootNode.removeEventListener('focus', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + rootNode.removeEventListener('blur', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + this._rootNodeFocusListenerCount.delete(rootNode); + } + } + // Unregister global listeners when last element is unmonitored. + if (! --this._monitoredElementCount) { + const window = this._getWindow(); + window.removeEventListener('focus', this._windowFocusListener); + // Equivalently, stop our InputModalityDetector subscription. + this._stopInputModalityDetector.next(); + // Clear timeouts for all potentially pending timeouts to prevent the leaks. + clearTimeout(this._windowFocusTimeoutId); + clearTimeout(this._originTimeoutId); + } + } + /** Updates all the state on an element once its focus origin has changed. */ + _originChanged(element, origin, elementInfo) { + this._setClasses(element, origin); + this._emitOrigin(elementInfo, origin); + this._lastFocusOrigin = origin; + } + /** + * Collects the `MonitoredElementInfo` of a particular element and + * all of its ancestors that have enabled `checkChildren`. + * @param element Element from which to start the search. + */ + _getClosestElementsInfo(element) { + const results = []; + this._elementInfo.forEach((info, currentElement) => { + if (currentElement === element || info.checkChildren && currentElement.contains(element)) { + results.push([currentElement, info]); + } + }); + return results; + } + /** + * Returns whether an interaction is likely to have come from the user clicking the `label` of + * an `input` or `textarea` in order to focus it. + * @param focusEventTarget Target currently receiving focus. + */ + _isLastInteractionFromInputLabel(focusEventTarget) { + const { + _mostRecentTarget: mostRecentTarget, + mostRecentModality + } = this._inputModalityDetector; + // If the last interaction used the mouse on an element contained by one of the labels + // of an `input`/`textarea` that is currently focused, it is very likely that the + // user redirected focus using the label. + if (mostRecentModality !== 'mouse' || !mostRecentTarget || mostRecentTarget === focusEventTarget || focusEventTarget.nodeName !== 'INPUT' && focusEventTarget.nodeName !== 'TEXTAREA' || focusEventTarget.disabled) { + return false; + } + const labels = focusEventTarget.labels; + if (labels) { + for (let i = 0; i < labels.length; i++) { + if (labels[i].contains(mostRecentTarget)) { + return true; + } + } + } + return false; + } + static #_ = this.ɵfac = function FocusMonitor_Factory(t) { + return new (t || FocusMonitor)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](InputModalityDetector), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](FOCUS_MONITOR_DEFAULT_OPTIONS, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: FocusMonitor, + factory: FocusMonitor.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FocusMonitor, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }, { + type: InputModalityDetector + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [FOCUS_MONITOR_DEFAULT_OPTIONS] + }] + }]; + }, null); +})(); +/** + * Directive that determines how a particular element was focused (via keyboard, mouse, touch, or + * programmatically) and adds corresponding classes to the element. + * + * There are two variants of this directive: + * 1) cdkMonitorElementFocus: does not consider an element to be focused if one of its children is + * focused. + * 2) cdkMonitorSubtreeFocus: considers an element focused if it or any of its children are focused. + */ +class CdkMonitorFocus { + constructor(_elementRef, _focusMonitor) { + this._elementRef = _elementRef; + this._focusMonitor = _focusMonitor; + this._focusOrigin = null; + this.cdkFocusChange = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + } + get focusOrigin() { + return this._focusOrigin; + } + ngAfterViewInit() { + const element = this._elementRef.nativeElement; + this._monitorSubscription = this._focusMonitor.monitor(element, element.nodeType === 1 && element.hasAttribute('cdkMonitorSubtreeFocus')).subscribe(origin => { + this._focusOrigin = origin; + this.cdkFocusChange.emit(origin); + }); + } + ngOnDestroy() { + this._focusMonitor.stopMonitoring(this._elementRef); + if (this._monitorSubscription) { + this._monitorSubscription.unsubscribe(); + } + } + static #_ = this.ɵfac = function CdkMonitorFocus_Factory(t) { + return new (t || CdkMonitorFocus)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](FocusMonitor)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkMonitorFocus, + selectors: [["", "cdkMonitorElementFocus", ""], ["", "cdkMonitorSubtreeFocus", ""]], + outputs: { + cdkFocusChange: "cdkFocusChange" + }, + exportAs: ["cdkMonitorFocus"] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkMonitorFocus, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkMonitorElementFocus], [cdkMonitorSubtreeFocus]', + exportAs: 'cdkMonitorFocus' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: FocusMonitor + }]; + }, { + cdkFocusChange: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output + }] + }); +})(); + +/** CSS class applied to the document body when in black-on-white high-contrast mode. */ +const BLACK_ON_WHITE_CSS_CLASS = 'cdk-high-contrast-black-on-white'; +/** CSS class applied to the document body when in white-on-black high-contrast mode. */ +const WHITE_ON_BLACK_CSS_CLASS = 'cdk-high-contrast-white-on-black'; +/** CSS class applied to the document body when in high-contrast mode. */ +const HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS = 'cdk-high-contrast-active'; +/** + * Service to determine whether the browser is currently in a high-contrast-mode environment. + * + * Microsoft Windows supports an accessibility feature called "High Contrast Mode". This mode + * changes the appearance of all applications, including web applications, to dramatically increase + * contrast. + * + * IE, Edge, and Firefox currently support this mode. Chrome does not support Windows High Contrast + * Mode. This service does not detect high-contrast mode as added by the Chrome "High Contrast" + * browser extension. + */ +class HighContrastModeDetector { + constructor(_platform, document) { + this._platform = _platform; + this._document = document; + this._breakpointSubscription = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_cdk_layout__WEBPACK_IMPORTED_MODULE_18__.BreakpointObserver).observe('(forced-colors: active)').subscribe(() => { + if (this._hasCheckedHighContrastMode) { + this._hasCheckedHighContrastMode = false; + this._applyBodyHighContrastModeCssClasses(); + } + }); + } + /** Gets the current high-contrast-mode for the page. */ + getHighContrastMode() { + if (!this._platform.isBrowser) { + return 0 /* HighContrastMode.NONE */; + } + // Create a test element with an arbitrary background-color that is neither black nor + // white; high-contrast mode will coerce the color to either black or white. Also ensure that + // appending the test element to the DOM does not affect layout by absolutely positioning it + const testElement = this._document.createElement('div'); + testElement.style.backgroundColor = 'rgb(1,2,3)'; + testElement.style.position = 'absolute'; + this._document.body.appendChild(testElement); + // Get the computed style for the background color, collapsing spaces to normalize between + // browsers. Once we get this color, we no longer need the test element. Access the `window` + // via the document so we can fake it in tests. Note that we have extra null checks, because + // this logic will likely run during app bootstrap and throwing can break the entire app. + const documentWindow = this._document.defaultView || window; + const computedStyle = documentWindow && documentWindow.getComputedStyle ? documentWindow.getComputedStyle(testElement) : null; + const computedColor = (computedStyle && computedStyle.backgroundColor || '').replace(/ /g, ''); + testElement.remove(); + switch (computedColor) { + // Pre Windows 11 dark theme. + case 'rgb(0,0,0)': + // Windows 11 dark themes. + case 'rgb(45,50,54)': + case 'rgb(32,32,32)': + return 2 /* HighContrastMode.WHITE_ON_BLACK */; + // Pre Windows 11 light theme. + case 'rgb(255,255,255)': + // Windows 11 light theme. + case 'rgb(255,250,239)': + return 1 /* HighContrastMode.BLACK_ON_WHITE */; + } + return 0 /* HighContrastMode.NONE */; + } + ngOnDestroy() { + this._breakpointSubscription.unsubscribe(); + } + /** Applies CSS classes indicating high-contrast mode to document body (browser-only). */ + _applyBodyHighContrastModeCssClasses() { + if (!this._hasCheckedHighContrastMode && this._platform.isBrowser && this._document.body) { + const bodyClasses = this._document.body.classList; + bodyClasses.remove(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, BLACK_ON_WHITE_CSS_CLASS, WHITE_ON_BLACK_CSS_CLASS); + this._hasCheckedHighContrastMode = true; + const mode = this.getHighContrastMode(); + if (mode === 1 /* HighContrastMode.BLACK_ON_WHITE */) { + bodyClasses.add(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, BLACK_ON_WHITE_CSS_CLASS); + } else if (mode === 2 /* HighContrastMode.WHITE_ON_BLACK */) { + bodyClasses.add(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, WHITE_ON_BLACK_CSS_CLASS); + } + } + } + static #_ = this.ɵfac = function HighContrastModeDetector_Factory(t) { + return new (t || HighContrastModeDetector)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: HighContrastModeDetector, + factory: HighContrastModeDetector.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](HighContrastModeDetector, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }]; + }, null); +})(); +class A11yModule { + constructor(highContrastModeDetector) { + highContrastModeDetector._applyBodyHighContrastModeCssClasses(); + } + static #_ = this.ɵfac = function A11yModule_Factory(t) { + return new (t || A11yModule)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](HighContrastModeDetector)); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: A11yModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ + imports: [_angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ObserversModule] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](A11yModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + imports: [_angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ObserversModule], + declarations: [CdkAriaLive, CdkTrapFocus, CdkMonitorFocus], + exports: [CdkAriaLive, CdkTrapFocus, CdkMonitorFocus] + }] + }], function () { + return [{ + type: HighContrastModeDetector + }]; + }, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 24565: +/*!*****************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/bidi.mjs ***! + \*****************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ BidiModule: () => (/* binding */ BidiModule), +/* harmony export */ DIR_DOCUMENT: () => (/* binding */ DIR_DOCUMENT), +/* harmony export */ Dir: () => (/* binding */ Dir), +/* harmony export */ Directionality: () => (/* binding */ Directionality) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); + + + + +/** + * Injection token used to inject the document into Directionality. + * This is used so that the value can be faked in tests. + * + * We can't use the real document in tests because changing the real `dir` causes geometry-based + * tests in Safari to fail. + * + * We also can't re-provide the DOCUMENT token from platform-browser because the unit tests + * themselves use things like `querySelector` in test code. + * + * This token is defined in a separate file from Directionality as a workaround for + * https://github.com/angular/angular/issues/22559 + * + * @docs-private + */ +const DIR_DOCUMENT = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('cdk-dir-doc', { + providedIn: 'root', + factory: DIR_DOCUMENT_FACTORY +}); +/** @docs-private */ +function DIR_DOCUMENT_FACTORY() { + return (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT); +} + +/** Regex that matches locales with an RTL script. Taken from `goog.i18n.bidi.isRtlLanguage`. */ +const RTL_LOCALE_PATTERN = /^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i; +/** Resolves a string value to a specific direction. */ +function _resolveDirectionality(rawValue) { + const value = rawValue?.toLowerCase() || ''; + if (value === 'auto' && typeof navigator !== 'undefined' && navigator?.language) { + return RTL_LOCALE_PATTERN.test(navigator.language) ? 'rtl' : 'ltr'; + } + return value === 'rtl' ? 'rtl' : 'ltr'; +} +/** + * The directionality (LTR / RTL) context for the application (or a subtree of it). + * Exposes the current direction and a stream of direction changes. + */ +class Directionality { + constructor(_document) { + /** The current 'ltr' or 'rtl' value. */ + this.value = 'ltr'; + /** Stream that emits whenever the 'ltr' / 'rtl' state changes. */ + this.change = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + if (_document) { + const bodyDir = _document.body ? _document.body.dir : null; + const htmlDir = _document.documentElement ? _document.documentElement.dir : null; + this.value = _resolveDirectionality(bodyDir || htmlDir || 'ltr'); + } + } + ngOnDestroy() { + this.change.complete(); + } + static #_ = this.ɵfac = function Directionality_Factory(t) { + return new (t || Directionality)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](DIR_DOCUMENT, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: Directionality, + factory: Directionality.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](Directionality, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [DIR_DOCUMENT] + }] + }]; + }, null); +})(); + +/** + * Directive to listen for changes of direction of part of the DOM. + * + * Provides itself as Directionality such that descendant directives only need to ever inject + * Directionality to get the closest direction. + */ +class Dir { + constructor() { + /** Normalized direction that accounts for invalid/unsupported values. */ + this._dir = 'ltr'; + /** Whether the `value` has been set to its initial value. */ + this._isInitialized = false; + /** Event emitted when the direction changes. */ + this.change = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + } + /** @docs-private */ + get dir() { + return this._dir; + } + set dir(value) { + const previousValue = this._dir; + // Note: `_resolveDirectionality` resolves the language based on the browser's language, + // whereas the browser does it based on the content of the element. Since doing so based + // on the content can be expensive, for now we're doing the simpler matching. + this._dir = _resolveDirectionality(value); + this._rawDir = value; + if (previousValue !== this._dir && this._isInitialized) { + this.change.emit(this._dir); + } + } + /** Current layout direction of the element. */ + get value() { + return this.dir; + } + /** Initialize once default value has been set. */ + ngAfterContentInit() { + this._isInitialized = true; + } + ngOnDestroy() { + this.change.complete(); + } + static #_ = this.ɵfac = function Dir_Factory(t) { + return new (t || Dir)(); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: Dir, + selectors: [["", "dir", ""]], + hostVars: 1, + hostBindings: function Dir_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵattribute"]("dir", ctx._rawDir); + } + }, + inputs: { + dir: "dir" + }, + outputs: { + change: "dirChange" + }, + exportAs: ["dir"], + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: Directionality, + useExisting: Dir + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](Dir, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[dir]', + providers: [{ + provide: Directionality, + useExisting: Dir + }], + host: { + '[attr.dir]': '_rawDir' + }, + exportAs: 'dir' + }] + }], null, { + change: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output, + args: ['dirChange'] + }], + dir: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); +class BidiModule { + static #_ = this.ɵfac = function BidiModule_Factory(t) { + return new (t || BidiModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: BidiModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](BidiModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + exports: [Dir], + declarations: [Dir] + }] + }], null, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 55998: +/*!*********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/coercion.mjs ***! + \*********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ _isNumberValue: () => (/* binding */ _isNumberValue), +/* harmony export */ coerceArray: () => (/* binding */ coerceArray), +/* harmony export */ coerceBooleanProperty: () => (/* binding */ coerceBooleanProperty), +/* harmony export */ coerceCssPixelValue: () => (/* binding */ coerceCssPixelValue), +/* harmony export */ coerceElement: () => (/* binding */ coerceElement), +/* harmony export */ coerceNumberProperty: () => (/* binding */ coerceNumberProperty), +/* harmony export */ coerceStringArray: () => (/* binding */ coerceStringArray) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); + + +/** Coerces a data-bound value (typically a string) to a boolean. */ +function coerceBooleanProperty(value) { + return value != null && `${value}` !== 'false'; +} +function coerceNumberProperty(value, fallbackValue = 0) { + return _isNumberValue(value) ? Number(value) : fallbackValue; +} +/** + * Whether the provided value is considered a number. + * @docs-private + */ +function _isNumberValue(value) { + // parseFloat(value) handles most of the cases we're interested in (it treats null, empty string, + // and other non-number values as NaN, where Number just uses 0) but it considers the string + // '123hello' to be a valid number. Therefore we also check if Number(value) is NaN. + return !isNaN(parseFloat(value)) && !isNaN(Number(value)); +} +function coerceArray(value) { + return Array.isArray(value) ? value : [value]; +} + +/** Coerces a value to a CSS pixel value. */ +function coerceCssPixelValue(value) { + if (value == null) { + return ''; + } + return typeof value === 'string' ? value : `${value}px`; +} + +/** + * Coerces an ElementRef or an Element into an element. + * Useful for APIs that can accept either a ref or the native element itself. + */ +function coerceElement(elementOrRef) { + return elementOrRef instanceof _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef ? elementOrRef.nativeElement : elementOrRef; +} + +/** + * Coerces a value to an array of trimmed non-empty strings. + * Any input that is not an array, `null` or `undefined` will be turned into a string + * via `toString()` and subsequently split with the given separator. + * `null` and `undefined` will result in an empty array. + * This results in the following outcomes: + * - `null` -> `[]` + * - `[null]` -> `["null"]` + * - `["a", "b ", " "]` -> `["a", "b"]` + * - `[1, [2, 3]]` -> `["1", "2,3"]` + * - `[{ a: 0 }]` -> `["[object Object]"]` + * - `{ a: 0 }` -> `["[object", "Object]"]` + * + * Useful for defining CSS classes or table columns. + * @param value the value to coerce into an array of strings + * @param separator split-separator if value isn't an array + */ +function coerceStringArray(value, separator = /\s+/) { + const result = []; + if (value != null) { + const sourceValues = Array.isArray(value) ? value : `${value}`.split(separator); + for (const sourceValue of sourceValues) { + const trimmedString = `${sourceValue}`.trim(); + if (trimmedString) { + result.push(trimmedString); + } + } + } + return result; +} + + +/***/ }), + +/***/ 20636: +/*!************************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/collections.mjs ***! + \************************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ ArrayDataSource: () => (/* binding */ ArrayDataSource), +/* harmony export */ DataSource: () => (/* binding */ DataSource), +/* harmony export */ SelectionModel: () => (/* binding */ SelectionModel), +/* harmony export */ UniqueSelectionDispatcher: () => (/* binding */ UniqueSelectionDispatcher), +/* harmony export */ _DisposeViewRepeaterStrategy: () => (/* binding */ _DisposeViewRepeaterStrategy), +/* harmony export */ _RecycleViewRepeaterStrategy: () => (/* binding */ _RecycleViewRepeaterStrategy), +/* harmony export */ _VIEW_REPEATER_STRATEGY: () => (/* binding */ _VIEW_REPEATER_STRATEGY), +/* harmony export */ getMultipleValuesInSingleSelectionError: () => (/* binding */ getMultipleValuesInSingleSelectionError), +/* harmony export */ isDataSource: () => (/* binding */ isDataSource) +/* harmony export */ }); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs */ 19148); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 72450); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 9681); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); + + + +class DataSource {} +/** Checks whether an object is a data source. */ +function isDataSource(value) { + // Check if the value is a DataSource by observing if it has a connect function. Cannot + // be checked as an `instanceof DataSource` since people could create their own sources + // that match the interface, but don't extend DataSource. We also can't use `isObservable` + // here, because of some internal apps. + return value && typeof value.connect === 'function' && !(value instanceof rxjs__WEBPACK_IMPORTED_MODULE_0__.ConnectableObservable); +} + +/** DataSource wrapper for a native array. */ +class ArrayDataSource extends DataSource { + constructor(_data) { + super(); + this._data = _data; + } + connect() { + return (0,rxjs__WEBPACK_IMPORTED_MODULE_1__.isObservable)(this._data) ? this._data : (0,rxjs__WEBPACK_IMPORTED_MODULE_2__.of)(this._data); + } + disconnect() {} +} + +/** + * A repeater that destroys views when they are removed from a + * {@link ViewContainerRef}. When new items are inserted into the container, + * the repeater will always construct a new embedded view for each item. + * + * @template T The type for the embedded view's $implicit property. + * @template R The type for the item in each IterableDiffer change record. + * @template C The type for the context passed to each embedded view. + */ +class _DisposeViewRepeaterStrategy { + applyChanges(changes, viewContainerRef, itemContextFactory, itemValueResolver, itemViewChanged) { + changes.forEachOperation((record, adjustedPreviousIndex, currentIndex) => { + let view; + let operation; + if (record.previousIndex == null) { + const insertContext = itemContextFactory(record, adjustedPreviousIndex, currentIndex); + view = viewContainerRef.createEmbeddedView(insertContext.templateRef, insertContext.context, insertContext.index); + operation = 1 /* _ViewRepeaterOperation.INSERTED */; + } else if (currentIndex == null) { + viewContainerRef.remove(adjustedPreviousIndex); + operation = 3 /* _ViewRepeaterOperation.REMOVED */; + } else { + view = viewContainerRef.get(adjustedPreviousIndex); + viewContainerRef.move(view, currentIndex); + operation = 2 /* _ViewRepeaterOperation.MOVED */; + } + if (itemViewChanged) { + itemViewChanged({ + context: view?.context, + operation, + record + }); + } + }); + } + detach() {} +} + +/** + * A repeater that caches views when they are removed from a + * {@link ViewContainerRef}. When new items are inserted into the container, + * the repeater will reuse one of the cached views instead of creating a new + * embedded view. Recycling cached views reduces the quantity of expensive DOM + * inserts. + * + * @template T The type for the embedded view's $implicit property. + * @template R The type for the item in each IterableDiffer change record. + * @template C The type for the context passed to each embedded view. + */ +class _RecycleViewRepeaterStrategy { + constructor() { + /** + * The size of the cache used to store unused views. + * Setting the cache size to `0` will disable caching. Defaults to 20 views. + */ + this.viewCacheSize = 20; + /** + * View cache that stores embedded view instances that have been previously stamped out, + * but don't are not currently rendered. The view repeater will reuse these views rather than + * creating brand new ones. + * + * TODO(michaeljamesparsons) Investigate whether using a linked list would improve performance. + */ + this._viewCache = []; + } + /** Apply changes to the DOM. */ + applyChanges(changes, viewContainerRef, itemContextFactory, itemValueResolver, itemViewChanged) { + // Rearrange the views to put them in the right location. + changes.forEachOperation((record, adjustedPreviousIndex, currentIndex) => { + let view; + let operation; + if (record.previousIndex == null) { + // Item added. + const viewArgsFactory = () => itemContextFactory(record, adjustedPreviousIndex, currentIndex); + view = this._insertView(viewArgsFactory, currentIndex, viewContainerRef, itemValueResolver(record)); + operation = view ? 1 /* _ViewRepeaterOperation.INSERTED */ : 0 /* _ViewRepeaterOperation.REPLACED */; + } else if (currentIndex == null) { + // Item removed. + this._detachAndCacheView(adjustedPreviousIndex, viewContainerRef); + operation = 3 /* _ViewRepeaterOperation.REMOVED */; + } else { + // Item moved. + view = this._moveView(adjustedPreviousIndex, currentIndex, viewContainerRef, itemValueResolver(record)); + operation = 2 /* _ViewRepeaterOperation.MOVED */; + } + if (itemViewChanged) { + itemViewChanged({ + context: view?.context, + operation, + record + }); + } + }); + } + detach() { + for (const view of this._viewCache) { + view.destroy(); + } + this._viewCache = []; + } + /** + * Inserts a view for a new item, either from the cache or by creating a new + * one. Returns `undefined` if the item was inserted into a cached view. + */ + _insertView(viewArgsFactory, currentIndex, viewContainerRef, value) { + const cachedView = this._insertViewFromCache(currentIndex, viewContainerRef); + if (cachedView) { + cachedView.context.$implicit = value; + return undefined; + } + const viewArgs = viewArgsFactory(); + return viewContainerRef.createEmbeddedView(viewArgs.templateRef, viewArgs.context, viewArgs.index); + } + /** Detaches the view at the given index and inserts into the view cache. */ + _detachAndCacheView(index, viewContainerRef) { + const detachedView = viewContainerRef.detach(index); + this._maybeCacheView(detachedView, viewContainerRef); + } + /** Moves view at the previous index to the current index. */ + _moveView(adjustedPreviousIndex, currentIndex, viewContainerRef, value) { + const view = viewContainerRef.get(adjustedPreviousIndex); + viewContainerRef.move(view, currentIndex); + view.context.$implicit = value; + return view; + } + /** + * Cache the given detached view. If the cache is full, the view will be + * destroyed. + */ + _maybeCacheView(view, viewContainerRef) { + if (this._viewCache.length < this.viewCacheSize) { + this._viewCache.push(view); + } else { + const index = viewContainerRef.indexOf(view); + // The host component could remove views from the container outside of + // the view repeater. It's unlikely this will occur, but just in case, + // destroy the view on its own, otherwise destroy it through the + // container to ensure that all the references are removed. + if (index === -1) { + view.destroy(); + } else { + viewContainerRef.remove(index); + } + } + } + /** Inserts a recycled view from the cache at the given index. */ + _insertViewFromCache(index, viewContainerRef) { + const cachedView = this._viewCache.pop(); + if (cachedView) { + viewContainerRef.insert(cachedView, index); + } + return cachedView || null; + } +} + +/** + * Class to be used to power selecting one or more options from a list. + */ +class SelectionModel { + /** Selected values. */ + get selected() { + if (!this._selected) { + this._selected = Array.from(this._selection.values()); + } + return this._selected; + } + constructor(_multiple = false, initiallySelectedValues, _emitChanges = true, compareWith) { + this._multiple = _multiple; + this._emitChanges = _emitChanges; + this.compareWith = compareWith; + /** Currently-selected values. */ + this._selection = new Set(); + /** Keeps track of the deselected options that haven't been emitted by the change event. */ + this._deselectedToEmit = []; + /** Keeps track of the selected options that haven't been emitted by the change event. */ + this._selectedToEmit = []; + /** Event emitted when the value has changed. */ + this.changed = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + if (initiallySelectedValues && initiallySelectedValues.length) { + if (_multiple) { + initiallySelectedValues.forEach(value => this._markSelected(value)); + } else { + this._markSelected(initiallySelectedValues[0]); + } + // Clear the array in order to avoid firing the change event for preselected values. + this._selectedToEmit.length = 0; + } + } + /** + * Selects a value or an array of values. + * @param values The values to select + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + select(...values) { + this._verifyValueAssignment(values); + values.forEach(value => this._markSelected(value)); + const changed = this._hasQueuedChanges(); + this._emitChangeEvent(); + return changed; + } + /** + * Deselects a value or an array of values. + * @param values The values to deselect + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + deselect(...values) { + this._verifyValueAssignment(values); + values.forEach(value => this._unmarkSelected(value)); + const changed = this._hasQueuedChanges(); + this._emitChangeEvent(); + return changed; + } + /** + * Sets the selected values + * @param values The new selected values + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + setSelection(...values) { + this._verifyValueAssignment(values); + const oldValues = this.selected; + const newSelectedSet = new Set(values); + values.forEach(value => this._markSelected(value)); + oldValues.filter(value => !newSelectedSet.has(value)).forEach(value => this._unmarkSelected(value)); + const changed = this._hasQueuedChanges(); + this._emitChangeEvent(); + return changed; + } + /** + * Toggles a value between selected and deselected. + * @param value The value to toggle + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + toggle(value) { + return this.isSelected(value) ? this.deselect(value) : this.select(value); + } + /** + * Clears all of the selected values. + * @param flushEvent Whether to flush the changes in an event. + * If false, the changes to the selection will be flushed along with the next event. + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + clear(flushEvent = true) { + this._unmarkAll(); + const changed = this._hasQueuedChanges(); + if (flushEvent) { + this._emitChangeEvent(); + } + return changed; + } + /** + * Determines whether a value is selected. + */ + isSelected(value) { + return this._selection.has(this._getConcreteValue(value)); + } + /** + * Determines whether the model does not have a value. + */ + isEmpty() { + return this._selection.size === 0; + } + /** + * Determines whether the model has a value. + */ + hasValue() { + return !this.isEmpty(); + } + /** + * Sorts the selected values based on a predicate function. + */ + sort(predicate) { + if (this._multiple && this.selected) { + this._selected.sort(predicate); + } + } + /** + * Gets whether multiple values can be selected. + */ + isMultipleSelection() { + return this._multiple; + } + /** Emits a change event and clears the records of selected and deselected values. */ + _emitChangeEvent() { + // Clear the selected values so they can be re-cached. + this._selected = null; + if (this._selectedToEmit.length || this._deselectedToEmit.length) { + this.changed.next({ + source: this, + added: this._selectedToEmit, + removed: this._deselectedToEmit + }); + this._deselectedToEmit = []; + this._selectedToEmit = []; + } + } + /** Selects a value. */ + _markSelected(value) { + value = this._getConcreteValue(value); + if (!this.isSelected(value)) { + if (!this._multiple) { + this._unmarkAll(); + } + if (!this.isSelected(value)) { + this._selection.add(value); + } + if (this._emitChanges) { + this._selectedToEmit.push(value); + } + } + } + /** Deselects a value. */ + _unmarkSelected(value) { + value = this._getConcreteValue(value); + if (this.isSelected(value)) { + this._selection.delete(value); + if (this._emitChanges) { + this._deselectedToEmit.push(value); + } + } + } + /** Clears out the selected values. */ + _unmarkAll() { + if (!this.isEmpty()) { + this._selection.forEach(value => this._unmarkSelected(value)); + } + } + /** + * Verifies the value assignment and throws an error if the specified value array is + * including multiple values while the selection model is not supporting multiple values. + */ + _verifyValueAssignment(values) { + if (values.length > 1 && !this._multiple && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw getMultipleValuesInSingleSelectionError(); + } + } + /** Whether there are queued up change to be emitted. */ + _hasQueuedChanges() { + return !!(this._deselectedToEmit.length || this._selectedToEmit.length); + } + /** Returns a value that is comparable to inputValue by applying compareWith function, returns the same inputValue otherwise. */ + _getConcreteValue(inputValue) { + if (!this.compareWith) { + return inputValue; + } else { + for (let selectedValue of this._selection) { + if (this.compareWith(inputValue, selectedValue)) { + return selectedValue; + } + } + return inputValue; + } + } +} +/** + * Returns an error that reports that multiple values are passed into a selection model + * with a single value. + * @docs-private + */ +function getMultipleValuesInSingleSelectionError() { + return Error('Cannot pass multiple values into SelectionModel with single-value mode.'); +} + +/** + * Class to coordinate unique selection based on name. + * Intended to be consumed as an Angular service. + * This service is needed because native radio change events are only fired on the item currently + * being selected, and we still need to uncheck the previous selection. + * + * This service does not *store* any IDs and names because they may change at any time, so it is + * less error-prone if they are simply passed through when the events occur. + */ +class UniqueSelectionDispatcher { + constructor() { + this._listeners = []; + } + /** + * Notify other items that selection for the given name has been set. + * @param id ID of the item. + * @param name Name of the item. + */ + notify(id, name) { + for (let listener of this._listeners) { + listener(id, name); + } + } + /** + * Listen for future changes to item selection. + * @return Function used to deregister listener + */ + listen(listener) { + this._listeners.push(listener); + return () => { + this._listeners = this._listeners.filter(registered => { + return listener !== registered; + }); + }; + } + ngOnDestroy() { + this._listeners = []; + } + static #_ = this.ɵfac = function UniqueSelectionDispatcher_Factory(t) { + return new (t || UniqueSelectionDispatcher)(); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_4__["ɵɵdefineInjectable"]({ + token: UniqueSelectionDispatcher, + factory: UniqueSelectionDispatcher.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_4__["ɵsetClassMetadata"](UniqueSelectionDispatcher, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_4__.Injectable, + args: [{ + providedIn: 'root' + }] + }], null, null); +})(); + +/** + * Injection token for {@link _ViewRepeater}. This token is for use by Angular Material only. + * @docs-private + */ +const _VIEW_REPEATER_STRATEGY = new _angular_core__WEBPACK_IMPORTED_MODULE_4__.InjectionToken('_ViewRepeater'); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 17792: +/*!**********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/drag-drop.mjs ***! + \**********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CDK_DRAG_CONFIG: () => (/* binding */ CDK_DRAG_CONFIG), +/* harmony export */ CDK_DRAG_HANDLE: () => (/* binding */ CDK_DRAG_HANDLE), +/* harmony export */ CDK_DRAG_PARENT: () => (/* binding */ CDK_DRAG_PARENT), +/* harmony export */ CDK_DRAG_PLACEHOLDER: () => (/* binding */ CDK_DRAG_PLACEHOLDER), +/* harmony export */ CDK_DRAG_PREVIEW: () => (/* binding */ CDK_DRAG_PREVIEW), +/* harmony export */ CDK_DROP_LIST: () => (/* binding */ CDK_DROP_LIST), +/* harmony export */ CDK_DROP_LIST_GROUP: () => (/* binding */ CDK_DROP_LIST_GROUP), +/* harmony export */ CdkDrag: () => (/* binding */ CdkDrag), +/* harmony export */ CdkDragHandle: () => (/* binding */ CdkDragHandle), +/* harmony export */ CdkDragPlaceholder: () => (/* binding */ CdkDragPlaceholder), +/* harmony export */ CdkDragPreview: () => (/* binding */ CdkDragPreview), +/* harmony export */ CdkDropList: () => (/* binding */ CdkDropList), +/* harmony export */ CdkDropListGroup: () => (/* binding */ CdkDropListGroup), +/* harmony export */ DragDrop: () => (/* binding */ DragDrop), +/* harmony export */ DragDropModule: () => (/* binding */ DragDropModule), +/* harmony export */ DragDropRegistry: () => (/* binding */ DragDropRegistry), +/* harmony export */ DragRef: () => (/* binding */ DragRef), +/* harmony export */ DropListRef: () => (/* binding */ DropListRef), +/* harmony export */ copyArrayItem: () => (/* binding */ copyArrayItem), +/* harmony export */ moveItemInArray: () => (/* binding */ moveItemInArray), +/* harmony export */ transferArrayItem: () => (/* binding */ transferArrayItem) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/cdk/scrolling */ 50275); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_cdk_a11y__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/cdk/a11y */ 93170); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 17827); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs */ 82727); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 89718); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs/operators */ 46939); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! rxjs/operators */ 1062); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! rxjs/operators */ 15746); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! @angular/cdk/bidi */ 24565); + + + + + + + + + + + + +/** + * Shallow-extends a stylesheet object with another stylesheet-like object. + * Note that the keys in `source` have to be dash-cased. + * @docs-private + */ +function extendStyles(dest, source, importantProperties) { + for (let key in source) { + if (source.hasOwnProperty(key)) { + const value = source[key]; + if (value) { + dest.setProperty(key, value, importantProperties?.has(key) ? 'important' : ''); + } else { + dest.removeProperty(key); + } + } + } + return dest; +} +/** + * Toggles whether the native drag interactions should be enabled for an element. + * @param element Element on which to toggle the drag interactions. + * @param enable Whether the drag interactions should be enabled. + * @docs-private + */ +function toggleNativeDragInteractions(element, enable) { + const userSelect = enable ? '' : 'none'; + extendStyles(element.style, { + 'touch-action': enable ? '' : 'none', + '-webkit-user-drag': enable ? '' : 'none', + '-webkit-tap-highlight-color': enable ? '' : 'transparent', + 'user-select': userSelect, + '-ms-user-select': userSelect, + '-webkit-user-select': userSelect, + '-moz-user-select': userSelect + }); +} +/** + * Toggles whether an element is visible while preserving its dimensions. + * @param element Element whose visibility to toggle + * @param enable Whether the element should be visible. + * @param importantProperties Properties to be set as `!important`. + * @docs-private + */ +function toggleVisibility(element, enable, importantProperties) { + extendStyles(element.style, { + position: enable ? '' : 'fixed', + top: enable ? '' : '0', + opacity: enable ? '' : '0', + left: enable ? '' : '-999em' + }, importantProperties); +} +/** + * Combines a transform string with an optional other transform + * that exited before the base transform was applied. + */ +function combineTransforms(transform, initialTransform) { + return initialTransform && initialTransform != 'none' ? transform + ' ' + initialTransform : transform; +} + +/** Parses a CSS time value to milliseconds. */ +function parseCssTimeUnitsToMs(value) { + // Some browsers will return it in seconds, whereas others will return milliseconds. + const multiplier = value.toLowerCase().indexOf('ms') > -1 ? 1 : 1000; + return parseFloat(value) * multiplier; +} +/** Gets the transform transition duration, including the delay, of an element in milliseconds. */ +function getTransformTransitionDurationInMs(element) { + const computedStyle = getComputedStyle(element); + const transitionedProperties = parseCssPropertyValue(computedStyle, 'transition-property'); + const property = transitionedProperties.find(prop => prop === 'transform' || prop === 'all'); + // If there's no transition for `all` or `transform`, we shouldn't do anything. + if (!property) { + return 0; + } + // Get the index of the property that we're interested in and match + // it up to the same index in `transition-delay` and `transition-duration`. + const propertyIndex = transitionedProperties.indexOf(property); + const rawDurations = parseCssPropertyValue(computedStyle, 'transition-duration'); + const rawDelays = parseCssPropertyValue(computedStyle, 'transition-delay'); + return parseCssTimeUnitsToMs(rawDurations[propertyIndex]) + parseCssTimeUnitsToMs(rawDelays[propertyIndex]); +} +/** Parses out multiple values from a computed style into an array. */ +function parseCssPropertyValue(computedStyle, name) { + const value = computedStyle.getPropertyValue(name); + return value.split(',').map(part => part.trim()); +} + +/** Gets a mutable version of an element's bounding `ClientRect`. */ +function getMutableClientRect(element) { + const clientRect = element.getBoundingClientRect(); + // We need to clone the `clientRect` here, because all the values on it are readonly + // and we need to be able to update them. Also we can't use a spread here, because + // the values on a `ClientRect` aren't own properties. See: + // https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect#Notes + return { + top: clientRect.top, + right: clientRect.right, + bottom: clientRect.bottom, + left: clientRect.left, + width: clientRect.width, + height: clientRect.height, + x: clientRect.x, + y: clientRect.y + }; +} +/** + * Checks whether some coordinates are within a `ClientRect`. + * @param clientRect ClientRect that is being checked. + * @param x Coordinates along the X axis. + * @param y Coordinates along the Y axis. + */ +function isInsideClientRect(clientRect, x, y) { + const { + top, + bottom, + left, + right + } = clientRect; + return y >= top && y <= bottom && x >= left && x <= right; +} +/** + * Updates the top/left positions of a `ClientRect`, as well as their bottom/right counterparts. + * @param clientRect `ClientRect` that should be updated. + * @param top Amount to add to the `top` position. + * @param left Amount to add to the `left` position. + */ +function adjustClientRect(clientRect, top, left) { + clientRect.top += top; + clientRect.bottom = clientRect.top + clientRect.height; + clientRect.left += left; + clientRect.right = clientRect.left + clientRect.width; +} +/** + * Checks whether the pointer coordinates are close to a ClientRect. + * @param rect ClientRect to check against. + * @param threshold Threshold around the ClientRect. + * @param pointerX Coordinates along the X axis. + * @param pointerY Coordinates along the Y axis. + */ +function isPointerNearClientRect(rect, threshold, pointerX, pointerY) { + const { + top, + right, + bottom, + left, + width, + height + } = rect; + const xThreshold = width * threshold; + const yThreshold = height * threshold; + return pointerY > top - yThreshold && pointerY < bottom + yThreshold && pointerX > left - xThreshold && pointerX < right + xThreshold; +} + +/** Keeps track of the scroll position and dimensions of the parents of an element. */ +class ParentPositionTracker { + constructor(_document) { + this._document = _document; + /** Cached positions of the scrollable parent elements. */ + this.positions = new Map(); + } + /** Clears the cached positions. */ + clear() { + this.positions.clear(); + } + /** Caches the positions. Should be called at the beginning of a drag sequence. */ + cache(elements) { + this.clear(); + this.positions.set(this._document, { + scrollPosition: this.getViewportScrollPosition() + }); + elements.forEach(element => { + this.positions.set(element, { + scrollPosition: { + top: element.scrollTop, + left: element.scrollLeft + }, + clientRect: getMutableClientRect(element) + }); + }); + } + /** Handles scrolling while a drag is taking place. */ + handleScroll(event) { + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event); + const cachedPosition = this.positions.get(target); + if (!cachedPosition) { + return null; + } + const scrollPosition = cachedPosition.scrollPosition; + let newTop; + let newLeft; + if (target === this._document) { + const viewportScrollPosition = this.getViewportScrollPosition(); + newTop = viewportScrollPosition.top; + newLeft = viewportScrollPosition.left; + } else { + newTop = target.scrollTop; + newLeft = target.scrollLeft; + } + const topDifference = scrollPosition.top - newTop; + const leftDifference = scrollPosition.left - newLeft; + // Go through and update the cached positions of the scroll + // parents that are inside the element that was scrolled. + this.positions.forEach((position, node) => { + if (position.clientRect && target !== node && target.contains(node)) { + adjustClientRect(position.clientRect, topDifference, leftDifference); + } + }); + scrollPosition.top = newTop; + scrollPosition.left = newLeft; + return { + top: topDifference, + left: leftDifference + }; + } + /** + * Gets the scroll position of the viewport. Note that we use the scrollX and scrollY directly, + * instead of going through the `ViewportRuler`, because the first value the ruler looks at is + * the top/left offset of the `document.documentElement` which works for most cases, but breaks + * if the element is offset by something like the `BlockScrollStrategy`. + */ + getViewportScrollPosition() { + return { + top: window.scrollY, + left: window.scrollX + }; + } +} + +/** Creates a deep clone of an element. */ +function deepCloneNode(node) { + const clone = node.cloneNode(true); + const descendantsWithId = clone.querySelectorAll('[id]'); + const nodeName = node.nodeName.toLowerCase(); + // Remove the `id` to avoid having multiple elements with the same id on the page. + clone.removeAttribute('id'); + for (let i = 0; i < descendantsWithId.length; i++) { + descendantsWithId[i].removeAttribute('id'); + } + if (nodeName === 'canvas') { + transferCanvasData(node, clone); + } else if (nodeName === 'input' || nodeName === 'select' || nodeName === 'textarea') { + transferInputData(node, clone); + } + transferData('canvas', node, clone, transferCanvasData); + transferData('input, textarea, select', node, clone, transferInputData); + return clone; +} +/** Matches elements between an element and its clone and allows for their data to be cloned. */ +function transferData(selector, node, clone, callback) { + const descendantElements = node.querySelectorAll(selector); + if (descendantElements.length) { + const cloneElements = clone.querySelectorAll(selector); + for (let i = 0; i < descendantElements.length; i++) { + callback(descendantElements[i], cloneElements[i]); + } + } +} +// Counter for unique cloned radio button names. +let cloneUniqueId = 0; +/** Transfers the data of one input element to another. */ +function transferInputData(source, clone) { + // Browsers throw an error when assigning the value of a file input programmatically. + if (clone.type !== 'file') { + clone.value = source.value; + } + // Radio button `name` attributes must be unique for radio button groups + // otherwise original radio buttons can lose their checked state + // once the clone is inserted in the DOM. + if (clone.type === 'radio' && clone.name) { + clone.name = `mat-clone-${clone.name}-${cloneUniqueId++}`; + } +} +/** Transfers the data of one canvas element to another. */ +function transferCanvasData(source, clone) { + const context = clone.getContext('2d'); + if (context) { + // In some cases `drawImage` can throw (e.g. if the canvas size is 0x0). + // We can't do much about it so just ignore the error. + try { + context.drawImage(source, 0, 0); + } catch {} + } +} + +/** Options that can be used to bind a passive event listener. */ +const passiveEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__.normalizePassiveListenerOptions)({ + passive: true +}); +/** Options that can be used to bind an active event listener. */ +const activeEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__.normalizePassiveListenerOptions)({ + passive: false +}); +/** + * Time in milliseconds for which to ignore mouse events, after + * receiving a touch event. Used to avoid doing double work for + * touch devices where the browser fires fake mouse events, in + * addition to touch events. + */ +const MOUSE_EVENT_IGNORE_TIME = 800; +/** Inline styles to be set as `!important` while dragging. */ +const dragImportantProperties = new Set([ +// Needs to be important, because some `mat-table` sets `position: sticky !important`. See #22781. +'position']); +/** + * Reference to a draggable item. Used to manipulate or dispose of the item. + */ +class DragRef { + /** Whether starting to drag this element is disabled. */ + get disabled() { + return this._disabled || !!(this._dropContainer && this._dropContainer.disabled); + } + set disabled(value) { + const newValue = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + if (newValue !== this._disabled) { + this._disabled = newValue; + this._toggleNativeDragInteractions(); + this._handles.forEach(handle => toggleNativeDragInteractions(handle, newValue)); + } + } + constructor(element, _config, _document, _ngZone, _viewportRuler, _dragDropRegistry) { + this._config = _config; + this._document = _document; + this._ngZone = _ngZone; + this._viewportRuler = _viewportRuler; + this._dragDropRegistry = _dragDropRegistry; + /** + * CSS `transform` applied to the element when it isn't being dragged. We need a + * passive transform in order for the dragged element to retain its new position + * after the user has stopped dragging and because we need to know the relative + * position in case they start dragging again. This corresponds to `element.style.transform`. + */ + this._passiveTransform = { + x: 0, + y: 0 + }; + /** CSS `transform` that is applied to the element while it's being dragged. */ + this._activeTransform = { + x: 0, + y: 0 + }; + /** + * Whether the dragging sequence has been started. Doesn't + * necessarily mean that the element has been moved. + */ + this._hasStartedDragging = false; + /** Emits when the item is being moved. */ + this._moveEvents = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Subscription to pointer movement events. */ + this._pointerMoveSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Subscription to the event that is dispatched when the user lifts their pointer. */ + this._pointerUpSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Subscription to the viewport being scrolled. */ + this._scrollSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Subscription to the viewport being resized. */ + this._resizeSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Cached reference to the boundary element. */ + this._boundaryElement = null; + /** Whether the native dragging interactions have been enabled on the root element. */ + this._nativeInteractionsEnabled = true; + /** Elements that can be used to drag the draggable item. */ + this._handles = []; + /** Registered handles that are currently disabled. */ + this._disabledHandles = new Set(); + /** Layout direction of the item. */ + this._direction = 'ltr'; + /** + * Amount of milliseconds to wait after the user has put their + * pointer down before starting to drag the element. + */ + this.dragStartDelay = 0; + this._disabled = false; + /** Emits as the drag sequence is being prepared. */ + this.beforeStarted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user starts dragging the item. */ + this.started = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user has released a drag item, before any animations have started. */ + this.released = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user stops dragging an item in the container. */ + this.ended = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user has moved the item into a new container. */ + this.entered = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user removes the item its container by dragging it into another container. */ + this.exited = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user drops the item inside a container. */ + this.dropped = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits as the user is dragging the item. Use with caution, + * because this event will fire for every pixel that the user has dragged. + */ + this.moved = this._moveEvents; + /** Handler for the `mousedown`/`touchstart` events. */ + this._pointerDown = event => { + this.beforeStarted.next(); + // Delegate the event based on whether it started from a handle or the element itself. + if (this._handles.length) { + const targetHandle = this._getTargetHandle(event); + if (targetHandle && !this._disabledHandles.has(targetHandle) && !this.disabled) { + this._initializeDragSequence(targetHandle, event); + } + } else if (!this.disabled) { + this._initializeDragSequence(this._rootElement, event); + } + }; + /** Handler that is invoked when the user moves their pointer after they've initiated a drag. */ + this._pointerMove = event => { + const pointerPosition = this._getPointerPositionOnPage(event); + if (!this._hasStartedDragging) { + const distanceX = Math.abs(pointerPosition.x - this._pickupPositionOnPage.x); + const distanceY = Math.abs(pointerPosition.y - this._pickupPositionOnPage.y); + const isOverThreshold = distanceX + distanceY >= this._config.dragStartThreshold; + // Only start dragging after the user has moved more than the minimum distance in either + // direction. Note that this is preferable over doing something like `skip(minimumDistance)` + // in the `pointerMove` subscription, because we're not guaranteed to have one move event + // per pixel of movement (e.g. if the user moves their pointer quickly). + if (isOverThreshold) { + const isDelayElapsed = Date.now() >= this._dragStartTime + this._getDragStartDelay(event); + const container = this._dropContainer; + if (!isDelayElapsed) { + this._endDragSequence(event); + return; + } + // Prevent other drag sequences from starting while something in the container is still + // being dragged. This can happen while we're waiting for the drop animation to finish + // and can cause errors, because some elements might still be moving around. + if (!container || !container.isDragging() && !container.isReceiving()) { + // Prevent the default action as soon as the dragging sequence is considered as + // "started" since waiting for the next event can allow the device to begin scrolling. + event.preventDefault(); + this._hasStartedDragging = true; + this._ngZone.run(() => this._startDragSequence(event)); + } + } + return; + } + // We prevent the default action down here so that we know that dragging has started. This is + // important for touch devices where doing this too early can unnecessarily block scrolling, + // if there's a dragging delay. + event.preventDefault(); + const constrainedPointerPosition = this._getConstrainedPointerPosition(pointerPosition); + this._hasMoved = true; + this._lastKnownPointerPosition = pointerPosition; + this._updatePointerDirectionDelta(constrainedPointerPosition); + if (this._dropContainer) { + this._updateActiveDropContainer(constrainedPointerPosition, pointerPosition); + } else { + // If there's a position constraint function, we want the element's top/left to be at the + // specific position on the page. Use the initial position as a reference if that's the case. + const offset = this.constrainPosition ? this._initialClientRect : this._pickupPositionOnPage; + const activeTransform = this._activeTransform; + activeTransform.x = constrainedPointerPosition.x - offset.x + this._passiveTransform.x; + activeTransform.y = constrainedPointerPosition.y - offset.y + this._passiveTransform.y; + this._applyRootElementTransform(activeTransform.x, activeTransform.y); + } + // Since this event gets fired for every pixel while dragging, we only + // want to fire it if the consumer opted into it. Also we have to + // re-enter the zone because we run all of the events on the outside. + if (this._moveEvents.observers.length) { + this._ngZone.run(() => { + this._moveEvents.next({ + source: this, + pointerPosition: constrainedPointerPosition, + event, + distance: this._getDragDistance(constrainedPointerPosition), + delta: this._pointerDirectionDelta + }); + }); + } + }; + /** Handler that is invoked when the user lifts their pointer up, after initiating a drag. */ + this._pointerUp = event => { + this._endDragSequence(event); + }; + /** Handles a native `dragstart` event. */ + this._nativeDragStart = event => { + if (this._handles.length) { + const targetHandle = this._getTargetHandle(event); + if (targetHandle && !this._disabledHandles.has(targetHandle) && !this.disabled) { + event.preventDefault(); + } + } else if (!this.disabled) { + // Usually this isn't necessary since the we prevent the default action in `pointerDown`, + // but some cases like dragging of links can slip through (see #24403). + event.preventDefault(); + } + }; + this.withRootElement(element).withParent(_config.parentDragRef || null); + this._parentPositions = new ParentPositionTracker(_document); + _dragDropRegistry.registerDragItem(this); + } + /** + * Returns the element that is being used as a placeholder + * while the current element is being dragged. + */ + getPlaceholderElement() { + return this._placeholder; + } + /** Returns the root draggable element. */ + getRootElement() { + return this._rootElement; + } + /** + * Gets the currently-visible element that represents the drag item. + * While dragging this is the placeholder, otherwise it's the root element. + */ + getVisibleElement() { + return this.isDragging() ? this.getPlaceholderElement() : this.getRootElement(); + } + /** Registers the handles that can be used to drag the element. */ + withHandles(handles) { + this._handles = handles.map(handle => (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(handle)); + this._handles.forEach(handle => toggleNativeDragInteractions(handle, this.disabled)); + this._toggleNativeDragInteractions(); + // Delete any lingering disabled handles that may have been destroyed. Note that we re-create + // the set, rather than iterate over it and filter out the destroyed handles, because while + // the ES spec allows for sets to be modified while they're being iterated over, some polyfills + // use an array internally which may throw an error. + const disabledHandles = new Set(); + this._disabledHandles.forEach(handle => { + if (this._handles.indexOf(handle) > -1) { + disabledHandles.add(handle); + } + }); + this._disabledHandles = disabledHandles; + return this; + } + /** + * Registers the template that should be used for the drag preview. + * @param template Template that from which to stamp out the preview. + */ + withPreviewTemplate(template) { + this._previewTemplate = template; + return this; + } + /** + * Registers the template that should be used for the drag placeholder. + * @param template Template that from which to stamp out the placeholder. + */ + withPlaceholderTemplate(template) { + this._placeholderTemplate = template; + return this; + } + /** + * Sets an alternate drag root element. The root element is the element that will be moved as + * the user is dragging. Passing an alternate root element is useful when trying to enable + * dragging on an element that you might not have access to. + */ + withRootElement(rootElement) { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(rootElement); + if (element !== this._rootElement) { + if (this._rootElement) { + this._removeRootElementListeners(this._rootElement); + } + this._ngZone.runOutsideAngular(() => { + element.addEventListener('mousedown', this._pointerDown, activeEventListenerOptions); + element.addEventListener('touchstart', this._pointerDown, passiveEventListenerOptions); + element.addEventListener('dragstart', this._nativeDragStart, activeEventListenerOptions); + }); + this._initialTransform = undefined; + this._rootElement = element; + } + if (typeof SVGElement !== 'undefined' && this._rootElement instanceof SVGElement) { + this._ownerSVGElement = this._rootElement.ownerSVGElement; + } + return this; + } + /** + * Element to which the draggable's position will be constrained. + */ + withBoundaryElement(boundaryElement) { + this._boundaryElement = boundaryElement ? (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(boundaryElement) : null; + this._resizeSubscription.unsubscribe(); + if (boundaryElement) { + this._resizeSubscription = this._viewportRuler.change(10).subscribe(() => this._containInsideBoundaryOnResize()); + } + return this; + } + /** Sets the parent ref that the ref is nested in. */ + withParent(parent) { + this._parentDragRef = parent; + return this; + } + /** Removes the dragging functionality from the DOM element. */ + dispose() { + this._removeRootElementListeners(this._rootElement); + // Do this check before removing from the registry since it'll + // stop being considered as dragged once it is removed. + if (this.isDragging()) { + // Since we move out the element to the end of the body while it's being + // dragged, we have to make sure that it's removed if it gets destroyed. + this._rootElement?.remove(); + } + this._anchor?.remove(); + this._destroyPreview(); + this._destroyPlaceholder(); + this._dragDropRegistry.removeDragItem(this); + this._removeSubscriptions(); + this.beforeStarted.complete(); + this.started.complete(); + this.released.complete(); + this.ended.complete(); + this.entered.complete(); + this.exited.complete(); + this.dropped.complete(); + this._moveEvents.complete(); + this._handles = []; + this._disabledHandles.clear(); + this._dropContainer = undefined; + this._resizeSubscription.unsubscribe(); + this._parentPositions.clear(); + this._boundaryElement = this._rootElement = this._ownerSVGElement = this._placeholderTemplate = this._previewTemplate = this._anchor = this._parentDragRef = null; + } + /** Checks whether the element is currently being dragged. */ + isDragging() { + return this._hasStartedDragging && this._dragDropRegistry.isDragging(this); + } + /** Resets a standalone drag item to its initial position. */ + reset() { + this._rootElement.style.transform = this._initialTransform || ''; + this._activeTransform = { + x: 0, + y: 0 + }; + this._passiveTransform = { + x: 0, + y: 0 + }; + } + /** + * Sets a handle as disabled. While a handle is disabled, it'll capture and interrupt dragging. + * @param handle Handle element that should be disabled. + */ + disableHandle(handle) { + if (!this._disabledHandles.has(handle) && this._handles.indexOf(handle) > -1) { + this._disabledHandles.add(handle); + toggleNativeDragInteractions(handle, true); + } + } + /** + * Enables a handle, if it has been disabled. + * @param handle Handle element to be enabled. + */ + enableHandle(handle) { + if (this._disabledHandles.has(handle)) { + this._disabledHandles.delete(handle); + toggleNativeDragInteractions(handle, this.disabled); + } + } + /** Sets the layout direction of the draggable item. */ + withDirection(direction) { + this._direction = direction; + return this; + } + /** Sets the container that the item is part of. */ + _withDropContainer(container) { + this._dropContainer = container; + } + /** + * Gets the current position in pixels the draggable outside of a drop container. + */ + getFreeDragPosition() { + const position = this.isDragging() ? this._activeTransform : this._passiveTransform; + return { + x: position.x, + y: position.y + }; + } + /** + * Sets the current position in pixels the draggable outside of a drop container. + * @param value New position to be set. + */ + setFreeDragPosition(value) { + this._activeTransform = { + x: 0, + y: 0 + }; + this._passiveTransform.x = value.x; + this._passiveTransform.y = value.y; + if (!this._dropContainer) { + this._applyRootElementTransform(value.x, value.y); + } + return this; + } + /** + * Sets the container into which to insert the preview element. + * @param value Container into which to insert the preview. + */ + withPreviewContainer(value) { + this._previewContainer = value; + return this; + } + /** Updates the item's sort order based on the last-known pointer position. */ + _sortFromLastPointerPosition() { + const position = this._lastKnownPointerPosition; + if (position && this._dropContainer) { + this._updateActiveDropContainer(this._getConstrainedPointerPosition(position), position); + } + } + /** Unsubscribes from the global subscriptions. */ + _removeSubscriptions() { + this._pointerMoveSubscription.unsubscribe(); + this._pointerUpSubscription.unsubscribe(); + this._scrollSubscription.unsubscribe(); + } + /** Destroys the preview element and its ViewRef. */ + _destroyPreview() { + this._preview?.remove(); + this._previewRef?.destroy(); + this._preview = this._previewRef = null; + } + /** Destroys the placeholder element and its ViewRef. */ + _destroyPlaceholder() { + this._placeholder?.remove(); + this._placeholderRef?.destroy(); + this._placeholder = this._placeholderRef = null; + } + /** + * Clears subscriptions and stops the dragging sequence. + * @param event Browser event object that ended the sequence. + */ + _endDragSequence(event) { + // Note that here we use `isDragging` from the service, rather than from `this`. + // The difference is that the one from the service reflects whether a dragging sequence + // has been initiated, whereas the one on `this` includes whether the user has passed + // the minimum dragging threshold. + if (!this._dragDropRegistry.isDragging(this)) { + return; + } + this._removeSubscriptions(); + this._dragDropRegistry.stopDragging(this); + this._toggleNativeDragInteractions(); + if (this._handles) { + this._rootElement.style.webkitTapHighlightColor = this._rootElementTapHighlight; + } + if (!this._hasStartedDragging) { + return; + } + this.released.next({ + source: this, + event + }); + if (this._dropContainer) { + // Stop scrolling immediately, instead of waiting for the animation to finish. + this._dropContainer._stopScrolling(); + this._animatePreviewToPlaceholder().then(() => { + this._cleanupDragArtifacts(event); + this._cleanupCachedDimensions(); + this._dragDropRegistry.stopDragging(this); + }); + } else { + // Convert the active transform into a passive one. This means that next time + // the user starts dragging the item, its position will be calculated relatively + // to the new passive transform. + this._passiveTransform.x = this._activeTransform.x; + const pointerPosition = this._getPointerPositionOnPage(event); + this._passiveTransform.y = this._activeTransform.y; + this._ngZone.run(() => { + this.ended.next({ + source: this, + distance: this._getDragDistance(pointerPosition), + dropPoint: pointerPosition, + event + }); + }); + this._cleanupCachedDimensions(); + this._dragDropRegistry.stopDragging(this); + } + } + /** Starts the dragging sequence. */ + _startDragSequence(event) { + if (isTouchEvent(event)) { + this._lastTouchEventTime = Date.now(); + } + this._toggleNativeDragInteractions(); + const dropContainer = this._dropContainer; + if (dropContainer) { + const element = this._rootElement; + const parent = element.parentNode; + const placeholder = this._placeholder = this._createPlaceholderElement(); + const anchor = this._anchor = this._anchor || this._document.createComment(''); + // Needs to happen before the root element is moved. + const shadowRoot = this._getShadowRoot(); + // Insert an anchor node so that we can restore the element's position in the DOM. + parent.insertBefore(anchor, element); + // There's no risk of transforms stacking when inside a drop container so + // we can keep the initial transform up to date any time dragging starts. + this._initialTransform = element.style.transform || ''; + // Create the preview after the initial transform has + // been cached, because it can be affected by the transform. + this._preview = this._createPreviewElement(); + // We move the element out at the end of the body and we make it hidden, because keeping it in + // place will throw off the consumer's `:last-child` selectors. We can't remove the element + // from the DOM completely, because iOS will stop firing all subsequent events in the chain. + toggleVisibility(element, false, dragImportantProperties); + this._document.body.appendChild(parent.replaceChild(placeholder, element)); + this._getPreviewInsertionPoint(parent, shadowRoot).appendChild(this._preview); + this.started.next({ + source: this, + event + }); // Emit before notifying the container. + dropContainer.start(); + this._initialContainer = dropContainer; + this._initialIndex = dropContainer.getItemIndex(this); + } else { + this.started.next({ + source: this, + event + }); + this._initialContainer = this._initialIndex = undefined; + } + // Important to run after we've called `start` on the parent container + // so that it has had time to resolve its scrollable parents. + this._parentPositions.cache(dropContainer ? dropContainer.getScrollableParents() : []); + } + /** + * Sets up the different variables and subscriptions + * that will be necessary for the dragging sequence. + * @param referenceElement Element that started the drag sequence. + * @param event Browser event object that started the sequence. + */ + _initializeDragSequence(referenceElement, event) { + // Stop propagation if the item is inside another + // draggable so we don't start multiple drag sequences. + if (this._parentDragRef) { + event.stopPropagation(); + } + const isDragging = this.isDragging(); + const isTouchSequence = isTouchEvent(event); + const isAuxiliaryMouseButton = !isTouchSequence && event.button !== 0; + const rootElement = this._rootElement; + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event); + const isSyntheticEvent = !isTouchSequence && this._lastTouchEventTime && this._lastTouchEventTime + MOUSE_EVENT_IGNORE_TIME > Date.now(); + const isFakeEvent = isTouchSequence ? (0,_angular_cdk_a11y__WEBPACK_IMPORTED_MODULE_4__.isFakeTouchstartFromScreenReader)(event) : (0,_angular_cdk_a11y__WEBPACK_IMPORTED_MODULE_4__.isFakeMousedownFromScreenReader)(event); + // If the event started from an element with the native HTML drag&drop, it'll interfere + // with our own dragging (e.g. `img` tags do it by default). Prevent the default action + // to stop it from happening. Note that preventing on `dragstart` also seems to work, but + // it's flaky and it fails if the user drags it away quickly. Also note that we only want + // to do this for `mousedown` since doing the same for `touchstart` will stop any `click` + // events from firing on touch devices. + if (target && target.draggable && event.type === 'mousedown') { + event.preventDefault(); + } + // Abort if the user is already dragging or is using a mouse button other than the primary one. + if (isDragging || isAuxiliaryMouseButton || isSyntheticEvent || isFakeEvent) { + return; + } + // If we've got handles, we need to disable the tap highlight on the entire root element, + // otherwise iOS will still add it, even though all the drag interactions on the handle + // are disabled. + if (this._handles.length) { + const rootStyles = rootElement.style; + this._rootElementTapHighlight = rootStyles.webkitTapHighlightColor || ''; + rootStyles.webkitTapHighlightColor = 'transparent'; + } + this._hasStartedDragging = this._hasMoved = false; + // Avoid multiple subscriptions and memory leaks when multi touch + // (isDragging check above isn't enough because of possible temporal and/or dimensional delays) + this._removeSubscriptions(); + this._initialClientRect = this._rootElement.getBoundingClientRect(); + this._pointerMoveSubscription = this._dragDropRegistry.pointerMove.subscribe(this._pointerMove); + this._pointerUpSubscription = this._dragDropRegistry.pointerUp.subscribe(this._pointerUp); + this._scrollSubscription = this._dragDropRegistry.scrolled(this._getShadowRoot()).subscribe(scrollEvent => this._updateOnScroll(scrollEvent)); + if (this._boundaryElement) { + this._boundaryRect = getMutableClientRect(this._boundaryElement); + } + // If we have a custom preview we can't know ahead of time how large it'll be so we position + // it next to the cursor. The exception is when the consumer has opted into making the preview + // the same size as the root element, in which case we do know the size. + const previewTemplate = this._previewTemplate; + this._pickupPositionInElement = previewTemplate && previewTemplate.template && !previewTemplate.matchSize ? { + x: 0, + y: 0 + } : this._getPointerPositionInElement(this._initialClientRect, referenceElement, event); + const pointerPosition = this._pickupPositionOnPage = this._lastKnownPointerPosition = this._getPointerPositionOnPage(event); + this._pointerDirectionDelta = { + x: 0, + y: 0 + }; + this._pointerPositionAtLastDirectionChange = { + x: pointerPosition.x, + y: pointerPosition.y + }; + this._dragStartTime = Date.now(); + this._dragDropRegistry.startDragging(this, event); + } + /** Cleans up the DOM artifacts that were added to facilitate the element being dragged. */ + _cleanupDragArtifacts(event) { + // Restore the element's visibility and insert it at its old position in the DOM. + // It's important that we maintain the position, because moving the element around in the DOM + // can throw off `NgFor` which does smart diffing and re-creates elements only when necessary, + // while moving the existing elements in all other cases. + toggleVisibility(this._rootElement, true, dragImportantProperties); + this._anchor.parentNode.replaceChild(this._rootElement, this._anchor); + this._destroyPreview(); + this._destroyPlaceholder(); + this._initialClientRect = this._boundaryRect = this._previewRect = this._initialTransform = undefined; + // Re-enter the NgZone since we bound `document` events on the outside. + this._ngZone.run(() => { + const container = this._dropContainer; + const currentIndex = container.getItemIndex(this); + const pointerPosition = this._getPointerPositionOnPage(event); + const distance = this._getDragDistance(pointerPosition); + const isPointerOverContainer = container._isOverContainer(pointerPosition.x, pointerPosition.y); + this.ended.next({ + source: this, + distance, + dropPoint: pointerPosition, + event + }); + this.dropped.next({ + item: this, + currentIndex, + previousIndex: this._initialIndex, + container: container, + previousContainer: this._initialContainer, + isPointerOverContainer, + distance, + dropPoint: pointerPosition, + event + }); + container.drop(this, currentIndex, this._initialIndex, this._initialContainer, isPointerOverContainer, distance, pointerPosition, event); + this._dropContainer = this._initialContainer; + }); + } + /** + * Updates the item's position in its drop container, or moves it + * into a new one, depending on its current drag position. + */ + _updateActiveDropContainer({ + x, + y + }, { + x: rawX, + y: rawY + }) { + // Drop container that draggable has been moved into. + let newContainer = this._initialContainer._getSiblingContainerFromPosition(this, x, y); + // If we couldn't find a new container to move the item into, and the item has left its + // initial container, check whether the it's over the initial container. This handles the + // case where two containers are connected one way and the user tries to undo dragging an + // item into a new container. + if (!newContainer && this._dropContainer !== this._initialContainer && this._initialContainer._isOverContainer(x, y)) { + newContainer = this._initialContainer; + } + if (newContainer && newContainer !== this._dropContainer) { + this._ngZone.run(() => { + // Notify the old container that the item has left. + this.exited.next({ + item: this, + container: this._dropContainer + }); + this._dropContainer.exit(this); + // Notify the new container that the item has entered. + this._dropContainer = newContainer; + this._dropContainer.enter(this, x, y, newContainer === this._initialContainer && + // If we're re-entering the initial container and sorting is disabled, + // put item the into its starting index to begin with. + newContainer.sortingDisabled ? this._initialIndex : undefined); + this.entered.next({ + item: this, + container: newContainer, + currentIndex: newContainer.getItemIndex(this) + }); + }); + } + // Dragging may have been interrupted as a result of the events above. + if (this.isDragging()) { + this._dropContainer._startScrollingIfNecessary(rawX, rawY); + this._dropContainer._sortItem(this, x, y, this._pointerDirectionDelta); + if (this.constrainPosition) { + this._applyPreviewTransform(x, y); + } else { + this._applyPreviewTransform(x - this._pickupPositionInElement.x, y - this._pickupPositionInElement.y); + } + } + } + /** + * Creates the element that will be rendered next to the user's pointer + * and will be used as a preview of the element that is being dragged. + */ + _createPreviewElement() { + const previewConfig = this._previewTemplate; + const previewClass = this.previewClass; + const previewTemplate = previewConfig ? previewConfig.template : null; + let preview; + if (previewTemplate && previewConfig) { + // Measure the element before we've inserted the preview + // since the insertion could throw off the measurement. + const rootRect = previewConfig.matchSize ? this._initialClientRect : null; + const viewRef = previewConfig.viewContainer.createEmbeddedView(previewTemplate, previewConfig.context); + viewRef.detectChanges(); + preview = getRootNode(viewRef, this._document); + this._previewRef = viewRef; + if (previewConfig.matchSize) { + matchElementSize(preview, rootRect); + } else { + preview.style.transform = getTransform(this._pickupPositionOnPage.x, this._pickupPositionOnPage.y); + } + } else { + preview = deepCloneNode(this._rootElement); + matchElementSize(preview, this._initialClientRect); + if (this._initialTransform) { + preview.style.transform = this._initialTransform; + } + } + extendStyles(preview.style, { + // It's important that we disable the pointer events on the preview, because + // it can throw off the `document.elementFromPoint` calls in the `CdkDropList`. + 'pointer-events': 'none', + // We have to reset the margin, because it can throw off positioning relative to the viewport. + 'margin': '0', + 'position': 'fixed', + 'top': '0', + 'left': '0', + 'z-index': `${this._config.zIndex || 1000}` + }, dragImportantProperties); + toggleNativeDragInteractions(preview, false); + preview.classList.add('cdk-drag-preview'); + preview.setAttribute('dir', this._direction); + if (previewClass) { + if (Array.isArray(previewClass)) { + previewClass.forEach(className => preview.classList.add(className)); + } else { + preview.classList.add(previewClass); + } + } + return preview; + } + /** + * Animates the preview element from its current position to the location of the drop placeholder. + * @returns Promise that resolves when the animation completes. + */ + _animatePreviewToPlaceholder() { + // If the user hasn't moved yet, the transitionend event won't fire. + if (!this._hasMoved) { + return Promise.resolve(); + } + const placeholderRect = this._placeholder.getBoundingClientRect(); + // Apply the class that adds a transition to the preview. + this._preview.classList.add('cdk-drag-animating'); + // Move the preview to the placeholder position. + this._applyPreviewTransform(placeholderRect.left, placeholderRect.top); + // If the element doesn't have a `transition`, the `transitionend` event won't fire. Since + // we need to trigger a style recalculation in order for the `cdk-drag-animating` class to + // apply its style, we take advantage of the available info to figure out whether we need to + // bind the event in the first place. + const duration = getTransformTransitionDurationInMs(this._preview); + if (duration === 0) { + return Promise.resolve(); + } + return this._ngZone.runOutsideAngular(() => { + return new Promise(resolve => { + const handler = event => { + if (!event || (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event) === this._preview && event.propertyName === 'transform') { + this._preview?.removeEventListener('transitionend', handler); + resolve(); + clearTimeout(timeout); + } + }; + // If a transition is short enough, the browser might not fire the `transitionend` event. + // Since we know how long it's supposed to take, add a timeout with a 50% buffer that'll + // fire if the transition hasn't completed when it was supposed to. + const timeout = setTimeout(handler, duration * 1.5); + this._preview.addEventListener('transitionend', handler); + }); + }); + } + /** Creates an element that will be shown instead of the current element while dragging. */ + _createPlaceholderElement() { + const placeholderConfig = this._placeholderTemplate; + const placeholderTemplate = placeholderConfig ? placeholderConfig.template : null; + let placeholder; + if (placeholderTemplate) { + this._placeholderRef = placeholderConfig.viewContainer.createEmbeddedView(placeholderTemplate, placeholderConfig.context); + this._placeholderRef.detectChanges(); + placeholder = getRootNode(this._placeholderRef, this._document); + } else { + placeholder = deepCloneNode(this._rootElement); + } + // Stop pointer events on the preview so the user can't + // interact with it while the preview is animating. + placeholder.style.pointerEvents = 'none'; + placeholder.classList.add('cdk-drag-placeholder'); + return placeholder; + } + /** + * Figures out the coordinates at which an element was picked up. + * @param referenceElement Element that initiated the dragging. + * @param event Event that initiated the dragging. + */ + _getPointerPositionInElement(elementRect, referenceElement, event) { + const handleElement = referenceElement === this._rootElement ? null : referenceElement; + const referenceRect = handleElement ? handleElement.getBoundingClientRect() : elementRect; + const point = isTouchEvent(event) ? event.targetTouches[0] : event; + const scrollPosition = this._getViewportScrollPosition(); + const x = point.pageX - referenceRect.left - scrollPosition.left; + const y = point.pageY - referenceRect.top - scrollPosition.top; + return { + x: referenceRect.left - elementRect.left + x, + y: referenceRect.top - elementRect.top + y + }; + } + /** Determines the point of the page that was touched by the user. */ + _getPointerPositionOnPage(event) { + const scrollPosition = this._getViewportScrollPosition(); + const point = isTouchEvent(event) ? + // `touches` will be empty for start/end events so we have to fall back to `changedTouches`. + // Also note that on real devices we're guaranteed for either `touches` or `changedTouches` + // to have a value, but Firefox in device emulation mode has a bug where both can be empty + // for `touchstart` and `touchend` so we fall back to a dummy object in order to avoid + // throwing an error. The value returned here will be incorrect, but since this only + // breaks inside a developer tool and the value is only used for secondary information, + // we can get away with it. See https://bugzilla.mozilla.org/show_bug.cgi?id=1615824. + event.touches[0] || event.changedTouches[0] || { + pageX: 0, + pageY: 0 + } : event; + const x = point.pageX - scrollPosition.left; + const y = point.pageY - scrollPosition.top; + // if dragging SVG element, try to convert from the screen coordinate system to the SVG + // coordinate system + if (this._ownerSVGElement) { + const svgMatrix = this._ownerSVGElement.getScreenCTM(); + if (svgMatrix) { + const svgPoint = this._ownerSVGElement.createSVGPoint(); + svgPoint.x = x; + svgPoint.y = y; + return svgPoint.matrixTransform(svgMatrix.inverse()); + } + } + return { + x, + y + }; + } + /** Gets the pointer position on the page, accounting for any position constraints. */ + _getConstrainedPointerPosition(point) { + const dropContainerLock = this._dropContainer ? this._dropContainer.lockAxis : null; + let { + x, + y + } = this.constrainPosition ? this.constrainPosition(point, this, this._initialClientRect, this._pickupPositionInElement) : point; + if (this.lockAxis === 'x' || dropContainerLock === 'x') { + y = this._pickupPositionOnPage.y - (this.constrainPosition ? this._pickupPositionInElement.y : 0); + } else if (this.lockAxis === 'y' || dropContainerLock === 'y') { + x = this._pickupPositionOnPage.x - (this.constrainPosition ? this._pickupPositionInElement.x : 0); + } + if (this._boundaryRect) { + // If not using a custom constrain we need to account for the pickup position in the element + // otherwise we do not need to do this, as it has already been accounted for + const { + x: pickupX, + y: pickupY + } = !this.constrainPosition ? this._pickupPositionInElement : { + x: 0, + y: 0 + }; + const boundaryRect = this._boundaryRect; + const { + width: previewWidth, + height: previewHeight + } = this._getPreviewRect(); + const minY = boundaryRect.top + pickupY; + const maxY = boundaryRect.bottom - (previewHeight - pickupY); + const minX = boundaryRect.left + pickupX; + const maxX = boundaryRect.right - (previewWidth - pickupX); + x = clamp$1(x, minX, maxX); + y = clamp$1(y, minY, maxY); + } + return { + x, + y + }; + } + /** Updates the current drag delta, based on the user's current pointer position on the page. */ + _updatePointerDirectionDelta(pointerPositionOnPage) { + const { + x, + y + } = pointerPositionOnPage; + const delta = this._pointerDirectionDelta; + const positionSinceLastChange = this._pointerPositionAtLastDirectionChange; + // Amount of pixels the user has dragged since the last time the direction changed. + const changeX = Math.abs(x - positionSinceLastChange.x); + const changeY = Math.abs(y - positionSinceLastChange.y); + // Because we handle pointer events on a per-pixel basis, we don't want the delta + // to change for every pixel, otherwise anything that depends on it can look erratic. + // To make the delta more consistent, we track how much the user has moved since the last + // delta change and we only update it after it has reached a certain threshold. + if (changeX > this._config.pointerDirectionChangeThreshold) { + delta.x = x > positionSinceLastChange.x ? 1 : -1; + positionSinceLastChange.x = x; + } + if (changeY > this._config.pointerDirectionChangeThreshold) { + delta.y = y > positionSinceLastChange.y ? 1 : -1; + positionSinceLastChange.y = y; + } + return delta; + } + /** Toggles the native drag interactions, based on how many handles are registered. */ + _toggleNativeDragInteractions() { + if (!this._rootElement || !this._handles) { + return; + } + const shouldEnable = this._handles.length > 0 || !this.isDragging(); + if (shouldEnable !== this._nativeInteractionsEnabled) { + this._nativeInteractionsEnabled = shouldEnable; + toggleNativeDragInteractions(this._rootElement, shouldEnable); + } + } + /** Removes the manually-added event listeners from the root element. */ + _removeRootElementListeners(element) { + element.removeEventListener('mousedown', this._pointerDown, activeEventListenerOptions); + element.removeEventListener('touchstart', this._pointerDown, passiveEventListenerOptions); + element.removeEventListener('dragstart', this._nativeDragStart, activeEventListenerOptions); + } + /** + * Applies a `transform` to the root element, taking into account any existing transforms on it. + * @param x New transform value along the X axis. + * @param y New transform value along the Y axis. + */ + _applyRootElementTransform(x, y) { + const transform = getTransform(x, y); + const styles = this._rootElement.style; + // Cache the previous transform amount only after the first drag sequence, because + // we don't want our own transforms to stack on top of each other. + // Should be excluded none because none + translate3d(x, y, x) is invalid css + if (this._initialTransform == null) { + this._initialTransform = styles.transform && styles.transform != 'none' ? styles.transform : ''; + } + // Preserve the previous `transform` value, if there was one. Note that we apply our own + // transform before the user's, because things like rotation can affect which direction + // the element will be translated towards. + styles.transform = combineTransforms(transform, this._initialTransform); + } + /** + * Applies a `transform` to the preview, taking into account any existing transforms on it. + * @param x New transform value along the X axis. + * @param y New transform value along the Y axis. + */ + _applyPreviewTransform(x, y) { + // Only apply the initial transform if the preview is a clone of the original element, otherwise + // it could be completely different and the transform might not make sense anymore. + const initialTransform = this._previewTemplate?.template ? undefined : this._initialTransform; + const transform = getTransform(x, y); + this._preview.style.transform = combineTransforms(transform, initialTransform); + } + /** + * Gets the distance that the user has dragged during the current drag sequence. + * @param currentPosition Current position of the user's pointer. + */ + _getDragDistance(currentPosition) { + const pickupPosition = this._pickupPositionOnPage; + if (pickupPosition) { + return { + x: currentPosition.x - pickupPosition.x, + y: currentPosition.y - pickupPosition.y + }; + } + return { + x: 0, + y: 0 + }; + } + /** Cleans up any cached element dimensions that we don't need after dragging has stopped. */ + _cleanupCachedDimensions() { + this._boundaryRect = this._previewRect = undefined; + this._parentPositions.clear(); + } + /** + * Checks whether the element is still inside its boundary after the viewport has been resized. + * If not, the position is adjusted so that the element fits again. + */ + _containInsideBoundaryOnResize() { + let { + x, + y + } = this._passiveTransform; + if (x === 0 && y === 0 || this.isDragging() || !this._boundaryElement) { + return; + } + // Note: don't use `_clientRectAtStart` here, because we want the latest position. + const elementRect = this._rootElement.getBoundingClientRect(); + const boundaryRect = this._boundaryElement.getBoundingClientRect(); + // It's possible that the element got hidden away after dragging (e.g. by switching to a + // different tab). Don't do anything in this case so we don't clear the user's position. + if (boundaryRect.width === 0 && boundaryRect.height === 0 || elementRect.width === 0 && elementRect.height === 0) { + return; + } + const leftOverflow = boundaryRect.left - elementRect.left; + const rightOverflow = elementRect.right - boundaryRect.right; + const topOverflow = boundaryRect.top - elementRect.top; + const bottomOverflow = elementRect.bottom - boundaryRect.bottom; + // If the element has become wider than the boundary, we can't + // do much to make it fit so we just anchor it to the left. + if (boundaryRect.width > elementRect.width) { + if (leftOverflow > 0) { + x += leftOverflow; + } + if (rightOverflow > 0) { + x -= rightOverflow; + } + } else { + x = 0; + } + // If the element has become taller than the boundary, we can't + // do much to make it fit so we just anchor it to the top. + if (boundaryRect.height > elementRect.height) { + if (topOverflow > 0) { + y += topOverflow; + } + if (bottomOverflow > 0) { + y -= bottomOverflow; + } + } else { + y = 0; + } + if (x !== this._passiveTransform.x || y !== this._passiveTransform.y) { + this.setFreeDragPosition({ + y, + x + }); + } + } + /** Gets the drag start delay, based on the event type. */ + _getDragStartDelay(event) { + const value = this.dragStartDelay; + if (typeof value === 'number') { + return value; + } else if (isTouchEvent(event)) { + return value.touch; + } + return value ? value.mouse : 0; + } + /** Updates the internal state of the draggable element when scrolling has occurred. */ + _updateOnScroll(event) { + const scrollDifference = this._parentPositions.handleScroll(event); + if (scrollDifference) { + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event); + // ClientRect dimensions are based on the scroll position of the page and its parent + // node so we have to update the cached boundary ClientRect if the user has scrolled. + if (this._boundaryRect && target !== this._boundaryElement && target.contains(this._boundaryElement)) { + adjustClientRect(this._boundaryRect, scrollDifference.top, scrollDifference.left); + } + this._pickupPositionOnPage.x += scrollDifference.left; + this._pickupPositionOnPage.y += scrollDifference.top; + // If we're in free drag mode, we have to update the active transform, because + // it isn't relative to the viewport like the preview inside a drop list. + if (!this._dropContainer) { + this._activeTransform.x -= scrollDifference.left; + this._activeTransform.y -= scrollDifference.top; + this._applyRootElementTransform(this._activeTransform.x, this._activeTransform.y); + } + } + } + /** Gets the scroll position of the viewport. */ + _getViewportScrollPosition() { + return this._parentPositions.positions.get(this._document)?.scrollPosition || this._parentPositions.getViewportScrollPosition(); + } + /** + * Lazily resolves and returns the shadow root of the element. We do this in a function, rather + * than saving it in property directly on init, because we want to resolve it as late as possible + * in order to ensure that the element has been moved into the shadow DOM. Doing it inside the + * constructor might be too early if the element is inside of something like `ngFor` or `ngIf`. + */ + _getShadowRoot() { + if (this._cachedShadowRoot === undefined) { + this._cachedShadowRoot = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getShadowRoot)(this._rootElement); + } + return this._cachedShadowRoot; + } + /** Gets the element into which the drag preview should be inserted. */ + _getPreviewInsertionPoint(initialParent, shadowRoot) { + const previewContainer = this._previewContainer || 'global'; + if (previewContainer === 'parent') { + return initialParent; + } + if (previewContainer === 'global') { + const documentRef = this._document; + // We can't use the body if the user is in fullscreen mode, + // because the preview will render under the fullscreen element. + // TODO(crisbeto): dedupe this with the `FullscreenOverlayContainer` eventually. + return shadowRoot || documentRef.fullscreenElement || documentRef.webkitFullscreenElement || documentRef.mozFullScreenElement || documentRef.msFullscreenElement || documentRef.body; + } + return (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(previewContainer); + } + /** Lazily resolves and returns the dimensions of the preview. */ + _getPreviewRect() { + // Cache the preview element rect if we haven't cached it already or if + // we cached it too early before the element dimensions were computed. + if (!this._previewRect || !this._previewRect.width && !this._previewRect.height) { + this._previewRect = this._preview ? this._preview.getBoundingClientRect() : this._initialClientRect; + } + return this._previewRect; + } + /** Gets a handle that is the target of an event. */ + _getTargetHandle(event) { + return this._handles.find(handle => { + return event.target && (event.target === handle || handle.contains(event.target)); + }); + } +} +/** + * Gets a 3d `transform` that can be applied to an element. + * @param x Desired position of the element along the X axis. + * @param y Desired position of the element along the Y axis. + */ +function getTransform(x, y) { + // Round the transforms since some browsers will + // blur the elements for sub-pixel transforms. + return `translate3d(${Math.round(x)}px, ${Math.round(y)}px, 0)`; +} +/** Clamps a value between a minimum and a maximum. */ +function clamp$1(value, min, max) { + return Math.max(min, Math.min(max, value)); +} +/** Determines whether an event is a touch event. */ +function isTouchEvent(event) { + // This function is called for every pixel that the user has dragged so we need it to be + // as fast as possible. Since we only bind mouse events and touch events, we can assume + // that if the event's name starts with `t`, it's a touch event. + return event.type[0] === 't'; +} +/** + * Gets the root HTML element of an embedded view. + * If the root is not an HTML element it gets wrapped in one. + */ +function getRootNode(viewRef, _document) { + const rootNodes = viewRef.rootNodes; + if (rootNodes.length === 1 && rootNodes[0].nodeType === _document.ELEMENT_NODE) { + return rootNodes[0]; + } + const wrapper = _document.createElement('div'); + rootNodes.forEach(node => wrapper.appendChild(node)); + return wrapper; +} +/** + * Matches the target element's size to the source's size. + * @param target Element that needs to be resized. + * @param sourceRect Dimensions of the source element. + */ +function matchElementSize(target, sourceRect) { + target.style.width = `${sourceRect.width}px`; + target.style.height = `${sourceRect.height}px`; + target.style.transform = getTransform(sourceRect.left, sourceRect.top); +} + +/** + * Moves an item one index in an array to another. + * @param array Array in which to move the item. + * @param fromIndex Starting index of the item. + * @param toIndex Index to which the item should be moved. + */ +function moveItemInArray(array, fromIndex, toIndex) { + const from = clamp(fromIndex, array.length - 1); + const to = clamp(toIndex, array.length - 1); + if (from === to) { + return; + } + const target = array[from]; + const delta = to < from ? -1 : 1; + for (let i = from; i !== to; i += delta) { + array[i] = array[i + delta]; + } + array[to] = target; +} +/** + * Moves an item from one array to another. + * @param currentArray Array from which to transfer the item. + * @param targetArray Array into which to put the item. + * @param currentIndex Index of the item in its current array. + * @param targetIndex Index at which to insert the item. + */ +function transferArrayItem(currentArray, targetArray, currentIndex, targetIndex) { + const from = clamp(currentIndex, currentArray.length - 1); + const to = clamp(targetIndex, targetArray.length); + if (currentArray.length) { + targetArray.splice(to, 0, currentArray.splice(from, 1)[0]); + } +} +/** + * Copies an item from one array to another, leaving it in its + * original position in current array. + * @param currentArray Array from which to copy the item. + * @param targetArray Array into which is copy the item. + * @param currentIndex Index of the item in its current array. + * @param targetIndex Index at which to insert the item. + * + */ +function copyArrayItem(currentArray, targetArray, currentIndex, targetIndex) { + const to = clamp(targetIndex, targetArray.length); + if (currentArray.length) { + targetArray.splice(to, 0, currentArray[currentIndex]); + } +} +/** Clamps a number between zero and a maximum. */ +function clamp(value, max) { + return Math.max(0, Math.min(max, value)); +} + +/** + * Strategy that only supports sorting along a single axis. + * Items are reordered using CSS transforms which allows for sorting to be animated. + * @docs-private + */ +class SingleAxisSortStrategy { + constructor(_element, _dragDropRegistry) { + this._element = _element; + this._dragDropRegistry = _dragDropRegistry; + /** Cache of the dimensions of all the items inside the container. */ + this._itemPositions = []; + /** Direction in which the list is oriented. */ + this.orientation = 'vertical'; + /** + * Keeps track of the item that was last swapped with the dragged item, as well as what direction + * the pointer was moving in when the swap occurred and whether the user's pointer continued to + * overlap with the swapped item after the swapping occurred. + */ + this._previousSwap = { + drag: null, + delta: 0, + overlaps: false + }; + } + /** + * To be called when the drag sequence starts. + * @param items Items that are currently in the list. + */ + start(items) { + this.withItems(items); + } + /** + * To be called when an item is being sorted. + * @param item Item to be sorted. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param pointerDelta Direction in which the pointer is moving along each axis. + */ + sort(item, pointerX, pointerY, pointerDelta) { + const siblings = this._itemPositions; + const newIndex = this._getItemIndexFromPointerPosition(item, pointerX, pointerY, pointerDelta); + if (newIndex === -1 && siblings.length > 0) { + return null; + } + const isHorizontal = this.orientation === 'horizontal'; + const currentIndex = siblings.findIndex(currentItem => currentItem.drag === item); + const siblingAtNewPosition = siblings[newIndex]; + const currentPosition = siblings[currentIndex].clientRect; + const newPosition = siblingAtNewPosition.clientRect; + const delta = currentIndex > newIndex ? 1 : -1; + // How many pixels the item's placeholder should be offset. + const itemOffset = this._getItemOffsetPx(currentPosition, newPosition, delta); + // How many pixels all the other items should be offset. + const siblingOffset = this._getSiblingOffsetPx(currentIndex, siblings, delta); + // Save the previous order of the items before moving the item to its new index. + // We use this to check whether an item has been moved as a result of the sorting. + const oldOrder = siblings.slice(); + // Shuffle the array in place. + moveItemInArray(siblings, currentIndex, newIndex); + siblings.forEach((sibling, index) => { + // Don't do anything if the position hasn't changed. + if (oldOrder[index] === sibling) { + return; + } + const isDraggedItem = sibling.drag === item; + const offset = isDraggedItem ? itemOffset : siblingOffset; + const elementToOffset = isDraggedItem ? item.getPlaceholderElement() : sibling.drag.getRootElement(); + // Update the offset to reflect the new position. + sibling.offset += offset; + // Since we're moving the items with a `transform`, we need to adjust their cached + // client rects to reflect their new position, as well as swap their positions in the cache. + // Note that we shouldn't use `getBoundingClientRect` here to update the cache, because the + // elements may be mid-animation which will give us a wrong result. + if (isHorizontal) { + // Round the transforms since some browsers will + // blur the elements, for sub-pixel transforms. + elementToOffset.style.transform = combineTransforms(`translate3d(${Math.round(sibling.offset)}px, 0, 0)`, sibling.initialTransform); + adjustClientRect(sibling.clientRect, 0, offset); + } else { + elementToOffset.style.transform = combineTransforms(`translate3d(0, ${Math.round(sibling.offset)}px, 0)`, sibling.initialTransform); + adjustClientRect(sibling.clientRect, offset, 0); + } + }); + // Note that it's important that we do this after the client rects have been adjusted. + this._previousSwap.overlaps = isInsideClientRect(newPosition, pointerX, pointerY); + this._previousSwap.drag = siblingAtNewPosition.drag; + this._previousSwap.delta = isHorizontal ? pointerDelta.x : pointerDelta.y; + return { + previousIndex: currentIndex, + currentIndex: newIndex + }; + } + /** + * Called when an item is being moved into the container. + * @param item Item that was moved into the container. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param index Index at which the item entered. If omitted, the container will try to figure it + * out automatically. + */ + enter(item, pointerX, pointerY, index) { + const newIndex = index == null || index < 0 ? + // We use the coordinates of where the item entered the drop + // zone to figure out at which index it should be inserted. + this._getItemIndexFromPointerPosition(item, pointerX, pointerY) : index; + const activeDraggables = this._activeDraggables; + const currentIndex = activeDraggables.indexOf(item); + const placeholder = item.getPlaceholderElement(); + let newPositionReference = activeDraggables[newIndex]; + // If the item at the new position is the same as the item that is being dragged, + // it means that we're trying to restore the item to its initial position. In this + // case we should use the next item from the list as the reference. + if (newPositionReference === item) { + newPositionReference = activeDraggables[newIndex + 1]; + } + // If we didn't find a new position reference, it means that either the item didn't start off + // in this container, or that the item requested to be inserted at the end of the list. + if (!newPositionReference && (newIndex == null || newIndex === -1 || newIndex < activeDraggables.length - 1) && this._shouldEnterAsFirstChild(pointerX, pointerY)) { + newPositionReference = activeDraggables[0]; + } + // Since the item may be in the `activeDraggables` already (e.g. if the user dragged it + // into another container and back again), we have to ensure that it isn't duplicated. + if (currentIndex > -1) { + activeDraggables.splice(currentIndex, 1); + } + // Don't use items that are being dragged as a reference, because + // their element has been moved down to the bottom of the body. + if (newPositionReference && !this._dragDropRegistry.isDragging(newPositionReference)) { + const element = newPositionReference.getRootElement(); + element.parentElement.insertBefore(placeholder, element); + activeDraggables.splice(newIndex, 0, item); + } else { + (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this._element).appendChild(placeholder); + activeDraggables.push(item); + } + // The transform needs to be cleared so it doesn't throw off the measurements. + placeholder.style.transform = ''; + // Note that usually `start` is called together with `enter` when an item goes into a new + // container. This will cache item positions, but we need to refresh them since the amount + // of items has changed. + this._cacheItemPositions(); + } + /** Sets the items that are currently part of the list. */ + withItems(items) { + this._activeDraggables = items.slice(); + this._cacheItemPositions(); + } + /** Assigns a sort predicate to the strategy. */ + withSortPredicate(predicate) { + this._sortPredicate = predicate; + } + /** Resets the strategy to its initial state before dragging was started. */ + reset() { + // TODO(crisbeto): may have to wait for the animations to finish. + this._activeDraggables.forEach(item => { + const rootElement = item.getRootElement(); + if (rootElement) { + const initialTransform = this._itemPositions.find(p => p.drag === item)?.initialTransform; + rootElement.style.transform = initialTransform || ''; + } + }); + this._itemPositions = []; + this._activeDraggables = []; + this._previousSwap.drag = null; + this._previousSwap.delta = 0; + this._previousSwap.overlaps = false; + } + /** + * Gets a snapshot of items currently in the list. + * Can include items that we dragged in from another list. + */ + getActiveItemsSnapshot() { + return this._activeDraggables; + } + /** Gets the index of a specific item. */ + getItemIndex(item) { + // Items are sorted always by top/left in the cache, however they flow differently in RTL. + // The rest of the logic still stands no matter what orientation we're in, however + // we need to invert the array when determining the index. + const items = this.orientation === 'horizontal' && this.direction === 'rtl' ? this._itemPositions.slice().reverse() : this._itemPositions; + return items.findIndex(currentItem => currentItem.drag === item); + } + /** Used to notify the strategy that the scroll position has changed. */ + updateOnScroll(topDifference, leftDifference) { + // Since we know the amount that the user has scrolled we can shift all of the + // client rectangles ourselves. This is cheaper than re-measuring everything and + // we can avoid inconsistent behavior where we might be measuring the element before + // its position has changed. + this._itemPositions.forEach(({ + clientRect + }) => { + adjustClientRect(clientRect, topDifference, leftDifference); + }); + // We need two loops for this, because we want all of the cached + // positions to be up-to-date before we re-sort the item. + this._itemPositions.forEach(({ + drag + }) => { + if (this._dragDropRegistry.isDragging(drag)) { + // We need to re-sort the item manually, because the pointer move + // events won't be dispatched while the user is scrolling. + drag._sortFromLastPointerPosition(); + } + }); + } + /** Refreshes the position cache of the items and sibling containers. */ + _cacheItemPositions() { + const isHorizontal = this.orientation === 'horizontal'; + this._itemPositions = this._activeDraggables.map(drag => { + const elementToMeasure = drag.getVisibleElement(); + return { + drag, + offset: 0, + initialTransform: elementToMeasure.style.transform || '', + clientRect: getMutableClientRect(elementToMeasure) + }; + }).sort((a, b) => { + return isHorizontal ? a.clientRect.left - b.clientRect.left : a.clientRect.top - b.clientRect.top; + }); + } + /** + * Gets the offset in pixels by which the item that is being dragged should be moved. + * @param currentPosition Current position of the item. + * @param newPosition Position of the item where the current item should be moved. + * @param delta Direction in which the user is moving. + */ + _getItemOffsetPx(currentPosition, newPosition, delta) { + const isHorizontal = this.orientation === 'horizontal'; + let itemOffset = isHorizontal ? newPosition.left - currentPosition.left : newPosition.top - currentPosition.top; + // Account for differences in the item width/height. + if (delta === -1) { + itemOffset += isHorizontal ? newPosition.width - currentPosition.width : newPosition.height - currentPosition.height; + } + return itemOffset; + } + /** + * Gets the offset in pixels by which the items that aren't being dragged should be moved. + * @param currentIndex Index of the item currently being dragged. + * @param siblings All of the items in the list. + * @param delta Direction in which the user is moving. + */ + _getSiblingOffsetPx(currentIndex, siblings, delta) { + const isHorizontal = this.orientation === 'horizontal'; + const currentPosition = siblings[currentIndex].clientRect; + const immediateSibling = siblings[currentIndex + delta * -1]; + let siblingOffset = currentPosition[isHorizontal ? 'width' : 'height'] * delta; + if (immediateSibling) { + const start = isHorizontal ? 'left' : 'top'; + const end = isHorizontal ? 'right' : 'bottom'; + // Get the spacing between the start of the current item and the end of the one immediately + // after it in the direction in which the user is dragging, or vice versa. We add it to the + // offset in order to push the element to where it will be when it's inline and is influenced + // by the `margin` of its siblings. + if (delta === -1) { + siblingOffset -= immediateSibling.clientRect[start] - currentPosition[end]; + } else { + siblingOffset += currentPosition[start] - immediateSibling.clientRect[end]; + } + } + return siblingOffset; + } + /** + * Checks if pointer is entering in the first position + * @param pointerX Position of the user's pointer along the X axis. + * @param pointerY Position of the user's pointer along the Y axis. + */ + _shouldEnterAsFirstChild(pointerX, pointerY) { + if (!this._activeDraggables.length) { + return false; + } + const itemPositions = this._itemPositions; + const isHorizontal = this.orientation === 'horizontal'; + // `itemPositions` are sorted by position while `activeDraggables` are sorted by child index + // check if container is using some sort of "reverse" ordering (eg: flex-direction: row-reverse) + const reversed = itemPositions[0].drag !== this._activeDraggables[0]; + if (reversed) { + const lastItemRect = itemPositions[itemPositions.length - 1].clientRect; + return isHorizontal ? pointerX >= lastItemRect.right : pointerY >= lastItemRect.bottom; + } else { + const firstItemRect = itemPositions[0].clientRect; + return isHorizontal ? pointerX <= firstItemRect.left : pointerY <= firstItemRect.top; + } + } + /** + * Gets the index of an item in the drop container, based on the position of the user's pointer. + * @param item Item that is being sorted. + * @param pointerX Position of the user's pointer along the X axis. + * @param pointerY Position of the user's pointer along the Y axis. + * @param delta Direction in which the user is moving their pointer. + */ + _getItemIndexFromPointerPosition(item, pointerX, pointerY, delta) { + const isHorizontal = this.orientation === 'horizontal'; + const index = this._itemPositions.findIndex(({ + drag, + clientRect + }) => { + // Skip the item itself. + if (drag === item) { + return false; + } + if (delta) { + const direction = isHorizontal ? delta.x : delta.y; + // If the user is still hovering over the same item as last time, their cursor hasn't left + // the item after we made the swap, and they didn't change the direction in which they're + // dragging, we don't consider it a direction swap. + if (drag === this._previousSwap.drag && this._previousSwap.overlaps && direction === this._previousSwap.delta) { + return false; + } + } + return isHorizontal ? + // Round these down since most browsers report client rects with + // sub-pixel precision, whereas the pointer coordinates are rounded to pixels. + pointerX >= Math.floor(clientRect.left) && pointerX < Math.floor(clientRect.right) : pointerY >= Math.floor(clientRect.top) && pointerY < Math.floor(clientRect.bottom); + }); + return index === -1 || !this._sortPredicate(index, item) ? -1 : index; + } +} + +/** + * Proximity, as a ratio to width/height, at which a + * dragged item will affect the drop container. + */ +const DROP_PROXIMITY_THRESHOLD = 0.05; +/** + * Proximity, as a ratio to width/height at which to start auto-scrolling the drop list or the + * viewport. The value comes from trying it out manually until it feels right. + */ +const SCROLL_PROXIMITY_THRESHOLD = 0.05; +/** + * Reference to a drop list. Used to manipulate or dispose of the container. + */ +class DropListRef { + constructor(element, _dragDropRegistry, _document, _ngZone, _viewportRuler) { + this._dragDropRegistry = _dragDropRegistry; + this._ngZone = _ngZone; + this._viewportRuler = _viewportRuler; + /** Whether starting a dragging sequence from this container is disabled. */ + this.disabled = false; + /** Whether sorting items within the list is disabled. */ + this.sortingDisabled = false; + /** + * Whether auto-scrolling the view when the user + * moves their pointer close to the edges is disabled. + */ + this.autoScrollDisabled = false; + /** Number of pixels to scroll for each frame when auto-scrolling an element. */ + this.autoScrollStep = 2; + /** + * Function that is used to determine whether an item + * is allowed to be moved into a drop container. + */ + this.enterPredicate = () => true; + /** Function that is used to determine whether an item can be sorted into a particular index. */ + this.sortPredicate = () => true; + /** Emits right before dragging has started. */ + this.beforeStarted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits when the user has moved a new drag item into this container. + */ + this.entered = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits when the user removes an item from the container + * by dragging it into another container. + */ + this.exited = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user drops an item inside the container. */ + this.dropped = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits as the user is swapping items while actively dragging. */ + this.sorted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when a dragging sequence is started in a list connected to the current one. */ + this.receivingStarted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when a dragging sequence is stopped from a list connected to the current one. */ + this.receivingStopped = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Whether an item in the list is being dragged. */ + this._isDragging = false; + /** Draggable items in the container. */ + this._draggables = []; + /** Drop lists that are connected to the current one. */ + this._siblings = []; + /** Connected siblings that currently have a dragged item. */ + this._activeSiblings = new Set(); + /** Subscription to the window being scrolled. */ + this._viewportScrollSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Vertical direction in which the list is currently scrolling. */ + this._verticalScrollDirection = 0 /* AutoScrollVerticalDirection.NONE */; + /** Horizontal direction in which the list is currently scrolling. */ + this._horizontalScrollDirection = 0 /* AutoScrollHorizontalDirection.NONE */; + /** Used to signal to the current auto-scroll sequence when to stop. */ + this._stopScrollTimers = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Shadow root of the current element. Necessary for `elementFromPoint` to resolve correctly. */ + this._cachedShadowRoot = null; + /** Starts the interval that'll auto-scroll the element. */ + this._startScrollInterval = () => { + this._stopScrolling(); + (0,rxjs__WEBPACK_IMPORTED_MODULE_5__.interval)(0, rxjs__WEBPACK_IMPORTED_MODULE_6__.animationFrameScheduler).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._stopScrollTimers)).subscribe(() => { + const node = this._scrollNode; + const scrollStep = this.autoScrollStep; + if (this._verticalScrollDirection === 1 /* AutoScrollVerticalDirection.UP */) { + node.scrollBy(0, -scrollStep); + } else if (this._verticalScrollDirection === 2 /* AutoScrollVerticalDirection.DOWN */) { + node.scrollBy(0, scrollStep); + } + if (this._horizontalScrollDirection === 1 /* AutoScrollHorizontalDirection.LEFT */) { + node.scrollBy(-scrollStep, 0); + } else if (this._horizontalScrollDirection === 2 /* AutoScrollHorizontalDirection.RIGHT */) { + node.scrollBy(scrollStep, 0); + } + }); + }; + this.element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(element); + this._document = _document; + this.withScrollableParents([this.element]); + _dragDropRegistry.registerDropContainer(this); + this._parentPositions = new ParentPositionTracker(_document); + this._sortStrategy = new SingleAxisSortStrategy(this.element, _dragDropRegistry); + this._sortStrategy.withSortPredicate((index, item) => this.sortPredicate(index, item, this)); + } + /** Removes the drop list functionality from the DOM element. */ + dispose() { + this._stopScrolling(); + this._stopScrollTimers.complete(); + this._viewportScrollSubscription.unsubscribe(); + this.beforeStarted.complete(); + this.entered.complete(); + this.exited.complete(); + this.dropped.complete(); + this.sorted.complete(); + this.receivingStarted.complete(); + this.receivingStopped.complete(); + this._activeSiblings.clear(); + this._scrollNode = null; + this._parentPositions.clear(); + this._dragDropRegistry.removeDropContainer(this); + } + /** Whether an item from this list is currently being dragged. */ + isDragging() { + return this._isDragging; + } + /** Starts dragging an item. */ + start() { + this._draggingStarted(); + this._notifyReceivingSiblings(); + } + /** + * Attempts to move an item into the container. + * @param item Item that was moved into the container. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param index Index at which the item entered. If omitted, the container will try to figure it + * out automatically. + */ + enter(item, pointerX, pointerY, index) { + this._draggingStarted(); + // If sorting is disabled, we want the item to return to its starting + // position if the user is returning it to its initial container. + if (index == null && this.sortingDisabled) { + index = this._draggables.indexOf(item); + } + this._sortStrategy.enter(item, pointerX, pointerY, index); + // Note that this usually happens inside `_draggingStarted` as well, but the dimensions + // can change when the sort strategy moves the item around inside `enter`. + this._cacheParentPositions(); + // Notify siblings at the end so that the item has been inserted into the `activeDraggables`. + this._notifyReceivingSiblings(); + this.entered.next({ + item, + container: this, + currentIndex: this.getItemIndex(item) + }); + } + /** + * Removes an item from the container after it was dragged into another container by the user. + * @param item Item that was dragged out. + */ + exit(item) { + this._reset(); + this.exited.next({ + item, + container: this + }); + } + /** + * Drops an item into this container. + * @param item Item being dropped into the container. + * @param currentIndex Index at which the item should be inserted. + * @param previousIndex Index of the item when dragging started. + * @param previousContainer Container from which the item got dragged in. + * @param isPointerOverContainer Whether the user's pointer was over the + * container when the item was dropped. + * @param distance Distance the user has dragged since the start of the dragging sequence. + * @param event Event that triggered the dropping sequence. + * + * @breaking-change 15.0.0 `previousIndex` and `event` parameters to become required. + */ + drop(item, currentIndex, previousIndex, previousContainer, isPointerOverContainer, distance, dropPoint, event = {}) { + this._reset(); + this.dropped.next({ + item, + currentIndex, + previousIndex, + container: this, + previousContainer, + isPointerOverContainer, + distance, + dropPoint, + event + }); + } + /** + * Sets the draggable items that are a part of this list. + * @param items Items that are a part of this list. + */ + withItems(items) { + const previousItems = this._draggables; + this._draggables = items; + items.forEach(item => item._withDropContainer(this)); + if (this.isDragging()) { + const draggedItems = previousItems.filter(item => item.isDragging()); + // If all of the items being dragged were removed + // from the list, abort the current drag sequence. + if (draggedItems.every(item => items.indexOf(item) === -1)) { + this._reset(); + } else { + this._sortStrategy.withItems(this._draggables); + } + } + return this; + } + /** Sets the layout direction of the drop list. */ + withDirection(direction) { + this._sortStrategy.direction = direction; + return this; + } + /** + * Sets the containers that are connected to this one. When two or more containers are + * connected, the user will be allowed to transfer items between them. + * @param connectedTo Other containers that the current containers should be connected to. + */ + connectedTo(connectedTo) { + this._siblings = connectedTo.slice(); + return this; + } + /** + * Sets the orientation of the container. + * @param orientation New orientation for the container. + */ + withOrientation(orientation) { + // TODO(crisbeto): eventually we should be constructing the new sort strategy here based on + // the new orientation. For now we can assume that it'll always be `SingleAxisSortStrategy`. + this._sortStrategy.orientation = orientation; + return this; + } + /** + * Sets which parent elements are can be scrolled while the user is dragging. + * @param elements Elements that can be scrolled. + */ + withScrollableParents(elements) { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element); + // We always allow the current element to be scrollable + // so we need to ensure that it's in the array. + this._scrollableElements = elements.indexOf(element) === -1 ? [element, ...elements] : elements.slice(); + return this; + } + /** Gets the scrollable parents that are registered with this drop container. */ + getScrollableParents() { + return this._scrollableElements; + } + /** + * Figures out the index of an item in the container. + * @param item Item whose index should be determined. + */ + getItemIndex(item) { + return this._isDragging ? this._sortStrategy.getItemIndex(item) : this._draggables.indexOf(item); + } + /** + * Whether the list is able to receive the item that + * is currently being dragged inside a connected drop list. + */ + isReceiving() { + return this._activeSiblings.size > 0; + } + /** + * Sorts an item inside the container based on its position. + * @param item Item to be sorted. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param pointerDelta Direction in which the pointer is moving along each axis. + */ + _sortItem(item, pointerX, pointerY, pointerDelta) { + // Don't sort the item if sorting is disabled or it's out of range. + if (this.sortingDisabled || !this._clientRect || !isPointerNearClientRect(this._clientRect, DROP_PROXIMITY_THRESHOLD, pointerX, pointerY)) { + return; + } + const result = this._sortStrategy.sort(item, pointerX, pointerY, pointerDelta); + if (result) { + this.sorted.next({ + previousIndex: result.previousIndex, + currentIndex: result.currentIndex, + container: this, + item + }); + } + } + /** + * Checks whether the user's pointer is close to the edges of either the + * viewport or the drop list and starts the auto-scroll sequence. + * @param pointerX User's pointer position along the x axis. + * @param pointerY User's pointer position along the y axis. + */ + _startScrollingIfNecessary(pointerX, pointerY) { + if (this.autoScrollDisabled) { + return; + } + let scrollNode; + let verticalScrollDirection = 0 /* AutoScrollVerticalDirection.NONE */; + let horizontalScrollDirection = 0 /* AutoScrollHorizontalDirection.NONE */; + // Check whether we should start scrolling any of the parent containers. + this._parentPositions.positions.forEach((position, element) => { + // We have special handling for the `document` below. Also this would be + // nicer with a for...of loop, but it requires changing a compiler flag. + if (element === this._document || !position.clientRect || scrollNode) { + return; + } + if (isPointerNearClientRect(position.clientRect, DROP_PROXIMITY_THRESHOLD, pointerX, pointerY)) { + [verticalScrollDirection, horizontalScrollDirection] = getElementScrollDirections(element, position.clientRect, pointerX, pointerY); + if (verticalScrollDirection || horizontalScrollDirection) { + scrollNode = element; + } + } + }); + // Otherwise check if we can start scrolling the viewport. + if (!verticalScrollDirection && !horizontalScrollDirection) { + const { + width, + height + } = this._viewportRuler.getViewportSize(); + const clientRect = { + width, + height, + top: 0, + right: width, + bottom: height, + left: 0 + }; + verticalScrollDirection = getVerticalScrollDirection(clientRect, pointerY); + horizontalScrollDirection = getHorizontalScrollDirection(clientRect, pointerX); + scrollNode = window; + } + if (scrollNode && (verticalScrollDirection !== this._verticalScrollDirection || horizontalScrollDirection !== this._horizontalScrollDirection || scrollNode !== this._scrollNode)) { + this._verticalScrollDirection = verticalScrollDirection; + this._horizontalScrollDirection = horizontalScrollDirection; + this._scrollNode = scrollNode; + if ((verticalScrollDirection || horizontalScrollDirection) && scrollNode) { + this._ngZone.runOutsideAngular(this._startScrollInterval); + } else { + this._stopScrolling(); + } + } + } + /** Stops any currently-running auto-scroll sequences. */ + _stopScrolling() { + this._stopScrollTimers.next(); + } + /** Starts the dragging sequence within the list. */ + _draggingStarted() { + const styles = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element).style; + this.beforeStarted.next(); + this._isDragging = true; + // We need to disable scroll snapping while the user is dragging, because it breaks automatic + // scrolling. The browser seems to round the value based on the snapping points which means + // that we can't increment/decrement the scroll position. + this._initialScrollSnap = styles.msScrollSnapType || styles.scrollSnapType || ''; + styles.scrollSnapType = styles.msScrollSnapType = 'none'; + this._sortStrategy.start(this._draggables); + this._cacheParentPositions(); + this._viewportScrollSubscription.unsubscribe(); + this._listenToScrollEvents(); + } + /** Caches the positions of the configured scrollable parents. */ + _cacheParentPositions() { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element); + this._parentPositions.cache(this._scrollableElements); + // The list element is always in the `scrollableElements` + // so we can take advantage of the cached `ClientRect`. + this._clientRect = this._parentPositions.positions.get(element).clientRect; + } + /** Resets the container to its initial state. */ + _reset() { + this._isDragging = false; + const styles = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element).style; + styles.scrollSnapType = styles.msScrollSnapType = this._initialScrollSnap; + this._siblings.forEach(sibling => sibling._stopReceiving(this)); + this._sortStrategy.reset(); + this._stopScrolling(); + this._viewportScrollSubscription.unsubscribe(); + this._parentPositions.clear(); + } + /** + * Checks whether the user's pointer is positioned over the container. + * @param x Pointer position along the X axis. + * @param y Pointer position along the Y axis. + */ + _isOverContainer(x, y) { + return this._clientRect != null && isInsideClientRect(this._clientRect, x, y); + } + /** + * Figures out whether an item should be moved into a sibling + * drop container, based on its current position. + * @param item Drag item that is being moved. + * @param x Position of the item along the X axis. + * @param y Position of the item along the Y axis. + */ + _getSiblingContainerFromPosition(item, x, y) { + return this._siblings.find(sibling => sibling._canReceive(item, x, y)); + } + /** + * Checks whether the drop list can receive the passed-in item. + * @param item Item that is being dragged into the list. + * @param x Position of the item along the X axis. + * @param y Position of the item along the Y axis. + */ + _canReceive(item, x, y) { + if (!this._clientRect || !isInsideClientRect(this._clientRect, x, y) || !this.enterPredicate(item, this)) { + return false; + } + const elementFromPoint = this._getShadowRoot().elementFromPoint(x, y); + // If there's no element at the pointer position, then + // the client rect is probably scrolled out of the view. + if (!elementFromPoint) { + return false; + } + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element); + // The `ClientRect`, that we're using to find the container over which the user is + // hovering, doesn't give us any information on whether the element has been scrolled + // out of the view or whether it's overlapping with other containers. This means that + // we could end up transferring the item into a container that's invisible or is positioned + // below another one. We use the result from `elementFromPoint` to get the top-most element + // at the pointer position and to find whether it's one of the intersecting drop containers. + return elementFromPoint === nativeElement || nativeElement.contains(elementFromPoint); + } + /** + * Called by one of the connected drop lists when a dragging sequence has started. + * @param sibling Sibling in which dragging has started. + */ + _startReceiving(sibling, items) { + const activeSiblings = this._activeSiblings; + if (!activeSiblings.has(sibling) && items.every(item => { + // Note that we have to add an exception to the `enterPredicate` for items that started off + // in this drop list. The drag ref has logic that allows an item to return to its initial + // container, if it has left the initial container and none of the connected containers + // allow it to enter. See `DragRef._updateActiveDropContainer` for more context. + return this.enterPredicate(item, this) || this._draggables.indexOf(item) > -1; + })) { + activeSiblings.add(sibling); + this._cacheParentPositions(); + this._listenToScrollEvents(); + this.receivingStarted.next({ + initiator: sibling, + receiver: this, + items + }); + } + } + /** + * Called by a connected drop list when dragging has stopped. + * @param sibling Sibling whose dragging has stopped. + */ + _stopReceiving(sibling) { + this._activeSiblings.delete(sibling); + this._viewportScrollSubscription.unsubscribe(); + this.receivingStopped.next({ + initiator: sibling, + receiver: this + }); + } + /** + * Starts listening to scroll events on the viewport. + * Used for updating the internal state of the list. + */ + _listenToScrollEvents() { + this._viewportScrollSubscription = this._dragDropRegistry.scrolled(this._getShadowRoot()).subscribe(event => { + if (this.isDragging()) { + const scrollDifference = this._parentPositions.handleScroll(event); + if (scrollDifference) { + this._sortStrategy.updateOnScroll(scrollDifference.top, scrollDifference.left); + } + } else if (this.isReceiving()) { + this._cacheParentPositions(); + } + }); + } + /** + * Lazily resolves and returns the shadow root of the element. We do this in a function, rather + * than saving it in property directly on init, because we want to resolve it as late as possible + * in order to ensure that the element has been moved into the shadow DOM. Doing it inside the + * constructor might be too early if the element is inside of something like `ngFor` or `ngIf`. + */ + _getShadowRoot() { + if (!this._cachedShadowRoot) { + const shadowRoot = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getShadowRoot)((0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element)); + this._cachedShadowRoot = shadowRoot || this._document; + } + return this._cachedShadowRoot; + } + /** Notifies any siblings that may potentially receive the item. */ + _notifyReceivingSiblings() { + const draggedItems = this._sortStrategy.getActiveItemsSnapshot().filter(item => item.isDragging()); + this._siblings.forEach(sibling => sibling._startReceiving(this, draggedItems)); + } +} +/** + * Gets whether the vertical auto-scroll direction of a node. + * @param clientRect Dimensions of the node. + * @param pointerY Position of the user's pointer along the y axis. + */ +function getVerticalScrollDirection(clientRect, pointerY) { + const { + top, + bottom, + height + } = clientRect; + const yThreshold = height * SCROLL_PROXIMITY_THRESHOLD; + if (pointerY >= top - yThreshold && pointerY <= top + yThreshold) { + return 1 /* AutoScrollVerticalDirection.UP */; + } else if (pointerY >= bottom - yThreshold && pointerY <= bottom + yThreshold) { + return 2 /* AutoScrollVerticalDirection.DOWN */; + } + return 0 /* AutoScrollVerticalDirection.NONE */; +} +/** + * Gets whether the horizontal auto-scroll direction of a node. + * @param clientRect Dimensions of the node. + * @param pointerX Position of the user's pointer along the x axis. + */ +function getHorizontalScrollDirection(clientRect, pointerX) { + const { + left, + right, + width + } = clientRect; + const xThreshold = width * SCROLL_PROXIMITY_THRESHOLD; + if (pointerX >= left - xThreshold && pointerX <= left + xThreshold) { + return 1 /* AutoScrollHorizontalDirection.LEFT */; + } else if (pointerX >= right - xThreshold && pointerX <= right + xThreshold) { + return 2 /* AutoScrollHorizontalDirection.RIGHT */; + } + return 0 /* AutoScrollHorizontalDirection.NONE */; +} +/** + * Gets the directions in which an element node should be scrolled, + * assuming that the user's pointer is already within it scrollable region. + * @param element Element for which we should calculate the scroll direction. + * @param clientRect Bounding client rectangle of the element. + * @param pointerX Position of the user's pointer along the x axis. + * @param pointerY Position of the user's pointer along the y axis. + */ +function getElementScrollDirections(element, clientRect, pointerX, pointerY) { + const computedVertical = getVerticalScrollDirection(clientRect, pointerY); + const computedHorizontal = getHorizontalScrollDirection(clientRect, pointerX); + let verticalScrollDirection = 0 /* AutoScrollVerticalDirection.NONE */; + let horizontalScrollDirection = 0 /* AutoScrollHorizontalDirection.NONE */; + // Note that we here we do some extra checks for whether the element is actually scrollable in + // a certain direction and we only assign the scroll direction if it is. We do this so that we + // can allow other elements to be scrolled, if the current element can't be scrolled anymore. + // This allows us to handle cases where the scroll regions of two scrollable elements overlap. + if (computedVertical) { + const scrollTop = element.scrollTop; + if (computedVertical === 1 /* AutoScrollVerticalDirection.UP */) { + if (scrollTop > 0) { + verticalScrollDirection = 1 /* AutoScrollVerticalDirection.UP */; + } + } else if (element.scrollHeight - scrollTop > element.clientHeight) { + verticalScrollDirection = 2 /* AutoScrollVerticalDirection.DOWN */; + } + } + if (computedHorizontal) { + const scrollLeft = element.scrollLeft; + if (computedHorizontal === 1 /* AutoScrollHorizontalDirection.LEFT */) { + if (scrollLeft > 0) { + horizontalScrollDirection = 1 /* AutoScrollHorizontalDirection.LEFT */; + } + } else if (element.scrollWidth - scrollLeft > element.clientWidth) { + horizontalScrollDirection = 2 /* AutoScrollHorizontalDirection.RIGHT */; + } + } + return [verticalScrollDirection, horizontalScrollDirection]; +} + +/** Event options that can be used to bind an active, capturing event. */ +const activeCapturingEventOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__.normalizePassiveListenerOptions)({ + passive: false, + capture: true +}); +/** + * Service that keeps track of all the drag item and drop container + * instances, and manages global event listeners on the `document`. + * @docs-private + */ +// Note: this class is generic, rather than referencing CdkDrag and CdkDropList directly, in order +// to avoid circular imports. If we were to reference them here, importing the registry into the +// classes that are registering themselves will introduce a circular import. +class DragDropRegistry { + constructor(_ngZone, _document) { + this._ngZone = _ngZone; + /** Registered drop container instances. */ + this._dropInstances = new Set(); + /** Registered drag item instances. */ + this._dragInstances = new Set(); + /** Drag item instances that are currently being dragged. */ + this._activeDragInstances = []; + /** Keeps track of the event listeners that we've bound to the `document`. */ + this._globalListeners = new Map(); + /** + * Predicate function to check if an item is being dragged. Moved out into a property, + * because it'll be called a lot and we don't want to create a new function every time. + */ + this._draggingPredicate = item => item.isDragging(); + /** + * Emits the `touchmove` or `mousemove` events that are dispatched + * while the user is dragging a drag item instance. + */ + this.pointerMove = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits the `touchend` or `mouseup` events that are dispatched + * while the user is dragging a drag item instance. + */ + this.pointerUp = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits when the viewport has been scrolled while the user is dragging an item. + * @deprecated To be turned into a private member. Use the `scrolled` method instead. + * @breaking-change 13.0.0 + */ + this.scroll = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Event listener that will prevent the default browser action while the user is dragging. + * @param event Event whose default action should be prevented. + */ + this._preventDefaultWhileDragging = event => { + if (this._activeDragInstances.length > 0) { + event.preventDefault(); + } + }; + /** Event listener for `touchmove` that is bound even if no dragging is happening. */ + this._persistentTouchmoveListener = event => { + if (this._activeDragInstances.length > 0) { + // Note that we only want to prevent the default action after dragging has actually started. + // Usually this is the same time at which the item is added to the `_activeDragInstances`, + // but it could be pushed back if the user has set up a drag delay or threshold. + if (this._activeDragInstances.some(this._draggingPredicate)) { + event.preventDefault(); + } + this.pointerMove.next(event); + } + }; + this._document = _document; + } + /** Adds a drop container to the registry. */ + registerDropContainer(drop) { + if (!this._dropInstances.has(drop)) { + this._dropInstances.add(drop); + } + } + /** Adds a drag item instance to the registry. */ + registerDragItem(drag) { + this._dragInstances.add(drag); + // The `touchmove` event gets bound once, ahead of time, because WebKit + // won't preventDefault on a dynamically-added `touchmove` listener. + // See https://bugs.webkit.org/show_bug.cgi?id=184250. + if (this._dragInstances.size === 1) { + this._ngZone.runOutsideAngular(() => { + // The event handler has to be explicitly active, + // because newer browsers make it passive by default. + this._document.addEventListener('touchmove', this._persistentTouchmoveListener, activeCapturingEventOptions); + }); + } + } + /** Removes a drop container from the registry. */ + removeDropContainer(drop) { + this._dropInstances.delete(drop); + } + /** Removes a drag item instance from the registry. */ + removeDragItem(drag) { + this._dragInstances.delete(drag); + this.stopDragging(drag); + if (this._dragInstances.size === 0) { + this._document.removeEventListener('touchmove', this._persistentTouchmoveListener, activeCapturingEventOptions); + } + } + /** + * Starts the dragging sequence for a drag instance. + * @param drag Drag instance which is being dragged. + * @param event Event that initiated the dragging. + */ + startDragging(drag, event) { + // Do not process the same drag twice to avoid memory leaks and redundant listeners + if (this._activeDragInstances.indexOf(drag) > -1) { + return; + } + this._activeDragInstances.push(drag); + if (this._activeDragInstances.length === 1) { + const isTouchEvent = event.type.startsWith('touch'); + // We explicitly bind __active__ listeners here, because newer browsers will default to + // passive ones for `mousemove` and `touchmove`. The events need to be active, because we + // use `preventDefault` to prevent the page from scrolling while the user is dragging. + this._globalListeners.set(isTouchEvent ? 'touchend' : 'mouseup', { + handler: e => this.pointerUp.next(e), + options: true + }).set('scroll', { + handler: e => this.scroll.next(e), + // Use capturing so that we pick up scroll changes in any scrollable nodes that aren't + // the document. See https://github.com/angular/components/issues/17144. + options: true + }) + // Preventing the default action on `mousemove` isn't enough to disable text selection + // on Safari so we need to prevent the selection event as well. Alternatively this can + // be done by setting `user-select: none` on the `body`, however it has causes a style + // recalculation which can be expensive on pages with a lot of elements. + .set('selectstart', { + handler: this._preventDefaultWhileDragging, + options: activeCapturingEventOptions + }); + // We don't have to bind a move event for touch drag sequences, because + // we already have a persistent global one bound from `registerDragItem`. + if (!isTouchEvent) { + this._globalListeners.set('mousemove', { + handler: e => this.pointerMove.next(e), + options: activeCapturingEventOptions + }); + } + this._ngZone.runOutsideAngular(() => { + this._globalListeners.forEach((config, name) => { + this._document.addEventListener(name, config.handler, config.options); + }); + }); + } + } + /** Stops dragging a drag item instance. */ + stopDragging(drag) { + const index = this._activeDragInstances.indexOf(drag); + if (index > -1) { + this._activeDragInstances.splice(index, 1); + if (this._activeDragInstances.length === 0) { + this._clearGlobalListeners(); + } + } + } + /** Gets whether a drag item instance is currently being dragged. */ + isDragging(drag) { + return this._activeDragInstances.indexOf(drag) > -1; + } + /** + * Gets a stream that will emit when any element on the page is scrolled while an item is being + * dragged. + * @param shadowRoot Optional shadow root that the current dragging sequence started from. + * Top-level listeners won't pick up events coming from the shadow DOM so this parameter can + * be used to include an additional top-level listener at the shadow root level. + */ + scrolled(shadowRoot) { + const streams = [this.scroll]; + if (shadowRoot && shadowRoot !== this._document) { + // Note that this is basically the same as `fromEvent` from rxjs, but we do it ourselves, + // because we want to guarantee that the event is bound outside of the `NgZone`. With + // `fromEvent` it'll only happen if the subscription is outside the `NgZone`. + streams.push(new rxjs__WEBPACK_IMPORTED_MODULE_8__.Observable(observer => { + return this._ngZone.runOutsideAngular(() => { + const eventOptions = true; + const callback = event => { + if (this._activeDragInstances.length) { + observer.next(event); + } + }; + shadowRoot.addEventListener('scroll', callback, eventOptions); + return () => { + shadowRoot.removeEventListener('scroll', callback, eventOptions); + }; + }); + })); + } + return (0,rxjs__WEBPACK_IMPORTED_MODULE_9__.merge)(...streams); + } + ngOnDestroy() { + this._dragInstances.forEach(instance => this.removeDragItem(instance)); + this._dropInstances.forEach(instance => this.removeDropContainer(instance)); + this._clearGlobalListeners(); + this.pointerMove.complete(); + this.pointerUp.complete(); + } + /** Clears out the global event listeners from the `document`. */ + _clearGlobalListeners() { + this._globalListeners.forEach((config, name) => { + this._document.removeEventListener(name, config.handler, config.options); + }); + this._globalListeners.clear(); + } + static #_ = this.ɵfac = function DragDropRegistry_Factory(t) { + return new (t || DragDropRegistry)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineInjectable"]({ + token: DragDropRegistry, + factory: DragDropRegistry.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](DragDropRegistry, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT] + }] + }]; + }, null); +})(); + +/** Default configuration to be used when creating a `DragRef`. */ +const DEFAULT_CONFIG = { + dragStartThreshold: 5, + pointerDirectionChangeThreshold: 5 +}; +/** + * Service that allows for drag-and-drop functionality to be attached to DOM elements. + */ +class DragDrop { + constructor(_document, _ngZone, _viewportRuler, _dragDropRegistry) { + this._document = _document; + this._ngZone = _ngZone; + this._viewportRuler = _viewportRuler; + this._dragDropRegistry = _dragDropRegistry; + } + /** + * Turns an element into a draggable item. + * @param element Element to which to attach the dragging functionality. + * @param config Object used to configure the dragging behavior. + */ + createDrag(element, config = DEFAULT_CONFIG) { + return new DragRef(element, config, this._document, this._ngZone, this._viewportRuler, this._dragDropRegistry); + } + /** + * Turns an element into a drop list. + * @param element Element to which to attach the drop list functionality. + */ + createDropList(element) { + return new DropListRef(element, this._dragDropRegistry, this._document, this._ngZone, this._viewportRuler); + } + static #_ = this.ɵfac = function DragDrop_Factory(t) { + return new (t || DragDrop)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ViewportRuler), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](DragDropRegistry)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineInjectable"]({ + token: DragDrop, + factory: DragDrop.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](DragDrop, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT] + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone + }, { + type: _angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ViewportRuler + }, { + type: DragDropRegistry + }]; + }, null); +})(); + +/** + * Injection token that can be used for a `CdkDrag` to provide itself as a parent to the + * drag-specific child directive (`CdkDragHandle`, `CdkDragPreview` etc.). Used primarily + * to avoid circular imports. + * @docs-private + */ +const CDK_DRAG_PARENT = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CDK_DRAG_PARENT'); + +/** + * Asserts that a particular node is an element. + * @param node Node to be checked. + * @param name Name to attach to the error message. + */ +function assertElementNode(node, name) { + if (node.nodeType !== 1) { + throw Error(`${name} must be attached to an element node. ` + `Currently attached to "${node.nodeName}".`); + } +} + +/** + * Injection token that can be used to reference instances of `CdkDragHandle`. It serves as + * alternative token to the actual `CdkDragHandle` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DRAG_HANDLE = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDragHandle'); +/** Handle that can be used to drag a CdkDrag instance. */ +class CdkDragHandle { + /** Whether starting to drag through this handle is disabled. */ + get disabled() { + return this._disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + this._stateChanges.next(this); + } + constructor(element, parentDrag) { + this.element = element; + /** Emits when the state of the handle has changed. */ + this._stateChanges = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + this._disabled = false; + if (typeof ngDevMode === 'undefined' || ngDevMode) { + assertElementNode(element.nativeElement, 'cdkDragHandle'); + } + this._parentDrag = parentDrag; + } + ngOnDestroy() { + this._stateChanges.complete(); + } + static #_ = this.ɵfac = function CdkDragHandle_Factory(t) { + return new (t || CdkDragHandle)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_PARENT, 12)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDragHandle, + selectors: [["", "cdkDragHandle", ""]], + hostAttrs: [1, "cdk-drag-handle"], + inputs: { + disabled: ["cdkDragHandleDisabled", "disabled"] + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_HANDLE, + useExisting: CdkDragHandle + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDragHandle, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDragHandle]', + standalone: true, + host: { + 'class': 'cdk-drag-handle' + }, + providers: [{ + provide: CDK_DRAG_HANDLE, + useExisting: CdkDragHandle + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_PARENT] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }] + }]; + }, { + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragHandleDisabled'] + }] + }); +})(); + +/** + * Injection token that can be used to reference instances of `CdkDragPlaceholder`. It serves as + * alternative token to the actual `CdkDragPlaceholder` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DRAG_PLACEHOLDER = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDragPlaceholder'); +/** + * Element that will be used as a template for the placeholder of a CdkDrag when + * it is being dragged. The placeholder is displayed in place of the element being dragged. + */ +class CdkDragPlaceholder { + constructor(templateRef) { + this.templateRef = templateRef; + } + static #_ = this.ɵfac = function CdkDragPlaceholder_Factory(t) { + return new (t || CdkDragPlaceholder)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDragPlaceholder, + selectors: [["ng-template", "cdkDragPlaceholder", ""]], + inputs: { + data: "data" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_PLACEHOLDER, + useExisting: CdkDragPlaceholder + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDragPlaceholder, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: 'ng-template[cdkDragPlaceholder]', + standalone: true, + providers: [{ + provide: CDK_DRAG_PLACEHOLDER, + useExisting: CdkDragPlaceholder + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef + }]; + }, { + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }] + }); +})(); + +/** + * Injection token that can be used to reference instances of `CdkDragPreview`. It serves as + * alternative token to the actual `CdkDragPreview` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DRAG_PREVIEW = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDragPreview'); +/** + * Element that will be used as a template for the preview + * of a CdkDrag when it is being dragged. + */ +class CdkDragPreview { + /** Whether the preview should preserve the same size as the item that is being dragged. */ + get matchSize() { + return this._matchSize; + } + set matchSize(value) { + this._matchSize = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + } + constructor(templateRef) { + this.templateRef = templateRef; + this._matchSize = false; + } + static #_ = this.ɵfac = function CdkDragPreview_Factory(t) { + return new (t || CdkDragPreview)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDragPreview, + selectors: [["ng-template", "cdkDragPreview", ""]], + inputs: { + data: "data", + matchSize: "matchSize" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_PREVIEW, + useExisting: CdkDragPreview + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDragPreview, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: 'ng-template[cdkDragPreview]', + standalone: true, + providers: [{ + provide: CDK_DRAG_PREVIEW, + useExisting: CdkDragPreview + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef + }]; + }, { + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }], + matchSize: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }] + }); +})(); + +/** + * Injection token that can be used to configure the + * behavior of the drag&drop-related components. + */ +const CDK_DRAG_CONFIG = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CDK_DRAG_CONFIG'); +const DRAG_HOST_CLASS = 'cdk-drag'; +/** + * Injection token that can be used to reference instances of `CdkDropList`. It serves as + * alternative token to the actual `CdkDropList` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DROP_LIST = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDropList'); +/** Element that can be moved inside a CdkDropList container. */ +class CdkDrag { + static #_ = this._dragInstances = []; + /** Whether starting to drag this element is disabled. */ + get disabled() { + return this._disabled || this.dropContainer && this.dropContainer.disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + this._dragRef.disabled = this._disabled; + } + constructor( /** Element that the draggable is attached to. */ + element, /** Droppable container that the draggable is a part of. */ + dropContainer, + /** + * @deprecated `_document` parameter no longer being used and will be removed. + * @breaking-change 12.0.0 + */ + _document, _ngZone, _viewContainerRef, config, _dir, dragDrop, _changeDetectorRef, _selfHandle, _parentDrag) { + this.element = element; + this.dropContainer = dropContainer; + this._ngZone = _ngZone; + this._viewContainerRef = _viewContainerRef; + this._dir = _dir; + this._changeDetectorRef = _changeDetectorRef; + this._selfHandle = _selfHandle; + this._parentDrag = _parentDrag; + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user starts dragging the item. */ + this.started = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user has released a drag item, before any animations have started. */ + this.released = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user stops dragging an item in the container. */ + this.ended = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user has moved the item into a new container. */ + this.entered = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user removes the item its container by dragging it into another container. */ + this.exited = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user drops the item inside a container. */ + this.dropped = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Emits as the user is dragging the item. Use with caution, + * because this event will fire for every pixel that the user has dragged. + */ + this.moved = new rxjs__WEBPACK_IMPORTED_MODULE_8__.Observable(observer => { + const subscription = this._dragRef.moved.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.map)(movedEvent => ({ + source: this, + pointerPosition: movedEvent.pointerPosition, + event: movedEvent.event, + delta: movedEvent.delta, + distance: movedEvent.distance + }))).subscribe(observer); + return () => { + subscription.unsubscribe(); + }; + }); + this._dragRef = dragDrop.createDrag(element, { + dragStartThreshold: config && config.dragStartThreshold != null ? config.dragStartThreshold : 5, + pointerDirectionChangeThreshold: config && config.pointerDirectionChangeThreshold != null ? config.pointerDirectionChangeThreshold : 5, + zIndex: config?.zIndex + }); + this._dragRef.data = this; + // We have to keep track of the drag instances in order to be able to match an element to + // a drag instance. We can't go through the global registry of `DragRef`, because the root + // element could be different. + CdkDrag._dragInstances.push(this); + if (config) { + this._assignDefaults(config); + } + // Note that usually the container is assigned when the drop list is picks up the item, but in + // some cases (mainly transplanted views with OnPush, see #18341) we may end up in a situation + // where there are no items on the first change detection pass, but the items get picked up as + // soon as the user triggers another pass by dragging. This is a problem, because the item would + // have to switch from standalone mode to drag mode in the middle of the dragging sequence which + // is too late since the two modes save different kinds of information. We work around it by + // assigning the drop container both from here and the list. + if (dropContainer) { + this._dragRef._withDropContainer(dropContainer._dropListRef); + dropContainer.addItem(this); + } + this._syncInputs(this._dragRef); + this._handleEvents(this._dragRef); + } + /** + * Returns the element that is being used as a placeholder + * while the current element is being dragged. + */ + getPlaceholderElement() { + return this._dragRef.getPlaceholderElement(); + } + /** Returns the root draggable element. */ + getRootElement() { + return this._dragRef.getRootElement(); + } + /** Resets a standalone drag item to its initial position. */ + reset() { + this._dragRef.reset(); + } + /** + * Gets the pixel coordinates of the draggable outside of a drop container. + */ + getFreeDragPosition() { + return this._dragRef.getFreeDragPosition(); + } + /** + * Sets the current position in pixels the draggable outside of a drop container. + * @param value New position to be set. + */ + setFreeDragPosition(value) { + this._dragRef.setFreeDragPosition(value); + } + ngAfterViewInit() { + // Normally this isn't in the zone, but it can cause major performance regressions for apps + // using `zone-patch-rxjs` because it'll trigger a change detection when it unsubscribes. + this._ngZone.runOutsideAngular(() => { + // We need to wait for the zone to stabilize, in order for the reference + // element to be in the proper place in the DOM. This is mostly relevant + // for draggable elements inside portals since they get stamped out in + // their original DOM position and then they get transferred to the portal. + this._ngZone.onStable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.take)(1), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._destroyed)).subscribe(() => { + this._updateRootElement(); + this._setupHandlesListener(); + if (this.freeDragPosition) { + this._dragRef.setFreeDragPosition(this.freeDragPosition); + } + }); + }); + } + ngOnChanges(changes) { + const rootSelectorChange = changes['rootElementSelector']; + const positionChange = changes['freeDragPosition']; + // We don't have to react to the first change since it's being + // handled in `ngAfterViewInit` where it needs to be deferred. + if (rootSelectorChange && !rootSelectorChange.firstChange) { + this._updateRootElement(); + } + // Skip the first change since it's being handled in `ngAfterViewInit`. + if (positionChange && !positionChange.firstChange && this.freeDragPosition) { + this._dragRef.setFreeDragPosition(this.freeDragPosition); + } + } + ngOnDestroy() { + if (this.dropContainer) { + this.dropContainer.removeItem(this); + } + const index = CdkDrag._dragInstances.indexOf(this); + if (index > -1) { + CdkDrag._dragInstances.splice(index, 1); + } + // Unnecessary in most cases, but used to avoid extra change detections with `zone-paths-rxjs`. + this._ngZone.runOutsideAngular(() => { + this._destroyed.next(); + this._destroyed.complete(); + this._dragRef.dispose(); + }); + } + /** Syncs the root element with the `DragRef`. */ + _updateRootElement() { + const element = this.element.nativeElement; + let rootElement = element; + if (this.rootElementSelector) { + rootElement = element.closest !== undefined ? element.closest(this.rootElementSelector) : + // Comment tag doesn't have closest method, so use parent's one. + element.parentElement?.closest(this.rootElementSelector); + } + if (rootElement && (typeof ngDevMode === 'undefined' || ngDevMode)) { + assertElementNode(rootElement, 'cdkDrag'); + } + this._dragRef.withRootElement(rootElement || element); + } + /** Gets the boundary element, based on the `boundaryElement` value. */ + _getBoundaryElement() { + const boundary = this.boundaryElement; + if (!boundary) { + return null; + } + if (typeof boundary === 'string') { + return this.element.nativeElement.closest(boundary); + } + return (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(boundary); + } + /** Syncs the inputs of the CdkDrag with the options of the underlying DragRef. */ + _syncInputs(ref) { + ref.beforeStarted.subscribe(() => { + if (!ref.isDragging()) { + const dir = this._dir; + const dragStartDelay = this.dragStartDelay; + const placeholder = this._placeholderTemplate ? { + template: this._placeholderTemplate.templateRef, + context: this._placeholderTemplate.data, + viewContainer: this._viewContainerRef + } : null; + const preview = this._previewTemplate ? { + template: this._previewTemplate.templateRef, + context: this._previewTemplate.data, + matchSize: this._previewTemplate.matchSize, + viewContainer: this._viewContainerRef + } : null; + ref.disabled = this.disabled; + ref.lockAxis = this.lockAxis; + ref.dragStartDelay = typeof dragStartDelay === 'object' && dragStartDelay ? dragStartDelay : (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceNumberProperty)(dragStartDelay); + ref.constrainPosition = this.constrainPosition; + ref.previewClass = this.previewClass; + ref.withBoundaryElement(this._getBoundaryElement()).withPlaceholderTemplate(placeholder).withPreviewTemplate(preview).withPreviewContainer(this.previewContainer || 'global'); + if (dir) { + ref.withDirection(dir.value); + } + } + }); + // This only needs to be resolved once. + ref.beforeStarted.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.take)(1)).subscribe(() => { + // If we managed to resolve a parent through DI, use it. + if (this._parentDrag) { + ref.withParent(this._parentDrag._dragRef); + return; + } + // Otherwise fall back to resolving the parent by looking up the DOM. This can happen if + // the item was projected into another item by something like `ngTemplateOutlet`. + let parent = this.element.nativeElement.parentElement; + while (parent) { + if (parent.classList.contains(DRAG_HOST_CLASS)) { + ref.withParent(CdkDrag._dragInstances.find(drag => { + return drag.element.nativeElement === parent; + })?._dragRef || null); + break; + } + parent = parent.parentElement; + } + }); + } + /** Handles the events from the underlying `DragRef`. */ + _handleEvents(ref) { + ref.started.subscribe(startEvent => { + this.started.emit({ + source: this, + event: startEvent.event + }); + // Since all of these events run outside of change detection, + // we need to ensure that everything is marked correctly. + this._changeDetectorRef.markForCheck(); + }); + ref.released.subscribe(releaseEvent => { + this.released.emit({ + source: this, + event: releaseEvent.event + }); + }); + ref.ended.subscribe(endEvent => { + this.ended.emit({ + source: this, + distance: endEvent.distance, + dropPoint: endEvent.dropPoint, + event: endEvent.event + }); + // Since all of these events run outside of change detection, + // we need to ensure that everything is marked correctly. + this._changeDetectorRef.markForCheck(); + }); + ref.entered.subscribe(enterEvent => { + this.entered.emit({ + container: enterEvent.container.data, + item: this, + currentIndex: enterEvent.currentIndex + }); + }); + ref.exited.subscribe(exitEvent => { + this.exited.emit({ + container: exitEvent.container.data, + item: this + }); + }); + ref.dropped.subscribe(dropEvent => { + this.dropped.emit({ + previousIndex: dropEvent.previousIndex, + currentIndex: dropEvent.currentIndex, + previousContainer: dropEvent.previousContainer.data, + container: dropEvent.container.data, + isPointerOverContainer: dropEvent.isPointerOverContainer, + item: this, + distance: dropEvent.distance, + dropPoint: dropEvent.dropPoint, + event: dropEvent.event + }); + }); + } + /** Assigns the default input values based on a provided config object. */ + _assignDefaults(config) { + const { + lockAxis, + dragStartDelay, + constrainPosition, + previewClass, + boundaryElement, + draggingDisabled, + rootElementSelector, + previewContainer + } = config; + this.disabled = draggingDisabled == null ? false : draggingDisabled; + this.dragStartDelay = dragStartDelay || 0; + if (lockAxis) { + this.lockAxis = lockAxis; + } + if (constrainPosition) { + this.constrainPosition = constrainPosition; + } + if (previewClass) { + this.previewClass = previewClass; + } + if (boundaryElement) { + this.boundaryElement = boundaryElement; + } + if (rootElementSelector) { + this.rootElementSelector = rootElementSelector; + } + if (previewContainer) { + this.previewContainer = previewContainer; + } + } + /** Sets up the listener that syncs the handles with the drag ref. */ + _setupHandlesListener() { + // Listen for any newly-added handles. + this._handles.changes.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_15__.startWith)(this._handles), + // Sync the new handles with the DragRef. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.tap)(handles => { + const childHandleElements = handles.filter(handle => handle._parentDrag === this).map(handle => handle.element); + // Usually handles are only allowed to be a descendant of the drag element, but if + // the consumer defined a different drag root, we should allow the drag element + // itself to be a handle too. + if (this._selfHandle && this.rootElementSelector) { + childHandleElements.push(this.element); + } + this._dragRef.withHandles(childHandleElements); + }), + // Listen if the state of any of the handles changes. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.switchMap)(handles => { + return (0,rxjs__WEBPACK_IMPORTED_MODULE_9__.merge)(...handles.map(item => { + return item._stateChanges.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_15__.startWith)(item)); + })); + }), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._destroyed)).subscribe(handleInstance => { + // Enabled/disable the handle that changed in the DragRef. + const dragRef = this._dragRef; + const handle = handleInstance.element.nativeElement; + handleInstance.disabled ? dragRef.disableHandle(handle) : dragRef.enableHandle(handle); + }); + } + static #_2 = this.ɵfac = function CdkDrag_Factory(t) { + return new (t || CdkDrag)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DROP_LIST, 12), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ViewContainerRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_CONFIG, 8), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, 8), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](DragDrop), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_HANDLE, 10), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_PARENT, 12)); + }; + static #_3 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDrag, + selectors: [["", "cdkDrag", ""]], + contentQueries: function CdkDrag_ContentQueries(rf, ctx, dirIndex) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵcontentQuery"](dirIndex, CDK_DRAG_PREVIEW, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵcontentQuery"](dirIndex, CDK_DRAG_PLACEHOLDER, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵcontentQuery"](dirIndex, CDK_DRAG_HANDLE, 5); + } + if (rf & 2) { + let _t; + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵloadQuery"]()) && (ctx._previewTemplate = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵloadQuery"]()) && (ctx._placeholderTemplate = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵloadQuery"]()) && (ctx._handles = _t); + } + }, + hostAttrs: [1, "cdk-drag"], + hostVars: 4, + hostBindings: function CdkDrag_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵclassProp"]("cdk-drag-disabled", ctx.disabled)("cdk-drag-dragging", ctx._dragRef.isDragging()); + } + }, + inputs: { + data: ["cdkDragData", "data"], + lockAxis: ["cdkDragLockAxis", "lockAxis"], + rootElementSelector: ["cdkDragRootElement", "rootElementSelector"], + boundaryElement: ["cdkDragBoundary", "boundaryElement"], + dragStartDelay: ["cdkDragStartDelay", "dragStartDelay"], + freeDragPosition: ["cdkDragFreeDragPosition", "freeDragPosition"], + disabled: ["cdkDragDisabled", "disabled"], + constrainPosition: ["cdkDragConstrainPosition", "constrainPosition"], + previewClass: ["cdkDragPreviewClass", "previewClass"], + previewContainer: ["cdkDragPreviewContainer", "previewContainer"] + }, + outputs: { + started: "cdkDragStarted", + released: "cdkDragReleased", + ended: "cdkDragEnded", + entered: "cdkDragEntered", + exited: "cdkDragExited", + dropped: "cdkDragDropped", + moved: "cdkDragMoved" + }, + exportAs: ["cdkDrag"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_PARENT, + useExisting: CdkDrag + }]), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵNgOnChangesFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDrag, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDrag]', + exportAs: 'cdkDrag', + standalone: true, + host: { + 'class': DRAG_HOST_CLASS, + '[class.cdk-drag-disabled]': 'disabled', + '[class.cdk-drag-dragging]': '_dragRef.isDragging()' + }, + providers: [{ + provide: CDK_DRAG_PARENT, + useExisting: CdkDrag + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DROP_LIST] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT] + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ViewContainerRef + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_CONFIG] + }] + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }] + }, { + type: DragDrop + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef + }, { + type: CdkDragHandle, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Self + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_HANDLE] + }] + }, { + type: CdkDrag, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_PARENT] + }] + }]; + }, { + _handles: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ContentChildren, + args: [CDK_DRAG_HANDLE, { + descendants: true + }] + }], + _previewTemplate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ContentChild, + args: [CDK_DRAG_PREVIEW] + }], + _placeholderTemplate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ContentChild, + args: [CDK_DRAG_PLACEHOLDER] + }], + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragData'] + }], + lockAxis: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragLockAxis'] + }], + rootElementSelector: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragRootElement'] + }], + boundaryElement: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragBoundary'] + }], + dragStartDelay: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragStartDelay'] + }], + freeDragPosition: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragFreeDragPosition'] + }], + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragDisabled'] + }], + constrainPosition: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragConstrainPosition'] + }], + previewClass: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragPreviewClass'] + }], + previewContainer: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragPreviewContainer'] + }], + started: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragStarted'] + }], + released: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragReleased'] + }], + ended: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragEnded'] + }], + entered: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragEntered'] + }], + exited: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragExited'] + }], + dropped: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragDropped'] + }], + moved: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragMoved'] + }] + }); +})(); + +/** + * Injection token that can be used to reference instances of `CdkDropListGroup`. It serves as + * alternative token to the actual `CdkDropListGroup` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DROP_LIST_GROUP = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDropListGroup'); +/** + * Declaratively connects sibling `cdkDropList` instances together. All of the `cdkDropList` + * elements that are placed inside a `cdkDropListGroup` will be connected to each other + * automatically. Can be used as an alternative to the `cdkDropListConnectedTo` input + * from `cdkDropList`. + */ +class CdkDropListGroup { + constructor() { + /** Drop lists registered inside the group. */ + this._items = new Set(); + this._disabled = false; + } + /** Whether starting a dragging sequence from inside this group is disabled. */ + get disabled() { + return this._disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + } + ngOnDestroy() { + this._items.clear(); + } + static #_ = this.ɵfac = function CdkDropListGroup_Factory(t) { + return new (t || CdkDropListGroup)(); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDropListGroup, + selectors: [["", "cdkDropListGroup", ""]], + inputs: { + disabled: ["cdkDropListGroupDisabled", "disabled"] + }, + exportAs: ["cdkDropListGroup"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DROP_LIST_GROUP, + useExisting: CdkDropListGroup + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDropListGroup, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDropListGroup]', + exportAs: 'cdkDropListGroup', + standalone: true, + providers: [{ + provide: CDK_DROP_LIST_GROUP, + useExisting: CdkDropListGroup + }] + }] + }], null, { + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListGroupDisabled'] + }] + }); +})(); + +/** Counter used to generate unique ids for drop zones. */ +let _uniqueIdCounter = 0; +/** Container that wraps a set of draggable items. */ +class CdkDropList { + /** Keeps track of the drop lists that are currently on the page. */ + static #_ = this._dropLists = []; + /** Whether starting a dragging sequence from this container is disabled. */ + get disabled() { + return this._disabled || !!this._group && this._group.disabled; + } + set disabled(value) { + // Usually we sync the directive and ref state right before dragging starts, in order to have + // a single point of failure and to avoid having to use setters for everything. `disabled` is + // a special case, because it can prevent the `beforeStarted` event from firing, which can lock + // the user in a disabled state, so we also need to sync it as it's being set. + this._dropListRef.disabled = this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + } + constructor( /** Element that the drop list is attached to. */ + element, dragDrop, _changeDetectorRef, _scrollDispatcher, _dir, _group, config) { + this.element = element; + this._changeDetectorRef = _changeDetectorRef; + this._scrollDispatcher = _scrollDispatcher; + this._dir = _dir; + this._group = _group; + /** Emits when the list has been destroyed. */ + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Other draggable containers that this container is connected to and into which the + * container's items can be transferred. Can either be references to other drop containers, + * or their unique IDs. + */ + this.connectedTo = []; + /** + * Unique ID for the drop zone. Can be used as a reference + * in the `connectedTo` of another `CdkDropList`. + */ + this.id = `cdk-drop-list-${_uniqueIdCounter++}`; + /** + * Function that is used to determine whether an item + * is allowed to be moved into a drop container. + */ + this.enterPredicate = () => true; + /** Functions that is used to determine whether an item can be sorted into a particular index. */ + this.sortPredicate = () => true; + /** Emits when the user drops an item inside the container. */ + this.dropped = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Emits when the user has moved a new drag item into this container. + */ + this.entered = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Emits when the user removes an item from the container + * by dragging it into another container. + */ + this.exited = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits as the user is swapping items while actively dragging. */ + this.sorted = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Keeps track of the items that are registered with this container. Historically we used to + * do this with a `ContentChildren` query, however queries don't handle transplanted views very + * well which means that we can't handle cases like dragging the headers of a `mat-table` + * correctly. What we do instead is to have the items register themselves with the container + * and then we sort them based on their position in the DOM. + */ + this._unsortedItems = new Set(); + if (typeof ngDevMode === 'undefined' || ngDevMode) { + assertElementNode(element.nativeElement, 'cdkDropList'); + } + this._dropListRef = dragDrop.createDropList(element); + this._dropListRef.data = this; + if (config) { + this._assignDefaults(config); + } + this._dropListRef.enterPredicate = (drag, drop) => { + return this.enterPredicate(drag.data, drop.data); + }; + this._dropListRef.sortPredicate = (index, drag, drop) => { + return this.sortPredicate(index, drag.data, drop.data); + }; + this._setupInputSyncSubscription(this._dropListRef); + this._handleEvents(this._dropListRef); + CdkDropList._dropLists.push(this); + if (_group) { + _group._items.add(this); + } + } + /** Registers an items with the drop list. */ + addItem(item) { + this._unsortedItems.add(item); + if (this._dropListRef.isDragging()) { + this._syncItemsWithRef(); + } + } + /** Removes an item from the drop list. */ + removeItem(item) { + this._unsortedItems.delete(item); + if (this._dropListRef.isDragging()) { + this._syncItemsWithRef(); + } + } + /** Gets the registered items in the list, sorted by their position in the DOM. */ + getSortedItems() { + return Array.from(this._unsortedItems).sort((a, b) => { + const documentPosition = a._dragRef.getVisibleElement().compareDocumentPosition(b._dragRef.getVisibleElement()); + // `compareDocumentPosition` returns a bitmask so we have to use a bitwise operator. + // https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition + // tslint:disable-next-line:no-bitwise + return documentPosition & Node.DOCUMENT_POSITION_FOLLOWING ? -1 : 1; + }); + } + ngOnDestroy() { + const index = CdkDropList._dropLists.indexOf(this); + if (index > -1) { + CdkDropList._dropLists.splice(index, 1); + } + if (this._group) { + this._group._items.delete(this); + } + this._unsortedItems.clear(); + this._dropListRef.dispose(); + this._destroyed.next(); + this._destroyed.complete(); + } + /** Syncs the inputs of the CdkDropList with the options of the underlying DropListRef. */ + _setupInputSyncSubscription(ref) { + if (this._dir) { + this._dir.change.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_15__.startWith)(this._dir.value), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._destroyed)).subscribe(value => ref.withDirection(value)); + } + ref.beforeStarted.subscribe(() => { + const siblings = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceArray)(this.connectedTo).map(drop => { + if (typeof drop === 'string') { + const correspondingDropList = CdkDropList._dropLists.find(list => list.id === drop); + if (!correspondingDropList && (typeof ngDevMode === 'undefined' || ngDevMode)) { + console.warn(`CdkDropList could not find connected drop list with id "${drop}"`); + } + return correspondingDropList; + } + return drop; + }); + if (this._group) { + this._group._items.forEach(drop => { + if (siblings.indexOf(drop) === -1) { + siblings.push(drop); + } + }); + } + // Note that we resolve the scrollable parents here so that we delay the resolution + // as long as possible, ensuring that the element is in its final place in the DOM. + if (!this._scrollableParentsResolved) { + const scrollableParents = this._scrollDispatcher.getAncestorScrollContainers(this.element).map(scrollable => scrollable.getElementRef().nativeElement); + this._dropListRef.withScrollableParents(scrollableParents); + // Only do this once since it involves traversing the DOM and the parents + // shouldn't be able to change without the drop list being destroyed. + this._scrollableParentsResolved = true; + } + ref.disabled = this.disabled; + ref.lockAxis = this.lockAxis; + ref.sortingDisabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(this.sortingDisabled); + ref.autoScrollDisabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(this.autoScrollDisabled); + ref.autoScrollStep = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceNumberProperty)(this.autoScrollStep, 2); + ref.connectedTo(siblings.filter(drop => drop && drop !== this).map(list => list._dropListRef)).withOrientation(this.orientation); + }); + } + /** Handles events from the underlying DropListRef. */ + _handleEvents(ref) { + ref.beforeStarted.subscribe(() => { + this._syncItemsWithRef(); + this._changeDetectorRef.markForCheck(); + }); + ref.entered.subscribe(event => { + this.entered.emit({ + container: this, + item: event.item.data, + currentIndex: event.currentIndex + }); + }); + ref.exited.subscribe(event => { + this.exited.emit({ + container: this, + item: event.item.data + }); + this._changeDetectorRef.markForCheck(); + }); + ref.sorted.subscribe(event => { + this.sorted.emit({ + previousIndex: event.previousIndex, + currentIndex: event.currentIndex, + container: this, + item: event.item.data + }); + }); + ref.dropped.subscribe(dropEvent => { + this.dropped.emit({ + previousIndex: dropEvent.previousIndex, + currentIndex: dropEvent.currentIndex, + previousContainer: dropEvent.previousContainer.data, + container: dropEvent.container.data, + item: dropEvent.item.data, + isPointerOverContainer: dropEvent.isPointerOverContainer, + distance: dropEvent.distance, + dropPoint: dropEvent.dropPoint, + event: dropEvent.event + }); + // Mark for check since all of these events run outside of change + // detection and we're not guaranteed for something else to have triggered it. + this._changeDetectorRef.markForCheck(); + }); + (0,rxjs__WEBPACK_IMPORTED_MODULE_9__.merge)(ref.receivingStarted, ref.receivingStopped).subscribe(() => this._changeDetectorRef.markForCheck()); + } + /** Assigns the default input values based on a provided config object. */ + _assignDefaults(config) { + const { + lockAxis, + draggingDisabled, + sortingDisabled, + listAutoScrollDisabled, + listOrientation + } = config; + this.disabled = draggingDisabled == null ? false : draggingDisabled; + this.sortingDisabled = sortingDisabled == null ? false : sortingDisabled; + this.autoScrollDisabled = listAutoScrollDisabled == null ? false : listAutoScrollDisabled; + this.orientation = listOrientation || 'vertical'; + if (lockAxis) { + this.lockAxis = lockAxis; + } + } + /** Syncs up the registered drag items with underlying drop list ref. */ + _syncItemsWithRef() { + this._dropListRef.withItems(this.getSortedItems().map(item => item._dragRef)); + } + static #_2 = this.ɵfac = function CdkDropList_Factory(t) { + return new (t || CdkDropList)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](DragDrop), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, 8), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DROP_LIST_GROUP, 12), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_CONFIG, 8)); + }; + static #_3 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDropList, + selectors: [["", "cdkDropList", ""], ["cdk-drop-list"]], + hostAttrs: [1, "cdk-drop-list"], + hostVars: 7, + hostBindings: function CdkDropList_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵattribute"]("id", ctx.id); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵclassProp"]("cdk-drop-list-disabled", ctx.disabled)("cdk-drop-list-dragging", ctx._dropListRef.isDragging())("cdk-drop-list-receiving", ctx._dropListRef.isReceiving()); + } + }, + inputs: { + connectedTo: ["cdkDropListConnectedTo", "connectedTo"], + data: ["cdkDropListData", "data"], + orientation: ["cdkDropListOrientation", "orientation"], + id: "id", + lockAxis: ["cdkDropListLockAxis", "lockAxis"], + disabled: ["cdkDropListDisabled", "disabled"], + sortingDisabled: ["cdkDropListSortingDisabled", "sortingDisabled"], + enterPredicate: ["cdkDropListEnterPredicate", "enterPredicate"], + sortPredicate: ["cdkDropListSortPredicate", "sortPredicate"], + autoScrollDisabled: ["cdkDropListAutoScrollDisabled", "autoScrollDisabled"], + autoScrollStep: ["cdkDropListAutoScrollStep", "autoScrollStep"] + }, + outputs: { + dropped: "cdkDropListDropped", + entered: "cdkDropListEntered", + exited: "cdkDropListExited", + sorted: "cdkDropListSorted" + }, + exportAs: ["cdkDropList"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([ + // Prevent child drop lists from picking up the same group as their parent. + { + provide: CDK_DROP_LIST_GROUP, + useValue: undefined + }, { + provide: CDK_DROP_LIST, + useExisting: CdkDropList + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDropList, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDropList], cdk-drop-list', + exportAs: 'cdkDropList', + standalone: true, + providers: [ + // Prevent child drop lists from picking up the same group as their parent. + { + provide: CDK_DROP_LIST_GROUP, + useValue: undefined + }, { + provide: CDK_DROP_LIST, + useExisting: CdkDropList + }], + host: { + 'class': 'cdk-drop-list', + '[attr.id]': 'id', + '[class.cdk-drop-list-disabled]': 'disabled', + '[class.cdk-drop-list-dragging]': '_dropListRef.isDragging()', + '[class.cdk-drop-list-receiving]': '_dropListRef.isReceiving()' + } + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef + }, { + type: DragDrop + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef + }, { + type: _angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ScrollDispatcher + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }] + }, { + type: CdkDropListGroup, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DROP_LIST_GROUP] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_CONFIG] + }] + }]; + }, { + connectedTo: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListConnectedTo'] + }], + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListData'] + }], + orientation: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListOrientation'] + }], + id: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }], + lockAxis: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListLockAxis'] + }], + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListDisabled'] + }], + sortingDisabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListSortingDisabled'] + }], + enterPredicate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListEnterPredicate'] + }], + sortPredicate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListSortPredicate'] + }], + autoScrollDisabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListAutoScrollDisabled'] + }], + autoScrollStep: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListAutoScrollStep'] + }], + dropped: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListDropped'] + }], + entered: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListEntered'] + }], + exited: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListExited'] + }], + sorted: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListSorted'] + }] + }); +})(); +const DRAG_DROP_DIRECTIVES = [CdkDropList, CdkDropListGroup, CdkDrag, CdkDragHandle, CdkDragPreview, CdkDragPlaceholder]; +class DragDropModule { + static #_ = this.ɵfac = function DragDropModule_Factory(t) { + return new (t || DragDropModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineNgModule"]({ + type: DragDropModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineInjector"]({ + providers: [DragDrop], + imports: [_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.CdkScrollableModule] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](DragDropModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgModule, + args: [{ + imports: DRAG_DROP_DIRECTIVES, + exports: [_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.CdkScrollableModule, ...DRAG_DROP_DIRECTIVES], + providers: [DragDrop] + }] + }], null, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 30554: +/*!*********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/keycodes.mjs ***! + \*********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ A: () => (/* binding */ A), +/* harmony export */ ALT: () => (/* binding */ ALT), +/* harmony export */ APOSTROPHE: () => (/* binding */ APOSTROPHE), +/* harmony export */ AT_SIGN: () => (/* binding */ AT_SIGN), +/* harmony export */ B: () => (/* binding */ B), +/* harmony export */ BACKSLASH: () => (/* binding */ BACKSLASH), +/* harmony export */ BACKSPACE: () => (/* binding */ BACKSPACE), +/* harmony export */ C: () => (/* binding */ C), +/* harmony export */ CAPS_LOCK: () => (/* binding */ CAPS_LOCK), +/* harmony export */ CLOSE_SQUARE_BRACKET: () => (/* binding */ CLOSE_SQUARE_BRACKET), +/* harmony export */ COMMA: () => (/* binding */ COMMA), +/* harmony export */ CONTEXT_MENU: () => (/* binding */ CONTEXT_MENU), +/* harmony export */ CONTROL: () => (/* binding */ CONTROL), +/* harmony export */ D: () => (/* binding */ D), +/* harmony export */ DASH: () => (/* binding */ DASH), +/* harmony export */ DELETE: () => (/* binding */ DELETE), +/* harmony export */ DOWN_ARROW: () => (/* binding */ DOWN_ARROW), +/* harmony export */ E: () => (/* binding */ E), +/* harmony export */ EIGHT: () => (/* binding */ EIGHT), +/* harmony export */ END: () => (/* binding */ END), +/* harmony export */ ENTER: () => (/* binding */ ENTER), +/* harmony export */ EQUALS: () => (/* binding */ EQUALS), +/* harmony export */ ESCAPE: () => (/* binding */ ESCAPE), +/* harmony export */ F: () => (/* binding */ F), +/* harmony export */ F1: () => (/* binding */ F1), +/* harmony export */ F10: () => (/* binding */ F10), +/* harmony export */ F11: () => (/* binding */ F11), +/* harmony export */ F12: () => (/* binding */ F12), +/* harmony export */ F2: () => (/* binding */ F2), +/* harmony export */ F3: () => (/* binding */ F3), +/* harmony export */ F4: () => (/* binding */ F4), +/* harmony export */ F5: () => (/* binding */ F5), +/* harmony export */ F6: () => (/* binding */ F6), +/* harmony export */ F7: () => (/* binding */ F7), +/* harmony export */ F8: () => (/* binding */ F8), +/* harmony export */ F9: () => (/* binding */ F9), +/* harmony export */ FF_EQUALS: () => (/* binding */ FF_EQUALS), +/* harmony export */ FF_MINUS: () => (/* binding */ FF_MINUS), +/* harmony export */ FF_MUTE: () => (/* binding */ FF_MUTE), +/* harmony export */ FF_SEMICOLON: () => (/* binding */ FF_SEMICOLON), +/* harmony export */ FF_VOLUME_DOWN: () => (/* binding */ FF_VOLUME_DOWN), +/* harmony export */ FF_VOLUME_UP: () => (/* binding */ FF_VOLUME_UP), +/* harmony export */ FIRST_MEDIA: () => (/* binding */ FIRST_MEDIA), +/* harmony export */ FIVE: () => (/* binding */ FIVE), +/* harmony export */ FOUR: () => (/* binding */ FOUR), +/* harmony export */ G: () => (/* binding */ G), +/* harmony export */ H: () => (/* binding */ H), +/* harmony export */ HOME: () => (/* binding */ HOME), +/* harmony export */ I: () => (/* binding */ I), +/* harmony export */ INSERT: () => (/* binding */ INSERT), +/* harmony export */ J: () => (/* binding */ J), +/* harmony export */ K: () => (/* binding */ K), +/* harmony export */ L: () => (/* binding */ L), +/* harmony export */ LAST_MEDIA: () => (/* binding */ LAST_MEDIA), +/* harmony export */ LEFT_ARROW: () => (/* binding */ LEFT_ARROW), +/* harmony export */ M: () => (/* binding */ M), +/* harmony export */ MAC_ENTER: () => (/* binding */ MAC_ENTER), +/* harmony export */ MAC_META: () => (/* binding */ MAC_META), +/* harmony export */ MAC_WK_CMD_LEFT: () => (/* binding */ MAC_WK_CMD_LEFT), +/* harmony export */ MAC_WK_CMD_RIGHT: () => (/* binding */ MAC_WK_CMD_RIGHT), +/* harmony export */ META: () => (/* binding */ META), +/* harmony export */ MUTE: () => (/* binding */ MUTE), +/* harmony export */ N: () => (/* binding */ N), +/* harmony export */ NINE: () => (/* binding */ NINE), +/* harmony export */ NUMPAD_DIVIDE: () => (/* binding */ NUMPAD_DIVIDE), +/* harmony export */ NUMPAD_EIGHT: () => (/* binding */ NUMPAD_EIGHT), +/* harmony export */ NUMPAD_FIVE: () => (/* binding */ NUMPAD_FIVE), +/* harmony export */ NUMPAD_FOUR: () => (/* binding */ NUMPAD_FOUR), +/* harmony export */ NUMPAD_MINUS: () => (/* binding */ NUMPAD_MINUS), +/* harmony export */ NUMPAD_MULTIPLY: () => (/* binding */ NUMPAD_MULTIPLY), +/* harmony export */ NUMPAD_NINE: () => (/* binding */ NUMPAD_NINE), +/* harmony export */ NUMPAD_ONE: () => (/* binding */ NUMPAD_ONE), +/* harmony export */ NUMPAD_PERIOD: () => (/* binding */ NUMPAD_PERIOD), +/* harmony export */ NUMPAD_PLUS: () => (/* binding */ NUMPAD_PLUS), +/* harmony export */ NUMPAD_SEVEN: () => (/* binding */ NUMPAD_SEVEN), +/* harmony export */ NUMPAD_SIX: () => (/* binding */ NUMPAD_SIX), +/* harmony export */ NUMPAD_THREE: () => (/* binding */ NUMPAD_THREE), +/* harmony export */ NUMPAD_TWO: () => (/* binding */ NUMPAD_TWO), +/* harmony export */ NUMPAD_ZERO: () => (/* binding */ NUMPAD_ZERO), +/* harmony export */ NUM_CENTER: () => (/* binding */ NUM_CENTER), +/* harmony export */ NUM_LOCK: () => (/* binding */ NUM_LOCK), +/* harmony export */ O: () => (/* binding */ O), +/* harmony export */ ONE: () => (/* binding */ ONE), +/* harmony export */ OPEN_SQUARE_BRACKET: () => (/* binding */ OPEN_SQUARE_BRACKET), +/* harmony export */ P: () => (/* binding */ P), +/* harmony export */ PAGE_DOWN: () => (/* binding */ PAGE_DOWN), +/* harmony export */ PAGE_UP: () => (/* binding */ PAGE_UP), +/* harmony export */ PAUSE: () => (/* binding */ PAUSE), +/* harmony export */ PERIOD: () => (/* binding */ PERIOD), +/* harmony export */ PLUS_SIGN: () => (/* binding */ PLUS_SIGN), +/* harmony export */ PRINT_SCREEN: () => (/* binding */ PRINT_SCREEN), +/* harmony export */ Q: () => (/* binding */ Q), +/* harmony export */ QUESTION_MARK: () => (/* binding */ QUESTION_MARK), +/* harmony export */ R: () => (/* binding */ R), +/* harmony export */ RIGHT_ARROW: () => (/* binding */ RIGHT_ARROW), +/* harmony export */ S: () => (/* binding */ S), +/* harmony export */ SCROLL_LOCK: () => (/* binding */ SCROLL_LOCK), +/* harmony export */ SEMICOLON: () => (/* binding */ SEMICOLON), +/* harmony export */ SEVEN: () => (/* binding */ SEVEN), +/* harmony export */ SHIFT: () => (/* binding */ SHIFT), +/* harmony export */ SINGLE_QUOTE: () => (/* binding */ SINGLE_QUOTE), +/* harmony export */ SIX: () => (/* binding */ SIX), +/* harmony export */ SLASH: () => (/* binding */ SLASH), +/* harmony export */ SPACE: () => (/* binding */ SPACE), +/* harmony export */ T: () => (/* binding */ T), +/* harmony export */ TAB: () => (/* binding */ TAB), +/* harmony export */ THREE: () => (/* binding */ THREE), +/* harmony export */ TILDE: () => (/* binding */ TILDE), +/* harmony export */ TWO: () => (/* binding */ TWO), +/* harmony export */ U: () => (/* binding */ U), +/* harmony export */ UP_ARROW: () => (/* binding */ UP_ARROW), +/* harmony export */ V: () => (/* binding */ V), +/* harmony export */ VOLUME_DOWN: () => (/* binding */ VOLUME_DOWN), +/* harmony export */ VOLUME_UP: () => (/* binding */ VOLUME_UP), +/* harmony export */ W: () => (/* binding */ W), +/* harmony export */ X: () => (/* binding */ X), +/* harmony export */ Y: () => (/* binding */ Y), +/* harmony export */ Z: () => (/* binding */ Z), +/* harmony export */ ZERO: () => (/* binding */ ZERO), +/* harmony export */ hasModifierKey: () => (/* binding */ hasModifierKey) +/* harmony export */ }); +const MAC_ENTER = 3; +const BACKSPACE = 8; +const TAB = 9; +const NUM_CENTER = 12; +const ENTER = 13; +const SHIFT = 16; +const CONTROL = 17; +const ALT = 18; +const PAUSE = 19; +const CAPS_LOCK = 20; +const ESCAPE = 27; +const SPACE = 32; +const PAGE_UP = 33; +const PAGE_DOWN = 34; +const END = 35; +const HOME = 36; +const LEFT_ARROW = 37; +const UP_ARROW = 38; +const RIGHT_ARROW = 39; +const DOWN_ARROW = 40; +const PLUS_SIGN = 43; +const PRINT_SCREEN = 44; +const INSERT = 45; +const DELETE = 46; +const ZERO = 48; +const ONE = 49; +const TWO = 50; +const THREE = 51; +const FOUR = 52; +const FIVE = 53; +const SIX = 54; +const SEVEN = 55; +const EIGHT = 56; +const NINE = 57; +const FF_SEMICOLON = 59; // Firefox (Gecko) fires this for semicolon instead of 186 +const FF_EQUALS = 61; // Firefox (Gecko) fires this for equals instead of 187 +const QUESTION_MARK = 63; +const AT_SIGN = 64; +const A = 65; +const B = 66; +const C = 67; +const D = 68; +const E = 69; +const F = 70; +const G = 71; +const H = 72; +const I = 73; +const J = 74; +const K = 75; +const L = 76; +const M = 77; +const N = 78; +const O = 79; +const P = 80; +const Q = 81; +const R = 82; +const S = 83; +const T = 84; +const U = 85; +const V = 86; +const W = 87; +const X = 88; +const Y = 89; +const Z = 90; +const META = 91; // WIN_KEY_LEFT +const MAC_WK_CMD_LEFT = 91; +const MAC_WK_CMD_RIGHT = 93; +const CONTEXT_MENU = 93; +const NUMPAD_ZERO = 96; +const NUMPAD_ONE = 97; +const NUMPAD_TWO = 98; +const NUMPAD_THREE = 99; +const NUMPAD_FOUR = 100; +const NUMPAD_FIVE = 101; +const NUMPAD_SIX = 102; +const NUMPAD_SEVEN = 103; +const NUMPAD_EIGHT = 104; +const NUMPAD_NINE = 105; +const NUMPAD_MULTIPLY = 106; +const NUMPAD_PLUS = 107; +const NUMPAD_MINUS = 109; +const NUMPAD_PERIOD = 110; +const NUMPAD_DIVIDE = 111; +const F1 = 112; +const F2 = 113; +const F3 = 114; +const F4 = 115; +const F5 = 116; +const F6 = 117; +const F7 = 118; +const F8 = 119; +const F9 = 120; +const F10 = 121; +const F11 = 122; +const F12 = 123; +const NUM_LOCK = 144; +const SCROLL_LOCK = 145; +const FIRST_MEDIA = 166; +const FF_MINUS = 173; +const MUTE = 173; // Firefox (Gecko) fires 181 for MUTE +const VOLUME_DOWN = 174; // Firefox (Gecko) fires 182 for VOLUME_DOWN +const VOLUME_UP = 175; // Firefox (Gecko) fires 183 for VOLUME_UP +const FF_MUTE = 181; +const FF_VOLUME_DOWN = 182; +const LAST_MEDIA = 183; +const FF_VOLUME_UP = 183; +const SEMICOLON = 186; // Firefox (Gecko) fires 59 for SEMICOLON +const EQUALS = 187; // Firefox (Gecko) fires 61 for EQUALS +const COMMA = 188; +const DASH = 189; // Firefox (Gecko) fires 173 for DASH/MINUS +const PERIOD = 190; +const SLASH = 191; +const APOSTROPHE = 192; +const TILDE = 192; +const OPEN_SQUARE_BRACKET = 219; +const BACKSLASH = 220; +const CLOSE_SQUARE_BRACKET = 221; +const SINGLE_QUOTE = 222; +const MAC_META = 224; + +/** + * Checks whether a modifier key is pressed. + * @param event Event to be checked. + */ +function hasModifierKey(event, ...modifiers) { + if (modifiers.length) { + return modifiers.some(modifier => event[modifier]); + } + return event.altKey || event.shiftKey || event.ctrlKey || event.metaKey; +} + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 39743: +/*!*******************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/layout.mjs ***! + \*******************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ BreakpointObserver: () => (/* binding */ BreakpointObserver), +/* harmony export */ Breakpoints: () => (/* binding */ Breakpoints), +/* harmony export */ LayoutModule: () => (/* binding */ LayoutModule), +/* harmony export */ MediaMatcher: () => (/* binding */ MediaMatcher) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs */ 64555); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 75774); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 46939); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 51063); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 95933); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 1062); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); + + + + + + +class LayoutModule { + static #_ = this.ɵfac = function LayoutModule_Factory(t) { + return new (t || LayoutModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: LayoutModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](LayoutModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{}] + }], null, null); +})(); + +/** Global registry for all dynamically-created, injected media queries. */ +const mediaQueriesForWebkitCompatibility = new Set(); +/** Style tag that holds all of the dynamically-created media queries. */ +let mediaQueryStyleNode; +/** A utility for calling matchMedia queries. */ +class MediaMatcher { + constructor(_platform, _nonce) { + this._platform = _platform; + this._nonce = _nonce; + this._matchMedia = this._platform.isBrowser && window.matchMedia ? + // matchMedia is bound to the window scope intentionally as it is an illegal invocation to + // call it from a different scope. + window.matchMedia.bind(window) : noopMatchMedia; + } + /** + * Evaluates the given media query and returns the native MediaQueryList from which results + * can be retrieved. + * Confirms the layout engine will trigger for the selector query provided and returns the + * MediaQueryList for the query provided. + */ + matchMedia(query) { + if (this._platform.WEBKIT || this._platform.BLINK) { + createEmptyStyleRule(query, this._nonce); + } + return this._matchMedia(query); + } + static #_ = this.ɵfac = function MediaMatcher_Factory(t) { + return new (t || MediaMatcher)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_1__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.CSP_NONCE, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: MediaMatcher, + factory: MediaMatcher.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](MediaMatcher, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_1__.Platform + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_core__WEBPACK_IMPORTED_MODULE_0__.CSP_NONCE] + }] + }]; + }, null); +})(); +/** + * Creates an empty stylesheet that is used to work around browser inconsistencies related to + * `matchMedia`. At the time of writing, it handles the following cases: + * 1. On WebKit browsers, a media query has to have at least one rule in order for `matchMedia` + * to fire. We work around it by declaring a dummy stylesheet with a `@media` declaration. + * 2. In some cases Blink browsers will stop firing the `matchMedia` listener if none of the rules + * inside the `@media` match existing elements on the page. We work around it by having one rule + * targeting the `body`. See https://github.com/angular/components/issues/23546. + */ +function createEmptyStyleRule(query, nonce) { + if (mediaQueriesForWebkitCompatibility.has(query)) { + return; + } + try { + if (!mediaQueryStyleNode) { + mediaQueryStyleNode = document.createElement('style'); + if (nonce) { + mediaQueryStyleNode.nonce = nonce; + } + mediaQueryStyleNode.setAttribute('type', 'text/css'); + document.head.appendChild(mediaQueryStyleNode); + } + if (mediaQueryStyleNode.sheet) { + mediaQueryStyleNode.sheet.insertRule(`@media ${query} {body{ }}`, 0); + mediaQueriesForWebkitCompatibility.add(query); + } + } catch (e) { + console.error(e); + } +} +/** No-op matchMedia replacement for non-browser platforms. */ +function noopMatchMedia(query) { + // Use `as any` here to avoid adding additional necessary properties for + // the noop matcher. + return { + matches: query === 'all' || query === '', + media: query, + addListener: () => {}, + removeListener: () => {} + }; +} + +/** Utility for checking the matching state of @media queries. */ +class BreakpointObserver { + constructor(_mediaMatcher, _zone) { + this._mediaMatcher = _mediaMatcher; + this._zone = _zone; + /** A map of all media queries currently being listened for. */ + this._queries = new Map(); + /** A subject for all other observables to takeUntil based on. */ + this._destroySubject = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + } + /** Completes the active subject, signalling to all other observables to complete. */ + ngOnDestroy() { + this._destroySubject.next(); + this._destroySubject.complete(); + } + /** + * Whether one or more media queries match the current viewport size. + * @param value One or more media queries to check. + * @returns Whether any of the media queries match. + */ + isMatched(value) { + const queries = splitQueries((0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceArray)(value)); + return queries.some(mediaQuery => this._registerQuery(mediaQuery).mql.matches); + } + /** + * Gets an observable of results for the given queries that will emit new results for any changes + * in matching of the given queries. + * @param value One or more media queries to check. + * @returns A stream of matches for the given queries. + */ + observe(value) { + const queries = splitQueries((0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceArray)(value)); + const observables = queries.map(query => this._registerQuery(query).observable); + let stateObservable = (0,rxjs__WEBPACK_IMPORTED_MODULE_4__.combineLatest)(observables); + // Emit the first state immediately, and then debounce the subsequent emissions. + stateObservable = (0,rxjs__WEBPACK_IMPORTED_MODULE_5__.concat)(stateObservable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.take)(1)), stateObservable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.skip)(1), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_8__.debounceTime)(0))); + return stateObservable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_9__.map)(breakpointStates => { + const response = { + matches: false, + breakpoints: {} + }; + breakpointStates.forEach(({ + matches, + query + }) => { + response.matches = response.matches || matches; + response.breakpoints[query] = matches; + }); + return response; + })); + } + /** Registers a specific query to be listened for. */ + _registerQuery(query) { + // Only set up a new MediaQueryList if it is not already being listened for. + if (this._queries.has(query)) { + return this._queries.get(query); + } + const mql = this._mediaMatcher.matchMedia(query); + // Create callback for match changes and add it is as a listener. + const queryObservable = new rxjs__WEBPACK_IMPORTED_MODULE_10__.Observable(observer => { + // Listener callback methods are wrapped to be placed back in ngZone. Callbacks must be placed + // back into the zone because matchMedia is only included in Zone.js by loading the + // webapis-media-query.js file alongside the zone.js file. Additionally, some browsers do not + // have MediaQueryList inherit from EventTarget, which causes inconsistencies in how Zone.js + // patches it. + const handler = e => this._zone.run(() => observer.next(e)); + mql.addListener(handler); + return () => { + mql.removeListener(handler); + }; + }).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.startWith)(mql), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_9__.map)(({ + matches + }) => ({ + query, + matches + })), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_12__.takeUntil)(this._destroySubject)); + // Add the MediaQueryList to the set of queries. + const output = { + observable: queryObservable, + mql + }; + this._queries.set(query, output); + return output; + } + static #_ = this.ɵfac = function BreakpointObserver_Factory(t) { + return new (t || BreakpointObserver)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](MediaMatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: BreakpointObserver, + factory: BreakpointObserver.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](BreakpointObserver, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: MediaMatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, null); +})(); +/** + * Split each query string into separate query strings if two queries are provided as comma + * separated. + */ +function splitQueries(queries) { + return queries.map(query => query.split(',')).reduce((a1, a2) => a1.concat(a2)).map(query => query.trim()); +} + +// PascalCase is being used as Breakpoints is used like an enum. +// tslint:disable-next-line:variable-name +const Breakpoints = { + XSmall: '(max-width: 599.98px)', + Small: '(min-width: 600px) and (max-width: 959.98px)', + Medium: '(min-width: 960px) and (max-width: 1279.98px)', + Large: '(min-width: 1280px) and (max-width: 1919.98px)', + XLarge: '(min-width: 1920px)', + Handset: '(max-width: 599.98px) and (orientation: portrait), ' + '(max-width: 959.98px) and (orientation: landscape)', + Tablet: '(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), ' + '(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)', + Web: '(min-width: 840px) and (orientation: portrait), ' + '(min-width: 1280px) and (orientation: landscape)', + HandsetPortrait: '(max-width: 599.98px) and (orientation: portrait)', + TabletPortrait: '(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)', + WebPortrait: '(min-width: 840px) and (orientation: portrait)', + HandsetLandscape: '(max-width: 959.98px) and (orientation: landscape)', + TabletLandscape: '(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)', + WebLandscape: '(min-width: 1280px) and (orientation: landscape)' +}; + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 66787: +/*!**********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/observers.mjs ***! + \**********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CdkObserveContent: () => (/* binding */ CdkObserveContent), +/* harmony export */ ContentObserver: () => (/* binding */ ContentObserver), +/* harmony export */ MutationObserverFactory: () => (/* binding */ MutationObserverFactory), +/* harmony export */ ObserversModule: () => (/* binding */ ObserversModule) +/* harmony export */ }); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 95933); + + + + + + +/** + * Factory that creates a new MutationObserver and allows us to stub it out in unit tests. + * @docs-private + */ +class MutationObserverFactory { + create(callback) { + return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback); + } + static #_ = this.ɵfac = function MutationObserverFactory_Factory(t) { + return new (t || MutationObserverFactory)(); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: MutationObserverFactory, + factory: MutationObserverFactory.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](MutationObserverFactory, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], null, null); +})(); +/** An injectable service that allows watching elements for changes to their content. */ +class ContentObserver { + constructor(_mutationObserverFactory) { + this._mutationObserverFactory = _mutationObserverFactory; + /** Keeps track of the existing MutationObservers so they can be reused. */ + this._observedElements = new Map(); + } + ngOnDestroy() { + this._observedElements.forEach((_, element) => this._cleanupObserver(element)); + } + observe(elementOrRef) { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(elementOrRef); + return new rxjs__WEBPACK_IMPORTED_MODULE_2__.Observable(observer => { + const stream = this._observeElement(element); + const subscription = stream.subscribe(observer); + return () => { + subscription.unsubscribe(); + this._unobserveElement(element); + }; + }); + } + /** + * Observes the given element by using the existing MutationObserver if available, or creating a + * new one if not. + */ + _observeElement(element) { + if (!this._observedElements.has(element)) { + const stream = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + const observer = this._mutationObserverFactory.create(mutations => stream.next(mutations)); + if (observer) { + observer.observe(element, { + characterData: true, + childList: true, + subtree: true + }); + } + this._observedElements.set(element, { + observer, + stream, + count: 1 + }); + } else { + this._observedElements.get(element).count++; + } + return this._observedElements.get(element).stream; + } + /** + * Un-observes the given element and cleans up the underlying MutationObserver if nobody else is + * observing this element. + */ + _unobserveElement(element) { + if (this._observedElements.has(element)) { + this._observedElements.get(element).count--; + if (!this._observedElements.get(element).count) { + this._cleanupObserver(element); + } + } + } + /** Clean up the underlying MutationObserver for the specified element. */ + _cleanupObserver(element) { + if (this._observedElements.has(element)) { + const { + observer, + stream + } = this._observedElements.get(element); + if (observer) { + observer.disconnect(); + } + stream.complete(); + this._observedElements.delete(element); + } + } + static #_ = this.ɵfac = function ContentObserver_Factory(t) { + return new (t || ContentObserver)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](MutationObserverFactory)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ContentObserver, + factory: ContentObserver.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ContentObserver, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: MutationObserverFactory + }]; + }, null); +})(); +/** + * Directive that triggers a callback whenever the content of + * its associated element has changed. + */ +class CdkObserveContent { + /** + * Whether observing content is disabled. This option can be used + * to disconnect the underlying MutationObserver until it is needed. + */ + get disabled() { + return this._disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + this._disabled ? this._unsubscribe() : this._subscribe(); + } + /** Debounce interval for emitting the changes. */ + get debounce() { + return this._debounce; + } + set debounce(value) { + this._debounce = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceNumberProperty)(value); + this._subscribe(); + } + constructor(_contentObserver, _elementRef, _ngZone) { + this._contentObserver = _contentObserver; + this._elementRef = _elementRef; + this._ngZone = _ngZone; + /** Event emitted for each change in the element's content. */ + this.event = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + this._disabled = false; + this._currentSubscription = null; + } + ngAfterContentInit() { + if (!this._currentSubscription && !this.disabled) { + this._subscribe(); + } + } + ngOnDestroy() { + this._unsubscribe(); + } + _subscribe() { + this._unsubscribe(); + const stream = this._contentObserver.observe(this._elementRef); + // TODO(mmalerba): We shouldn't be emitting on this @Output() outside the zone. + // Consider brining it back inside the zone next time we're making breaking changes. + // Bringing it back inside can cause things like infinite change detection loops and changed + // after checked errors if people's code isn't handling it properly. + this._ngZone.runOutsideAngular(() => { + this._currentSubscription = (this.debounce ? stream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_4__.debounceTime)(this.debounce)) : stream).subscribe(this.event); + }); + } + _unsubscribe() { + this._currentSubscription?.unsubscribe(); + } + static #_ = this.ɵfac = function CdkObserveContent_Factory(t) { + return new (t || CdkObserveContent)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ContentObserver), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkObserveContent, + selectors: [["", "cdkObserveContent", ""]], + inputs: { + disabled: ["cdkObserveContentDisabled", "disabled"], + debounce: "debounce" + }, + outputs: { + event: "cdkObserveContent" + }, + exportAs: ["cdkObserveContent"] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkObserveContent, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkObserveContent]', + exportAs: 'cdkObserveContent' + }] + }], function () { + return [{ + type: ContentObserver + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, { + event: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output, + args: ['cdkObserveContent'] + }], + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkObserveContentDisabled'] + }], + debounce: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); +class ObserversModule { + static #_ = this.ɵfac = function ObserversModule_Factory(t) { + return new (t || ObserversModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: ObserversModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ + providers: [MutationObserverFactory] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ObserversModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + exports: [CdkObserveContent], + declarations: [CdkObserveContent], + providers: [MutationObserverFactory] + }] + }], null, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 73274: +/*!*********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/platform.mjs ***! + \*********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ Platform: () => (/* binding */ Platform), +/* harmony export */ PlatformModule: () => (/* binding */ PlatformModule), +/* harmony export */ _getEventTarget: () => (/* binding */ _getEventTarget), +/* harmony export */ _getFocusedElementPierceShadowDom: () => (/* binding */ _getFocusedElementPierceShadowDom), +/* harmony export */ _getShadowRoot: () => (/* binding */ _getShadowRoot), +/* harmony export */ _isTestEnvironment: () => (/* binding */ _isTestEnvironment), +/* harmony export */ _supportsShadowDom: () => (/* binding */ _supportsShadowDom), +/* harmony export */ getRtlScrollAxisType: () => (/* binding */ getRtlScrollAxisType), +/* harmony export */ getSupportedInputTypes: () => (/* binding */ getSupportedInputTypes), +/* harmony export */ normalizePassiveListenerOptions: () => (/* binding */ normalizePassiveListenerOptions), +/* harmony export */ supportsPassiveEventListeners: () => (/* binding */ supportsPassiveEventListeners), +/* harmony export */ supportsScrollBehavior: () => (/* binding */ supportsScrollBehavior) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/common */ 26575); + + + + +// Whether the current platform supports the V8 Break Iterator. The V8 check +// is necessary to detect all Blink based browsers. +let hasV8BreakIterator; +// We need a try/catch around the reference to `Intl`, because accessing it in some cases can +// cause IE to throw. These cases are tied to particular versions of Windows and can happen if +// the consumer is providing a polyfilled `Map`. See: +// https://github.com/Microsoft/ChakraCore/issues/3189 +// https://github.com/angular/components/issues/15687 +try { + hasV8BreakIterator = typeof Intl !== 'undefined' && Intl.v8BreakIterator; +} catch { + hasV8BreakIterator = false; +} +/** + * Service to detect the current platform by comparing the userAgent strings and + * checking browser-specific global properties. + */ +class Platform { + constructor(_platformId) { + this._platformId = _platformId; + // We want to use the Angular platform check because if the Document is shimmed + // without the navigator, the following checks will fail. This is preferred because + // sometimes the Document may be shimmed without the user's knowledge or intention + /** Whether the Angular application is being rendered in the browser. */ + this.isBrowser = this._platformId ? (0,_angular_common__WEBPACK_IMPORTED_MODULE_0__.isPlatformBrowser)(this._platformId) : typeof document === 'object' && !!document; + /** Whether the current browser is Microsoft Edge. */ + this.EDGE = this.isBrowser && /(edge)/i.test(navigator.userAgent); + /** Whether the current rendering engine is Microsoft Trident. */ + this.TRIDENT = this.isBrowser && /(msie|trident)/i.test(navigator.userAgent); + // EdgeHTML and Trident mock Blink specific things and need to be excluded from this check. + /** Whether the current rendering engine is Blink. */ + this.BLINK = this.isBrowser && !!(window.chrome || hasV8BreakIterator) && typeof CSS !== 'undefined' && !this.EDGE && !this.TRIDENT; + // Webkit is part of the userAgent in EdgeHTML, Blink and Trident. Therefore we need to + // ensure that Webkit runs standalone and is not used as another engine's base. + /** Whether the current rendering engine is WebKit. */ + this.WEBKIT = this.isBrowser && /AppleWebKit/i.test(navigator.userAgent) && !this.BLINK && !this.EDGE && !this.TRIDENT; + /** Whether the current platform is Apple iOS. */ + this.IOS = this.isBrowser && /iPad|iPhone|iPod/.test(navigator.userAgent) && !('MSStream' in window); + // It's difficult to detect the plain Gecko engine, because most of the browsers identify + // them self as Gecko-like browsers and modify the userAgent's according to that. + // Since we only cover one explicit Firefox case, we can simply check for Firefox + // instead of having an unstable check for Gecko. + /** Whether the current browser is Firefox. */ + this.FIREFOX = this.isBrowser && /(firefox|minefield)/i.test(navigator.userAgent); + /** Whether the current platform is Android. */ + // Trident on mobile adds the android platform to the userAgent to trick detections. + this.ANDROID = this.isBrowser && /android/i.test(navigator.userAgent) && !this.TRIDENT; + // Safari browsers will include the Safari keyword in their userAgent. Some browsers may fake + // this and just place the Safari keyword in the userAgent. To be more safe about Safari every + // Safari browser should also use Webkit as its layout engine. + /** Whether the current browser is Safari. */ + this.SAFARI = this.isBrowser && /safari/i.test(navigator.userAgent) && this.WEBKIT; + } + static #_ = this.ɵfac = function Platform_Factory(t) { + return new (t || Platform)(_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_1__.PLATFORM_ID)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineInjectable"]({ + token: Platform, + factory: Platform.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵsetClassMetadata"](Platform, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_1__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: Object, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_1__.Inject, + args: [_angular_core__WEBPACK_IMPORTED_MODULE_1__.PLATFORM_ID] + }] + }]; + }, null); +})(); +class PlatformModule { + static #_ = this.ɵfac = function PlatformModule_Factory(t) { + return new (t || PlatformModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineNgModule"]({ + type: PlatformModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵsetClassMetadata"](PlatformModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_1__.NgModule, + args: [{}] + }], null, null); +})(); + +/** Cached result Set of input types support by the current browser. */ +let supportedInputTypes; +/** Types of `` that *might* be supported. */ +const candidateInputTypes = [ +// `color` must come first. Chrome 56 shows a warning if we change the type to `color` after +// first changing it to something else: +// The specified value "" does not conform to the required format. +// The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers. +'color', 'button', 'checkbox', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', 'time', 'url', 'week']; +/** @returns The input types supported by this browser. */ +function getSupportedInputTypes() { + // Result is cached. + if (supportedInputTypes) { + return supportedInputTypes; + } + // We can't check if an input type is not supported until we're on the browser, so say that + // everything is supported when not on the browser. We don't use `Platform` here since it's + // just a helper function and can't inject it. + if (typeof document !== 'object' || !document) { + supportedInputTypes = new Set(candidateInputTypes); + return supportedInputTypes; + } + let featureTestInput = document.createElement('input'); + supportedInputTypes = new Set(candidateInputTypes.filter(value => { + featureTestInput.setAttribute('type', value); + return featureTestInput.type === value; + })); + return supportedInputTypes; +} + +/** Cached result of whether the user's browser supports passive event listeners. */ +let supportsPassiveEvents; +/** + * Checks whether the user's browser supports passive event listeners. + * See: https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md + */ +function supportsPassiveEventListeners() { + if (supportsPassiveEvents == null && typeof window !== 'undefined') { + try { + window.addEventListener('test', null, Object.defineProperty({}, 'passive', { + get: () => supportsPassiveEvents = true + })); + } finally { + supportsPassiveEvents = supportsPassiveEvents || false; + } + } + return supportsPassiveEvents; +} +/** + * Normalizes an `AddEventListener` object to something that can be passed + * to `addEventListener` on any browser, no matter whether it supports the + * `options` parameter. + * @param options Object to be normalized. + */ +function normalizePassiveListenerOptions(options) { + return supportsPassiveEventListeners() ? options : !!options.capture; +} + +/** Cached result of the way the browser handles the horizontal scroll axis in RTL mode. */ +let rtlScrollAxisType; +/** Cached result of the check that indicates whether the browser supports scroll behaviors. */ +let scrollBehaviorSupported; +/** Check whether the browser supports scroll behaviors. */ +function supportsScrollBehavior() { + if (scrollBehaviorSupported == null) { + // If we're not in the browser, it can't be supported. Also check for `Element`, because + // some projects stub out the global `document` during SSR which can throw us off. + if (typeof document !== 'object' || !document || typeof Element !== 'function' || !Element) { + scrollBehaviorSupported = false; + return scrollBehaviorSupported; + } + // If the element can have a `scrollBehavior` style, we can be sure that it's supported. + if ('scrollBehavior' in document.documentElement.style) { + scrollBehaviorSupported = true; + } else { + // At this point we have 3 possibilities: `scrollTo` isn't supported at all, it's + // supported but it doesn't handle scroll behavior, or it has been polyfilled. + const scrollToFunction = Element.prototype.scrollTo; + if (scrollToFunction) { + // We can detect if the function has been polyfilled by calling `toString` on it. Native + // functions are obfuscated using `[native code]`, whereas if it was overwritten we'd get + // the actual function source. Via https://davidwalsh.name/detect-native-function. Consider + // polyfilled functions as supporting scroll behavior. + scrollBehaviorSupported = !/\{\s*\[native code\]\s*\}/.test(scrollToFunction.toString()); + } else { + scrollBehaviorSupported = false; + } + } + } + return scrollBehaviorSupported; +} +/** + * Checks the type of RTL scroll axis used by this browser. As of time of writing, Chrome is NORMAL, + * Firefox & Safari are NEGATED, and IE & Edge are INVERTED. + */ +function getRtlScrollAxisType() { + // We can't check unless we're on the browser. Just assume 'normal' if we're not. + if (typeof document !== 'object' || !document) { + return 0 /* RtlScrollAxisType.NORMAL */; + } + if (rtlScrollAxisType == null) { + // Create a 1px wide scrolling container and a 2px wide content element. + const scrollContainer = document.createElement('div'); + const containerStyle = scrollContainer.style; + scrollContainer.dir = 'rtl'; + containerStyle.width = '1px'; + containerStyle.overflow = 'auto'; + containerStyle.visibility = 'hidden'; + containerStyle.pointerEvents = 'none'; + containerStyle.position = 'absolute'; + const content = document.createElement('div'); + const contentStyle = content.style; + contentStyle.width = '2px'; + contentStyle.height = '1px'; + scrollContainer.appendChild(content); + document.body.appendChild(scrollContainer); + rtlScrollAxisType = 0 /* RtlScrollAxisType.NORMAL */; + // The viewport starts scrolled all the way to the right in RTL mode. If we are in a NORMAL + // browser this would mean that the scrollLeft should be 1. If it's zero instead we know we're + // dealing with one of the other two types of browsers. + if (scrollContainer.scrollLeft === 0) { + // In a NEGATED browser the scrollLeft is always somewhere in [-maxScrollAmount, 0]. For an + // INVERTED browser it is always somewhere in [0, maxScrollAmount]. We can determine which by + // setting to the scrollLeft to 1. This is past the max for a NEGATED browser, so it will + // return 0 when we read it again. + scrollContainer.scrollLeft = 1; + rtlScrollAxisType = scrollContainer.scrollLeft === 0 ? 1 /* RtlScrollAxisType.NEGATED */ : 2 /* RtlScrollAxisType.INVERTED */; + } + scrollContainer.remove(); + } + return rtlScrollAxisType; +} +let shadowDomIsSupported; +/** Checks whether the user's browser support Shadow DOM. */ +function _supportsShadowDom() { + if (shadowDomIsSupported == null) { + const head = typeof document !== 'undefined' ? document.head : null; + shadowDomIsSupported = !!(head && (head.createShadowRoot || head.attachShadow)); + } + return shadowDomIsSupported; +} +/** Gets the shadow root of an element, if supported and the element is inside the Shadow DOM. */ +function _getShadowRoot(element) { + if (_supportsShadowDom()) { + const rootNode = element.getRootNode ? element.getRootNode() : null; + // Note that this should be caught by `_supportsShadowDom`, but some + // teams have been able to hit this code path on unsupported browsers. + if (typeof ShadowRoot !== 'undefined' && ShadowRoot && rootNode instanceof ShadowRoot) { + return rootNode; + } + } + return null; +} +/** + * Gets the currently-focused element on the page while + * also piercing through Shadow DOM boundaries. + */ +function _getFocusedElementPierceShadowDom() { + let activeElement = typeof document !== 'undefined' && document ? document.activeElement : null; + while (activeElement && activeElement.shadowRoot) { + const newActiveElement = activeElement.shadowRoot.activeElement; + if (newActiveElement === activeElement) { + break; + } else { + activeElement = newActiveElement; + } + } + return activeElement; +} +/** Gets the target of an event while accounting for Shadow DOM. */ +function _getEventTarget(event) { + // If an event is bound outside the Shadow DOM, the `event.target` will + // point to the shadow root so we have to use `composedPath` instead. + return event.composedPath ? event.composedPath()[0] : event.target; +} + +/** Gets whether the code is currently running in a test environment. */ +function _isTestEnvironment() { + // We can't use `declare const` because it causes conflicts inside Google with the real typings + // for these symbols and we can't read them off the global object, because they don't appear to + // be attached there for some runners like Jest. + // (see: https://github.com/angular/components/issues/23365#issuecomment-938146643) + return ( + // @ts-ignore + typeof __karma__ !== 'undefined' && !!__karma__ || + // @ts-ignore + typeof jasmine !== 'undefined' && !!jasmine || + // @ts-ignore + typeof jest !== 'undefined' && !!jest || + // @ts-ignore + typeof Mocha !== 'undefined' && !!Mocha + ); +} + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 50275: +/*!**********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/scrolling.mjs ***! + \**********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CdkFixedSizeVirtualScroll: () => (/* binding */ CdkFixedSizeVirtualScroll), +/* harmony export */ CdkScrollable: () => (/* binding */ CdkScrollable), +/* harmony export */ CdkScrollableModule: () => (/* binding */ CdkScrollableModule), +/* harmony export */ CdkVirtualForOf: () => (/* binding */ CdkVirtualForOf), +/* harmony export */ CdkVirtualScrollViewport: () => (/* binding */ CdkVirtualScrollViewport), +/* harmony export */ CdkVirtualScrollable: () => (/* binding */ CdkVirtualScrollable), +/* harmony export */ CdkVirtualScrollableElement: () => (/* binding */ CdkVirtualScrollableElement), +/* harmony export */ CdkVirtualScrollableWindow: () => (/* binding */ CdkVirtualScrollableWindow), +/* harmony export */ DEFAULT_RESIZE_TIME: () => (/* binding */ DEFAULT_RESIZE_TIME), +/* harmony export */ DEFAULT_SCROLL_TIME: () => (/* binding */ DEFAULT_SCROLL_TIME), +/* harmony export */ FixedSizeVirtualScrollStrategy: () => (/* binding */ FixedSizeVirtualScrollStrategy), +/* harmony export */ ScrollDispatcher: () => (/* binding */ ScrollDispatcher), +/* harmony export */ ScrollingModule: () => (/* binding */ ScrollingModule), +/* harmony export */ VIRTUAL_SCROLLABLE: () => (/* binding */ VIRTUAL_SCROLLABLE), +/* harmony export */ VIRTUAL_SCROLL_STRATEGY: () => (/* binding */ VIRTUAL_SCROLL_STRATEGY), +/* harmony export */ ViewportRuler: () => (/* binding */ ViewportRuler), +/* harmony export */ _fixedSizeVirtualScrollStrategyFactory: () => (/* binding */ _fixedSizeVirtualScrollStrategyFactory) +/* harmony export */ }); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs */ 9681); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs */ 82727); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs */ 81151); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! rxjs */ 72450); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 45083); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 41270); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 85046); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! rxjs/operators */ 1062); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! rxjs/operators */ 66407); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! rxjs/operators */ 680); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/cdk/bidi */ 24565); +/* harmony import */ var _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! @angular/cdk/collections */ 20636); + + + + + + + + + + + + + +/** The injection token used to specify the virtual scrolling strategy. */ +const _c0 = ["contentWrapper"]; +const _c1 = ["*"]; +const VIRTUAL_SCROLL_STRATEGY = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('VIRTUAL_SCROLL_STRATEGY'); + +/** Virtual scrolling strategy for lists with items of known fixed size. */ +class FixedSizeVirtualScrollStrategy { + /** + * @param itemSize The size of the items in the virtually scrolling list. + * @param minBufferPx The minimum amount of buffer (in pixels) before needing to render more + * @param maxBufferPx The amount of buffer (in pixels) to render when rendering more. + */ + constructor(itemSize, minBufferPx, maxBufferPx) { + this._scrolledIndexChange = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + this.scrolledIndexChange = this._scrolledIndexChange.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_2__.distinctUntilChanged)()); + /** The attached viewport. */ + this._viewport = null; + this._itemSize = itemSize; + this._minBufferPx = minBufferPx; + this._maxBufferPx = maxBufferPx; + } + /** + * Attaches this scroll strategy to a viewport. + * @param viewport The viewport to attach this strategy to. + */ + attach(viewport) { + this._viewport = viewport; + this._updateTotalContentSize(); + this._updateRenderedRange(); + } + /** Detaches this scroll strategy from the currently attached viewport. */ + detach() { + this._scrolledIndexChange.complete(); + this._viewport = null; + } + /** + * Update the item size and buffer size. + * @param itemSize The size of the items in the virtually scrolling list. + * @param minBufferPx The minimum amount of buffer (in pixels) before needing to render more + * @param maxBufferPx The amount of buffer (in pixels) to render when rendering more. + */ + updateItemAndBufferSize(itemSize, minBufferPx, maxBufferPx) { + if (maxBufferPx < minBufferPx && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error('CDK virtual scroll: maxBufferPx must be greater than or equal to minBufferPx'); + } + this._itemSize = itemSize; + this._minBufferPx = minBufferPx; + this._maxBufferPx = maxBufferPx; + this._updateTotalContentSize(); + this._updateRenderedRange(); + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onContentScrolled() { + this._updateRenderedRange(); + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onDataLengthChanged() { + this._updateTotalContentSize(); + this._updateRenderedRange(); + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onContentRendered() { + /* no-op */ + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onRenderedOffsetChanged() { + /* no-op */ + } + /** + * Scroll to the offset for the given index. + * @param index The index of the element to scroll to. + * @param behavior The ScrollBehavior to use when scrolling. + */ + scrollToIndex(index, behavior) { + if (this._viewport) { + this._viewport.scrollToOffset(index * this._itemSize, behavior); + } + } + /** Update the viewport's total content size. */ + _updateTotalContentSize() { + if (!this._viewport) { + return; + } + this._viewport.setTotalContentSize(this._viewport.getDataLength() * this._itemSize); + } + /** Update the viewport's rendered range. */ + _updateRenderedRange() { + if (!this._viewport) { + return; + } + const renderedRange = this._viewport.getRenderedRange(); + const newRange = { + start: renderedRange.start, + end: renderedRange.end + }; + const viewportSize = this._viewport.getViewportSize(); + const dataLength = this._viewport.getDataLength(); + let scrollOffset = this._viewport.measureScrollOffset(); + // Prevent NaN as result when dividing by zero. + let firstVisibleIndex = this._itemSize > 0 ? scrollOffset / this._itemSize : 0; + // If user scrolls to the bottom of the list and data changes to a smaller list + if (newRange.end > dataLength) { + // We have to recalculate the first visible index based on new data length and viewport size. + const maxVisibleItems = Math.ceil(viewportSize / this._itemSize); + const newVisibleIndex = Math.max(0, Math.min(firstVisibleIndex, dataLength - maxVisibleItems)); + // If first visible index changed we must update scroll offset to handle start/end buffers + // Current range must also be adjusted to cover the new position (bottom of new list). + if (firstVisibleIndex != newVisibleIndex) { + firstVisibleIndex = newVisibleIndex; + scrollOffset = newVisibleIndex * this._itemSize; + newRange.start = Math.floor(firstVisibleIndex); + } + newRange.end = Math.max(0, Math.min(dataLength, newRange.start + maxVisibleItems)); + } + const startBuffer = scrollOffset - newRange.start * this._itemSize; + if (startBuffer < this._minBufferPx && newRange.start != 0) { + const expandStart = Math.ceil((this._maxBufferPx - startBuffer) / this._itemSize); + newRange.start = Math.max(0, newRange.start - expandStart); + newRange.end = Math.min(dataLength, Math.ceil(firstVisibleIndex + (viewportSize + this._minBufferPx) / this._itemSize)); + } else { + const endBuffer = newRange.end * this._itemSize - (scrollOffset + viewportSize); + if (endBuffer < this._minBufferPx && newRange.end != dataLength) { + const expandEnd = Math.ceil((this._maxBufferPx - endBuffer) / this._itemSize); + if (expandEnd > 0) { + newRange.end = Math.min(dataLength, newRange.end + expandEnd); + newRange.start = Math.max(0, Math.floor(firstVisibleIndex - this._minBufferPx / this._itemSize)); + } + } + } + this._viewport.setRenderedRange(newRange); + this._viewport.setRenderedContentOffset(this._itemSize * newRange.start); + this._scrolledIndexChange.next(Math.floor(firstVisibleIndex)); + } +} +/** + * Provider factory for `FixedSizeVirtualScrollStrategy` that simply extracts the already created + * `FixedSizeVirtualScrollStrategy` from the given directive. + * @param fixedSizeDir The instance of `CdkFixedSizeVirtualScroll` to extract the + * `FixedSizeVirtualScrollStrategy` from. + */ +function _fixedSizeVirtualScrollStrategyFactory(fixedSizeDir) { + return fixedSizeDir._scrollStrategy; +} +/** A virtual scroll strategy that supports fixed-size items. */ +class CdkFixedSizeVirtualScroll { + constructor() { + this._itemSize = 20; + this._minBufferPx = 100; + this._maxBufferPx = 200; + /** The scroll strategy used by this directive. */ + this._scrollStrategy = new FixedSizeVirtualScrollStrategy(this.itemSize, this.minBufferPx, this.maxBufferPx); + } + /** The size of the items in the list (in pixels). */ + get itemSize() { + return this._itemSize; + } + set itemSize(value) { + this._itemSize = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(value); + } + /** + * The minimum amount of buffer rendered beyond the viewport (in pixels). + * If the amount of buffer dips below this number, more items will be rendered. Defaults to 100px. + */ + get minBufferPx() { + return this._minBufferPx; + } + set minBufferPx(value) { + this._minBufferPx = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(value); + } + /** + * The number of pixels worth of buffer to render for when rendering new items. Defaults to 200px. + */ + get maxBufferPx() { + return this._maxBufferPx; + } + set maxBufferPx(value) { + this._maxBufferPx = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(value); + } + ngOnChanges() { + this._scrollStrategy.updateItemAndBufferSize(this.itemSize, this.minBufferPx, this.maxBufferPx); + } + static #_ = this.ɵfac = function CdkFixedSizeVirtualScroll_Factory(t) { + return new (t || CdkFixedSizeVirtualScroll)(); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkFixedSizeVirtualScroll, + selectors: [["cdk-virtual-scroll-viewport", "itemSize", ""]], + inputs: { + itemSize: "itemSize", + minBufferPx: "minBufferPx", + maxBufferPx: "maxBufferPx" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: VIRTUAL_SCROLL_STRATEGY, + useFactory: _fixedSizeVirtualScrollStrategyFactory, + deps: [(0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.forwardRef)(() => CdkFixedSizeVirtualScroll)] + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵNgOnChangesFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkFixedSizeVirtualScroll, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: 'cdk-virtual-scroll-viewport[itemSize]', + standalone: true, + providers: [{ + provide: VIRTUAL_SCROLL_STRATEGY, + useFactory: _fixedSizeVirtualScrollStrategyFactory, + deps: [(0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.forwardRef)(() => CdkFixedSizeVirtualScroll)] + }] + }] + }], null, { + itemSize: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + minBufferPx: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + maxBufferPx: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); + +/** Time in ms to throttle the scrolling events by default. */ +const DEFAULT_SCROLL_TIME = 20; +/** + * Service contained all registered Scrollable references and emits an event when any one of the + * Scrollable references emit a scrolled event. + */ +class ScrollDispatcher { + constructor(_ngZone, _platform, document) { + this._ngZone = _ngZone; + this._platform = _platform; + /** Subject for notifying that a registered scrollable reference element has been scrolled. */ + this._scrolled = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Keeps track of the global `scroll` and `resize` subscriptions. */ + this._globalSubscription = null; + /** Keeps track of the amount of subscriptions to `scrolled`. Used for cleaning up afterwards. */ + this._scrolledCount = 0; + /** + * Map of all the scrollable references that are registered with the service and their + * scroll event subscriptions. + */ + this.scrollContainers = new Map(); + this._document = document; + } + /** + * Registers a scrollable instance with the service and listens for its scrolled events. When the + * scrollable is scrolled, the service emits the event to its scrolled observable. + * @param scrollable Scrollable instance to be registered. + */ + register(scrollable) { + if (!this.scrollContainers.has(scrollable)) { + this.scrollContainers.set(scrollable, scrollable.elementScrolled().subscribe(() => this._scrolled.next(scrollable))); + } + } + /** + * De-registers a Scrollable reference and unsubscribes from its scroll event observable. + * @param scrollable Scrollable instance to be deregistered. + */ + deregister(scrollable) { + const scrollableReference = this.scrollContainers.get(scrollable); + if (scrollableReference) { + scrollableReference.unsubscribe(); + this.scrollContainers.delete(scrollable); + } + } + /** + * Returns an observable that emits an event whenever any of the registered Scrollable + * references (or window, document, or body) fire a scrolled event. Can provide a time in ms + * to override the default "throttle" time. + * + * **Note:** in order to avoid hitting change detection for every scroll event, + * all of the events emitted from this stream will be run outside the Angular zone. + * If you need to update any data bindings as a result of a scroll event, you have + * to run the callback using `NgZone.run`. + */ + scrolled(auditTimeInMs = DEFAULT_SCROLL_TIME) { + if (!this._platform.isBrowser) { + return (0,rxjs__WEBPACK_IMPORTED_MODULE_4__.of)(); + } + return new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => { + if (!this._globalSubscription) { + this._addGlobalListener(); + } + // In the case of a 0ms delay, use an observable without auditTime + // since it does add a perceptible delay in processing overhead. + const subscription = auditTimeInMs > 0 ? this._scrolled.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.auditTime)(auditTimeInMs)).subscribe(observer) : this._scrolled.subscribe(observer); + this._scrolledCount++; + return () => { + subscription.unsubscribe(); + this._scrolledCount--; + if (!this._scrolledCount) { + this._removeGlobalListener(); + } + }; + }); + } + ngOnDestroy() { + this._removeGlobalListener(); + this.scrollContainers.forEach((_, container) => this.deregister(container)); + this._scrolled.complete(); + } + /** + * Returns an observable that emits whenever any of the + * scrollable ancestors of an element are scrolled. + * @param elementOrElementRef Element whose ancestors to listen for. + * @param auditTimeInMs Time to throttle the scroll events. + */ + ancestorScrolled(elementOrElementRef, auditTimeInMs) { + const ancestors = this.getAncestorScrollContainers(elementOrElementRef); + return this.scrolled(auditTimeInMs).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.filter)(target => { + return !target || ancestors.indexOf(target) > -1; + })); + } + /** Returns all registered Scrollables that contain the provided element. */ + getAncestorScrollContainers(elementOrElementRef) { + const scrollingContainers = []; + this.scrollContainers.forEach((_subscription, scrollable) => { + if (this._scrollableContainsElement(scrollable, elementOrElementRef)) { + scrollingContainers.push(scrollable); + } + }); + return scrollingContainers; + } + /** Use defaultView of injected document if available or fallback to global window reference */ + _getWindow() { + return this._document.defaultView || window; + } + /** Returns true if the element is contained within the provided Scrollable. */ + _scrollableContainsElement(scrollable, elementOrElementRef) { + let element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceElement)(elementOrElementRef); + let scrollableElement = scrollable.getElementRef().nativeElement; + // Traverse through the element parents until we reach null, checking if any of the elements + // are the scrollable's element. + do { + if (element == scrollableElement) { + return true; + } + } while (element = element.parentElement); + return false; + } + /** Sets up the global scroll listeners. */ + _addGlobalListener() { + this._globalSubscription = this._ngZone.runOutsideAngular(() => { + const window = this._getWindow(); + return (0,rxjs__WEBPACK_IMPORTED_MODULE_8__.fromEvent)(window.document, 'scroll').subscribe(() => this._scrolled.next()); + }); + } + /** Cleans up the global scroll listener. */ + _removeGlobalListener() { + if (this._globalSubscription) { + this._globalSubscription.unsubscribe(); + this._globalSubscription = null; + } + } + static #_ = this.ɵfac = function ScrollDispatcher_Factory(t) { + return new (t || ScrollDispatcher)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ScrollDispatcher, + factory: ScrollDispatcher.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ScrollDispatcher, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT] + }] + }]; + }, null); +})(); + +/** + * Sends an event when the directive's element is scrolled. Registers itself with the + * ScrollDispatcher service to include itself as part of its collection of scrolling events that it + * can be listened to through the service. + */ +class CdkScrollable { + constructor(elementRef, scrollDispatcher, ngZone, dir) { + this.elementRef = elementRef; + this.scrollDispatcher = scrollDispatcher; + this.ngZone = ngZone; + this.dir = dir; + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + this._elementScrolled = new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => this.ngZone.runOutsideAngular(() => (0,rxjs__WEBPACK_IMPORTED_MODULE_8__.fromEvent)(this.elementRef.nativeElement, 'scroll').pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(observer))); + } + ngOnInit() { + this.scrollDispatcher.register(this); + } + ngOnDestroy() { + this.scrollDispatcher.deregister(this); + this._destroyed.next(); + this._destroyed.complete(); + } + /** Returns observable that emits when a scroll event is fired on the host element. */ + elementScrolled() { + return this._elementScrolled; + } + /** Gets the ElementRef for the viewport. */ + getElementRef() { + return this.elementRef; + } + /** + * Scrolls to the specified offsets. This is a normalized version of the browser's native scrollTo + * method, since browsers are not consistent about what scrollLeft means in RTL. For this method + * left and right always refer to the left and right side of the scrolling container irrespective + * of the layout direction. start and end refer to left and right in an LTR context and vice-versa + * in an RTL context. + * @param options specified the offsets to scroll to. + */ + scrollTo(options) { + const el = this.elementRef.nativeElement; + const isRtl = this.dir && this.dir.value == 'rtl'; + // Rewrite start & end offsets as right or left offsets. + if (options.left == null) { + options.left = isRtl ? options.end : options.start; + } + if (options.right == null) { + options.right = isRtl ? options.start : options.end; + } + // Rewrite the bottom offset as a top offset. + if (options.bottom != null) { + options.top = el.scrollHeight - el.clientHeight - options.bottom; + } + // Rewrite the right offset as a left offset. + if (isRtl && (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() != 0 /* RtlScrollAxisType.NORMAL */) { + if (options.left != null) { + options.right = el.scrollWidth - el.clientWidth - options.left; + } + if ((0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 2 /* RtlScrollAxisType.INVERTED */) { + options.left = options.right; + } else if ((0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 1 /* RtlScrollAxisType.NEGATED */) { + options.left = options.right ? -options.right : options.right; + } + } else { + if (options.right != null) { + options.left = el.scrollWidth - el.clientWidth - options.right; + } + } + this._applyScrollToOptions(options); + } + _applyScrollToOptions(options) { + const el = this.elementRef.nativeElement; + if ((0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.supportsScrollBehavior)()) { + el.scrollTo(options); + } else { + if (options.top != null) { + el.scrollTop = options.top; + } + if (options.left != null) { + el.scrollLeft = options.left; + } + } + } + /** + * Measures the scroll offset relative to the specified edge of the viewport. This method can be + * used instead of directly checking scrollLeft or scrollTop, since browsers are not consistent + * about what scrollLeft means in RTL. The values returned by this method are normalized such that + * left and right always refer to the left and right side of the scrolling container irrespective + * of the layout direction. start and end refer to left and right in an LTR context and vice-versa + * in an RTL context. + * @param from The edge to measure from. + */ + measureScrollOffset(from) { + const LEFT = 'left'; + const RIGHT = 'right'; + const el = this.elementRef.nativeElement; + if (from == 'top') { + return el.scrollTop; + } + if (from == 'bottom') { + return el.scrollHeight - el.clientHeight - el.scrollTop; + } + // Rewrite start & end as left or right offsets. + const isRtl = this.dir && this.dir.value == 'rtl'; + if (from == 'start') { + from = isRtl ? RIGHT : LEFT; + } else if (from == 'end') { + from = isRtl ? LEFT : RIGHT; + } + if (isRtl && (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 2 /* RtlScrollAxisType.INVERTED */) { + // For INVERTED, scrollLeft is (scrollWidth - clientWidth) when scrolled all the way left and + // 0 when scrolled all the way right. + if (from == LEFT) { + return el.scrollWidth - el.clientWidth - el.scrollLeft; + } else { + return el.scrollLeft; + } + } else if (isRtl && (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 1 /* RtlScrollAxisType.NEGATED */) { + // For NEGATED, scrollLeft is -(scrollWidth - clientWidth) when scrolled all the way left and + // 0 when scrolled all the way right. + if (from == LEFT) { + return el.scrollLeft + el.scrollWidth - el.clientWidth; + } else { + return -el.scrollLeft; + } + } else { + // For NORMAL, as well as non-RTL contexts, scrollLeft is 0 when scrolled all the way left and + // (scrollWidth - clientWidth) when scrolled all the way right. + if (from == LEFT) { + return el.scrollLeft; + } else { + return el.scrollWidth - el.clientWidth - el.scrollLeft; + } + } + } + static #_ = this.ɵfac = function CdkScrollable_Factory(t) { + return new (t || CdkScrollable)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkScrollable, + selectors: [["", "cdk-scrollable", ""], ["", "cdkScrollable", ""]], + standalone: true + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkScrollable, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdk-scrollable], [cdkScrollable]', + standalone: true + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); + +/** Time in ms to throttle the resize events by default. */ +const DEFAULT_RESIZE_TIME = 20; +/** + * Simple utility for getting the bounds of the browser viewport. + * @docs-private + */ +class ViewportRuler { + constructor(_platform, ngZone, document) { + this._platform = _platform; + /** Stream of viewport change events. */ + this._change = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Event listener that will be used to handle the viewport change events. */ + this._changeListener = event => { + this._change.next(event); + }; + this._document = document; + ngZone.runOutsideAngular(() => { + if (_platform.isBrowser) { + const window = this._getWindow(); + // Note that bind the events ourselves, rather than going through something like RxJS's + // `fromEvent` so that we can ensure that they're bound outside of the NgZone. + window.addEventListener('resize', this._changeListener); + window.addEventListener('orientationchange', this._changeListener); + } + // Clear the cached position so that the viewport is re-measured next time it is required. + // We don't need to keep track of the subscription, because it is completed on destroy. + this.change().subscribe(() => this._viewportSize = null); + }); + } + ngOnDestroy() { + if (this._platform.isBrowser) { + const window = this._getWindow(); + window.removeEventListener('resize', this._changeListener); + window.removeEventListener('orientationchange', this._changeListener); + } + this._change.complete(); + } + /** Returns the viewport's width and height. */ + getViewportSize() { + if (!this._viewportSize) { + this._updateViewportSize(); + } + const output = { + width: this._viewportSize.width, + height: this._viewportSize.height + }; + // If we're not on a browser, don't cache the size since it'll be mocked out anyway. + if (!this._platform.isBrowser) { + this._viewportSize = null; + } + return output; + } + /** Gets a ClientRect for the viewport's bounds. */ + getViewportRect() { + // Use the document element's bounding rect rather than the window scroll properties + // (e.g. pageYOffset, scrollY) due to in issue in Chrome and IE where window scroll + // properties and client coordinates (boundingClientRect, clientX/Y, etc.) are in different + // conceptual viewports. Under most circumstances these viewports are equivalent, but they + // can disagree when the page is pinch-zoomed (on devices that support touch). + // See https://bugs.chromium.org/p/chromium/issues/detail?id=489206#c4 + // We use the documentElement instead of the body because, by default (without a css reset) + // browsers typically give the document body an 8px margin, which is not included in + // getBoundingClientRect(). + const scrollPosition = this.getViewportScrollPosition(); + const { + width, + height + } = this.getViewportSize(); + return { + top: scrollPosition.top, + left: scrollPosition.left, + bottom: scrollPosition.top + height, + right: scrollPosition.left + width, + height, + width + }; + } + /** Gets the (top, left) scroll position of the viewport. */ + getViewportScrollPosition() { + // While we can get a reference to the fake document + // during SSR, it doesn't have getBoundingClientRect. + if (!this._platform.isBrowser) { + return { + top: 0, + left: 0 + }; + } + // The top-left-corner of the viewport is determined by the scroll position of the document + // body, normally just (scrollLeft, scrollTop). However, Chrome and Firefox disagree about + // whether `document.body` or `document.documentElement` is the scrolled element, so reading + // `scrollTop` and `scrollLeft` is inconsistent. However, using the bounding rect of + // `document.documentElement` works consistently, where the `top` and `left` values will + // equal negative the scroll position. + const document = this._document; + const window = this._getWindow(); + const documentElement = document.documentElement; + const documentRect = documentElement.getBoundingClientRect(); + const top = -documentRect.top || document.body.scrollTop || window.scrollY || documentElement.scrollTop || 0; + const left = -documentRect.left || document.body.scrollLeft || window.scrollX || documentElement.scrollLeft || 0; + return { + top, + left + }; + } + /** + * Returns a stream that emits whenever the size of the viewport changes. + * This stream emits outside of the Angular zone. + * @param throttleTime Time in milliseconds to throttle the stream. + */ + change(throttleTime = DEFAULT_RESIZE_TIME) { + return throttleTime > 0 ? this._change.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.auditTime)(throttleTime)) : this._change; + } + /** Use defaultView of injected document if available or fallback to global window reference */ + _getWindow() { + return this._document.defaultView || window; + } + /** Updates the cached viewport size. */ + _updateViewportSize() { + const window = this._getWindow(); + this._viewportSize = this._platform.isBrowser ? { + width: window.innerWidth, + height: window.innerHeight + } : { + width: 0, + height: 0 + }; + } + static #_ = this.ɵfac = function ViewportRuler_Factory(t) { + return new (t || ViewportRuler)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ViewportRuler, + factory: ViewportRuler.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ViewportRuler, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT] + }] + }]; + }, null); +})(); +const VIRTUAL_SCROLLABLE = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('VIRTUAL_SCROLLABLE'); +/** + * Extending the {@link CdkScrollable} to be used as scrolling container for virtual scrolling. + */ +class CdkVirtualScrollable extends CdkScrollable { + constructor(elementRef, scrollDispatcher, ngZone, dir) { + super(elementRef, scrollDispatcher, ngZone, dir); + } + /** + * Measure the viewport size for the provided orientation. + * + * @param orientation The orientation to measure the size from. + */ + measureViewportSize(orientation) { + const viewportEl = this.elementRef.nativeElement; + return orientation === 'horizontal' ? viewportEl.clientWidth : viewportEl.clientHeight; + } + static #_ = this.ɵfac = function CdkVirtualScrollable_Factory(t) { + return new (t || CdkVirtualScrollable)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualScrollable, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollable, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); + +/** Checks if the given ranges are equal. */ +function rangesEqual(r1, r2) { + return r1.start == r2.start && r1.end == r2.end; +} +/** + * Scheduler to be used for scroll events. Needs to fall back to + * something that doesn't rely on requestAnimationFrame on environments + * that don't support it (e.g. server-side rendering). + */ +const SCROLL_SCHEDULER = typeof requestAnimationFrame !== 'undefined' ? rxjs__WEBPACK_IMPORTED_MODULE_13__.animationFrameScheduler : rxjs__WEBPACK_IMPORTED_MODULE_14__.asapScheduler; +/** A viewport that virtualizes its scrolling with the help of `CdkVirtualForOf`. */ +class CdkVirtualScrollViewport extends CdkVirtualScrollable { + /** The direction the viewport scrolls. */ + get orientation() { + return this._orientation; + } + set orientation(orientation) { + if (this._orientation !== orientation) { + this._orientation = orientation; + this._calculateSpacerSize(); + } + } + /** + * Whether rendered items should persist in the DOM after scrolling out of view. By default, items + * will be removed. + */ + get appendOnly() { + return this._appendOnly; + } + set appendOnly(value) { + this._appendOnly = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceBooleanProperty)(value); + } + constructor(elementRef, _changeDetectorRef, ngZone, _scrollStrategy, dir, scrollDispatcher, viewportRuler, scrollable) { + super(elementRef, scrollDispatcher, ngZone, dir); + this.elementRef = elementRef; + this._changeDetectorRef = _changeDetectorRef; + this._scrollStrategy = _scrollStrategy; + this.scrollable = scrollable; + this._platform = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform); + /** Emits when the viewport is detached from a CdkVirtualForOf. */ + this._detachedSubject = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Emits when the rendered range changes. */ + this._renderedRangeSubject = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + this._orientation = 'vertical'; + this._appendOnly = false; + // Note: we don't use the typical EventEmitter here because we need to subscribe to the scroll + // strategy lazily (i.e. only if the user is actually listening to the events). We do this because + // depending on how the strategy calculates the scrolled index, it may come at a cost to + // performance. + /** Emits when the index of the first element visible in the viewport changes. */ + this.scrolledIndexChange = new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => this._scrollStrategy.scrolledIndexChange.subscribe(index => Promise.resolve().then(() => this.ngZone.run(() => observer.next(index))))); + /** A stream that emits whenever the rendered range changes. */ + this.renderedRangeStream = this._renderedRangeSubject; + /** + * The total size of all content (in pixels), including content that is not currently rendered. + */ + this._totalContentSize = 0; + /** A string representing the `style.width` property value to be used for the spacer element. */ + this._totalContentWidth = ''; + /** A string representing the `style.height` property value to be used for the spacer element. */ + this._totalContentHeight = ''; + /** The currently rendered range of indices. */ + this._renderedRange = { + start: 0, + end: 0 + }; + /** The length of the data bound to this viewport (in number of items). */ + this._dataLength = 0; + /** The size of the viewport (in pixels). */ + this._viewportSize = 0; + /** The last rendered content offset that was set. */ + this._renderedContentOffset = 0; + /** + * Whether the last rendered content offset was to the end of the content (and therefore needs to + * be rewritten as an offset to the start of the content). + */ + this._renderedContentOffsetNeedsRewrite = false; + /** Whether there is a pending change detection cycle. */ + this._isChangeDetectionPending = false; + /** A list of functions to run after the next change detection cycle. */ + this._runAfterChangeDetection = []; + /** Subscription to changes in the viewport size. */ + this._viewportChanges = rxjs__WEBPACK_IMPORTED_MODULE_15__.Subscription.EMPTY; + if (!_scrollStrategy && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error('Error: cdk-virtual-scroll-viewport requires the "itemSize" property to be set.'); + } + this._viewportChanges = viewportRuler.change().subscribe(() => { + this.checkViewportSize(); + }); + if (!this.scrollable) { + // No scrollable is provided, so the virtual-scroll-viewport needs to become a scrollable + this.elementRef.nativeElement.classList.add('cdk-virtual-scrollable'); + this.scrollable = this; + } + } + ngOnInit() { + // Scrolling depends on the element dimensions which we can't get during SSR. + if (!this._platform.isBrowser) { + return; + } + if (this.scrollable === this) { + super.ngOnInit(); + } + // It's still too early to measure the viewport at this point. Deferring with a promise allows + // the Viewport to be rendered with the correct size before we measure. We run this outside the + // zone to avoid causing more change detection cycles. We handle the change detection loop + // ourselves instead. + this.ngZone.runOutsideAngular(() => Promise.resolve().then(() => { + this._measureViewportSize(); + this._scrollStrategy.attach(this); + this.scrollable.elementScrolled().pipe( + // Start off with a fake scroll event so we properly detect our initial position. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.startWith)(null), + // Collect multiple events into one until the next animation frame. This way if + // there are multiple scroll events in the same frame we only need to recheck + // our layout once. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.auditTime)(0, SCROLL_SCHEDULER), + // Usually `elementScrolled` is completed when the scrollable is destroyed, but + // that may not be the case if a `CdkVirtualScrollableElement` is used so we have + // to unsubscribe here just in case. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(() => this._scrollStrategy.onContentScrolled()); + this._markChangeDetectionNeeded(); + })); + } + ngOnDestroy() { + this.detach(); + this._scrollStrategy.detach(); + // Complete all subjects + this._renderedRangeSubject.complete(); + this._detachedSubject.complete(); + this._viewportChanges.unsubscribe(); + super.ngOnDestroy(); + } + /** Attaches a `CdkVirtualScrollRepeater` to this viewport. */ + attach(forOf) { + if (this._forOf && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error('CdkVirtualScrollViewport is already attached.'); + } + // Subscribe to the data stream of the CdkVirtualForOf to keep track of when the data length + // changes. Run outside the zone to avoid triggering change detection, since we're managing the + // change detection loop ourselves. + this.ngZone.runOutsideAngular(() => { + this._forOf = forOf; + this._forOf.dataStream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._detachedSubject)).subscribe(data => { + const newLength = data.length; + if (newLength !== this._dataLength) { + this._dataLength = newLength; + this._scrollStrategy.onDataLengthChanged(); + } + this._doChangeDetection(); + }); + }); + } + /** Detaches the current `CdkVirtualForOf`. */ + detach() { + this._forOf = null; + this._detachedSubject.next(); + } + /** Gets the length of the data bound to this viewport (in number of items). */ + getDataLength() { + return this._dataLength; + } + /** Gets the size of the viewport (in pixels). */ + getViewportSize() { + return this._viewportSize; + } + // TODO(mmalerba): This is technically out of sync with what's really rendered until a render + // cycle happens. I'm being careful to only call it after the render cycle is complete and before + // setting it to something else, but its error prone and should probably be split into + // `pendingRange` and `renderedRange`, the latter reflecting whats actually in the DOM. + /** Get the current rendered range of items. */ + getRenderedRange() { + return this._renderedRange; + } + measureBoundingClientRectWithScrollOffset(from) { + return this.getElementRef().nativeElement.getBoundingClientRect()[from]; + } + /** + * Sets the total size of all content (in pixels), including content that is not currently + * rendered. + */ + setTotalContentSize(size) { + if (this._totalContentSize !== size) { + this._totalContentSize = size; + this._calculateSpacerSize(); + this._markChangeDetectionNeeded(); + } + } + /** Sets the currently rendered range of indices. */ + setRenderedRange(range) { + if (!rangesEqual(this._renderedRange, range)) { + if (this.appendOnly) { + range = { + start: 0, + end: Math.max(this._renderedRange.end, range.end) + }; + } + this._renderedRangeSubject.next(this._renderedRange = range); + this._markChangeDetectionNeeded(() => this._scrollStrategy.onContentRendered()); + } + } + /** + * Gets the offset from the start of the viewport to the start of the rendered data (in pixels). + */ + getOffsetToRenderedContentStart() { + return this._renderedContentOffsetNeedsRewrite ? null : this._renderedContentOffset; + } + /** + * Sets the offset from the start of the viewport to either the start or end of the rendered data + * (in pixels). + */ + setRenderedContentOffset(offset, to = 'to-start') { + // In appendOnly, we always start from the top + offset = this.appendOnly && to === 'to-start' ? 0 : offset; + // For a horizontal viewport in a right-to-left language we need to translate along the x-axis + // in the negative direction. + const isRtl = this.dir && this.dir.value == 'rtl'; + const isHorizontal = this.orientation == 'horizontal'; + const axis = isHorizontal ? 'X' : 'Y'; + const axisDirection = isHorizontal && isRtl ? -1 : 1; + let transform = `translate${axis}(${Number(axisDirection * offset)}px)`; + this._renderedContentOffset = offset; + if (to === 'to-end') { + transform += ` translate${axis}(-100%)`; + // The viewport should rewrite this as a `to-start` offset on the next render cycle. Otherwise + // elements will appear to expand in the wrong direction (e.g. `mat-expansion-panel` would + // expand upward). + this._renderedContentOffsetNeedsRewrite = true; + } + if (this._renderedContentTransform != transform) { + // We know this value is safe because we parse `offset` with `Number()` before passing it + // into the string. + this._renderedContentTransform = transform; + this._markChangeDetectionNeeded(() => { + if (this._renderedContentOffsetNeedsRewrite) { + this._renderedContentOffset -= this.measureRenderedContentSize(); + this._renderedContentOffsetNeedsRewrite = false; + this.setRenderedContentOffset(this._renderedContentOffset); + } else { + this._scrollStrategy.onRenderedOffsetChanged(); + } + }); + } + } + /** + * Scrolls to the given offset from the start of the viewport. Please note that this is not always + * the same as setting `scrollTop` or `scrollLeft`. In a horizontal viewport with right-to-left + * direction, this would be the equivalent of setting a fictional `scrollRight` property. + * @param offset The offset to scroll to. + * @param behavior The ScrollBehavior to use when scrolling. Default is behavior is `auto`. + */ + scrollToOffset(offset, behavior = 'auto') { + const options = { + behavior + }; + if (this.orientation === 'horizontal') { + options.start = offset; + } else { + options.top = offset; + } + this.scrollable.scrollTo(options); + } + /** + * Scrolls to the offset for the given index. + * @param index The index of the element to scroll to. + * @param behavior The ScrollBehavior to use when scrolling. Default is behavior is `auto`. + */ + scrollToIndex(index, behavior = 'auto') { + this._scrollStrategy.scrollToIndex(index, behavior); + } + /** + * Gets the current scroll offset from the start of the scrollable (in pixels). + * @param from The edge to measure the offset from. Defaults to 'top' in vertical mode and 'start' + * in horizontal mode. + */ + measureScrollOffset(from) { + // This is to break the call cycle + let measureScrollOffset; + if (this.scrollable == this) { + measureScrollOffset = _from => super.measureScrollOffset(_from); + } else { + measureScrollOffset = _from => this.scrollable.measureScrollOffset(_from); + } + return Math.max(0, measureScrollOffset(from ?? (this.orientation === 'horizontal' ? 'start' : 'top')) - this.measureViewportOffset()); + } + /** + * Measures the offset of the viewport from the scrolling container + * @param from The edge to measure from. + */ + measureViewportOffset(from) { + let fromRect; + const LEFT = 'left'; + const RIGHT = 'right'; + const isRtl = this.dir?.value == 'rtl'; + if (from == 'start') { + fromRect = isRtl ? RIGHT : LEFT; + } else if (from == 'end') { + fromRect = isRtl ? LEFT : RIGHT; + } else if (from) { + fromRect = from; + } else { + fromRect = this.orientation === 'horizontal' ? 'left' : 'top'; + } + const scrollerClientRect = this.scrollable.measureBoundingClientRectWithScrollOffset(fromRect); + const viewportClientRect = this.elementRef.nativeElement.getBoundingClientRect()[fromRect]; + return viewportClientRect - scrollerClientRect; + } + /** Measure the combined size of all of the rendered items. */ + measureRenderedContentSize() { + const contentEl = this._contentWrapper.nativeElement; + return this.orientation === 'horizontal' ? contentEl.offsetWidth : contentEl.offsetHeight; + } + /** + * Measure the total combined size of the given range. Throws if the range includes items that are + * not rendered. + */ + measureRangeSize(range) { + if (!this._forOf) { + return 0; + } + return this._forOf.measureRangeSize(range, this.orientation); + } + /** Update the viewport dimensions and re-render. */ + checkViewportSize() { + // TODO: Cleanup later when add logic for handling content resize + this._measureViewportSize(); + this._scrollStrategy.onDataLengthChanged(); + } + /** Measure the viewport size. */ + _measureViewportSize() { + this._viewportSize = this.scrollable.measureViewportSize(this.orientation); + } + /** Queue up change detection to run. */ + _markChangeDetectionNeeded(runAfter) { + if (runAfter) { + this._runAfterChangeDetection.push(runAfter); + } + // Use a Promise to batch together calls to `_doChangeDetection`. This way if we set a bunch of + // properties sequentially we only have to run `_doChangeDetection` once at the end. + if (!this._isChangeDetectionPending) { + this._isChangeDetectionPending = true; + this.ngZone.runOutsideAngular(() => Promise.resolve().then(() => { + this._doChangeDetection(); + })); + } + } + /** Run change detection. */ + _doChangeDetection() { + this._isChangeDetectionPending = false; + // Apply the content transform. The transform can't be set via an Angular binding because + // bypassSecurityTrustStyle is banned in Google. However the value is safe, it's composed of + // string literals, a variable that can only be 'X' or 'Y', and user input that is run through + // the `Number` function first to coerce it to a numeric value. + this._contentWrapper.nativeElement.style.transform = this._renderedContentTransform; + // Apply changes to Angular bindings. Note: We must call `markForCheck` to run change detection + // from the root, since the repeated items are content projected in. Calling `detectChanges` + // instead does not properly check the projected content. + this.ngZone.run(() => this._changeDetectorRef.markForCheck()); + const runAfterChangeDetection = this._runAfterChangeDetection; + this._runAfterChangeDetection = []; + for (const fn of runAfterChangeDetection) { + fn(); + } + } + /** Calculates the `style.width` and `style.height` for the spacer element. */ + _calculateSpacerSize() { + this._totalContentHeight = this.orientation === 'horizontal' ? '' : `${this._totalContentSize}px`; + this._totalContentWidth = this.orientation === 'horizontal' ? `${this._totalContentSize}px` : ''; + } + static #_ = this.ɵfac = function CdkVirtualScrollViewport_Factory(t) { + return new (t || CdkVirtualScrollViewport)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](VIRTUAL_SCROLL_STRATEGY, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ViewportRuler), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](VIRTUAL_SCROLLABLE, 8)); + }; + static #_2 = this.ɵcmp = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ + type: CdkVirtualScrollViewport, + selectors: [["cdk-virtual-scroll-viewport"]], + viewQuery: function CdkVirtualScrollViewport_Query(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵviewQuery"](_c0, 7); + } + if (rf & 2) { + let _t; + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵloadQuery"]()) && (ctx._contentWrapper = _t.first); + } + }, + hostAttrs: [1, "cdk-virtual-scroll-viewport"], + hostVars: 4, + hostBindings: function CdkVirtualScrollViewport_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵclassProp"]("cdk-virtual-scroll-orientation-horizontal", ctx.orientation === "horizontal")("cdk-virtual-scroll-orientation-vertical", ctx.orientation !== "horizontal"); + } + }, + inputs: { + orientation: "orientation", + appendOnly: "appendOnly" + }, + outputs: { + scrolledIndexChange: "scrolledIndexChange" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: CdkScrollable, + useFactory: (virtualScrollable, viewport) => virtualScrollable || viewport, + deps: [[new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional(), new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject(VIRTUAL_SCROLLABLE)], CdkVirtualScrollViewport] + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"], _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵStandaloneFeature"]], + ngContentSelectors: _c1, + decls: 4, + vars: 4, + consts: [[1, "cdk-virtual-scroll-content-wrapper"], ["contentWrapper", ""], [1, "cdk-virtual-scroll-spacer"]], + template: function CdkVirtualScrollViewport_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵprojectionDef"](); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 0, 1); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵprojection"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](3, "div", 2); + } + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵstyleProp"]("width", ctx._totalContentWidth)("height", ctx._totalContentHeight); + } + }, + styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;transform:translateZ(0)}.cdk-virtual-scrollable{overflow:auto;will-change:scroll-position;contain:strict;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{height:1px;transform-origin:0 0;flex:0 0 auto}[dir=rtl] .cdk-virtual-scroll-spacer{transform-origin:100% 0}"], + encapsulation: 2, + changeDetection: 0 + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollViewport, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Component, + args: [{ + selector: 'cdk-virtual-scroll-viewport', + host: { + 'class': 'cdk-virtual-scroll-viewport', + '[class.cdk-virtual-scroll-orientation-horizontal]': 'orientation === "horizontal"', + '[class.cdk-virtual-scroll-orientation-vertical]': 'orientation !== "horizontal"' + }, + encapsulation: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewEncapsulation.None, + changeDetection: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ChangeDetectionStrategy.OnPush, + standalone: true, + providers: [{ + provide: CdkScrollable, + useFactory: (virtualScrollable, viewport) => virtualScrollable || viewport, + deps: [[new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional(), new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject(VIRTUAL_SCROLLABLE)], CdkVirtualScrollViewport] + }], + template: "\n
\n \n
\n\n
\n", + styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;transform:translateZ(0)}.cdk-virtual-scrollable{overflow:auto;will-change:scroll-position;contain:strict;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{height:1px;transform-origin:0 0;flex:0 0 auto}[dir=rtl] .cdk-virtual-scroll-spacer{transform-origin:100% 0}"] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ChangeDetectorRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [VIRTUAL_SCROLL_STRATEGY] + }] + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }, { + type: ScrollDispatcher + }, { + type: ViewportRuler + }, { + type: CdkVirtualScrollable, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [VIRTUAL_SCROLLABLE] + }] + }]; + }, { + orientation: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + appendOnly: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + scrolledIndexChange: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output + }], + _contentWrapper: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewChild, + args: ['contentWrapper', { + static: true + }] + }] + }); +})(); + +/** Helper to extract the offset of a DOM Node in a certain direction. */ +function getOffset(orientation, direction, node) { + const el = node; + if (!el.getBoundingClientRect) { + return 0; } - subscriber.complete(); -}; - -/***/ }), - -/***/ 8883: -/*!*************************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToIterable.js ***! - \*************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToIterable: () => (/* binding */ subscribeToIterable) -/* harmony export */ }); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 6603); - -const subscribeToIterable = iterable => subscriber => { - const iterator = iterable[_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__.iterator](); - do { - let item; - try { - item = iterator.next(); - } catch (err) { - subscriber.error(err); - return subscriber; - } - if (item.done) { - subscriber.complete(); - break; + const rect = el.getBoundingClientRect(); + if (orientation === 'horizontal') { + return direction === 'start' ? rect.left : rect.right; + } + return direction === 'start' ? rect.top : rect.bottom; +} +/** + * A directive similar to `ngForOf` to be used for rendering data inside a virtual scrolling + * container. + */ +class CdkVirtualForOf { + /** The DataSource to display. */ + get cdkVirtualForOf() { + return this._cdkVirtualForOf; + } + set cdkVirtualForOf(value) { + this._cdkVirtualForOf = value; + if ((0,_angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__.isDataSource)(value)) { + this._dataSourceChanges.next(value); + } else { + // If value is an an NgIterable, convert it to an array. + this._dataSourceChanges.next(new _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__.ArrayDataSource((0,rxjs__WEBPACK_IMPORTED_MODULE_18__.isObservable)(value) ? value : Array.from(value || []))); } - subscriber.next(item.value); - if (subscriber.closed) { - break; + } + /** + * The `TrackByFunction` to use for tracking changes. The `TrackByFunction` takes the index and + * the item and produces a value to be used as the item's identity when tracking changes. + */ + get cdkVirtualForTrackBy() { + return this._cdkVirtualForTrackBy; + } + set cdkVirtualForTrackBy(fn) { + this._needsUpdate = true; + this._cdkVirtualForTrackBy = fn ? (index, item) => fn(index + (this._renderedRange ? this._renderedRange.start : 0), item) : undefined; + } + /** The template used to stamp out new elements. */ + set cdkVirtualForTemplate(value) { + if (value) { + this._needsUpdate = true; + this._template = value; } - } while (true); - if (typeof iterator.return === 'function') { - subscriber.add(() => { - if (iterator.return) { - iterator.return(); + } + /** + * The size of the cache used to store templates that are not being used for re-use later. + * Setting the cache size to `0` will disable caching. Defaults to 20 templates. + */ + get cdkVirtualForTemplateCacheSize() { + return this._viewRepeater.viewCacheSize; + } + set cdkVirtualForTemplateCacheSize(size) { + this._viewRepeater.viewCacheSize = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(size); + } + constructor( /** The view container to add items to. */ + _viewContainerRef, /** The template to use when stamping out new items. */ + _template, /** The set of available differs. */ + _differs, /** The strategy used to render items in the virtual scroll viewport. */ + _viewRepeater, /** The virtual scrolling viewport that these items are being rendered in. */ + _viewport, ngZone) { + this._viewContainerRef = _viewContainerRef; + this._template = _template; + this._differs = _differs; + this._viewRepeater = _viewRepeater; + this._viewport = _viewport; + /** Emits when the rendered view of the data changes. */ + this.viewChange = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Subject that emits when a new DataSource instance is given. */ + this._dataSourceChanges = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Emits whenever the data in the current DataSource changes. */ + this.dataStream = this._dataSourceChanges.pipe( + // Start off with null `DataSource`. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.startWith)(null), + // Bundle up the previous and current data sources so we can work with both. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_19__.pairwise)(), + // Use `_changeDataSource` to disconnect from the previous data source and connect to the + // new one, passing back a stream of data changes which we run through `switchMap` to give + // us a data stream that emits the latest data from whatever the current `DataSource` is. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_20__.switchMap)(([prev, cur]) => this._changeDataSource(prev, cur)), + // Replay the last emitted data when someone subscribes. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_21__.shareReplay)(1)); + /** The differ used to calculate changes to the data. */ + this._differ = null; + /** Whether the rendered data should be updated during the next ngDoCheck cycle. */ + this._needsUpdate = false; + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + this.dataStream.subscribe(data => { + this._data = data; + this._onRenderedDataChange(); + }); + this._viewport.renderedRangeStream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(range => { + this._renderedRange = range; + if (this.viewChange.observers.length) { + ngZone.run(() => this.viewChange.next(this._renderedRange)); } + this._onRenderedDataChange(); }); + this._viewport.attach(this); } - return subscriber; -}; - -/***/ }), - -/***/ 3746: -/*!***************************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToObservable.js ***! - \***************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToObservable: () => (/* binding */ subscribeToObservable) -/* harmony export */ }); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 5129); - -const subscribeToObservable = obj => subscriber => { - const obs = obj[_symbol_observable__WEBPACK_IMPORTED_MODULE_0__.observable](); - if (typeof obs.subscribe !== 'function') { - throw new TypeError('Provided object does not correctly implement Symbol.observable'); - } else { - return obs.subscribe(subscriber); + /** + * Measures the combined size (width for horizontal orientation, height for vertical) of all items + * in the specified range. Throws an error if the range includes items that are not currently + * rendered. + */ + measureRangeSize(range, orientation) { + if (range.start >= range.end) { + return 0; + } + if ((range.start < this._renderedRange.start || range.end > this._renderedRange.end) && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error(`Error: attempted to measure an item that isn't rendered.`); + } + // The index into the list of rendered views for the first item in the range. + const renderedStartIndex = range.start - this._renderedRange.start; + // The length of the range we're measuring. + const rangeLen = range.end - range.start; + // Loop over all the views, find the first and land node and compute the size by subtracting + // the top of the first node from the bottom of the last one. + let firstNode; + let lastNode; + // Find the first node by starting from the beginning and going forwards. + for (let i = 0; i < rangeLen; i++) { + const view = this._viewContainerRef.get(i + renderedStartIndex); + if (view && view.rootNodes.length) { + firstNode = lastNode = view.rootNodes[0]; + break; + } + } + // Find the last node by starting from the end and going backwards. + for (let i = rangeLen - 1; i > -1; i--) { + const view = this._viewContainerRef.get(i + renderedStartIndex); + if (view && view.rootNodes.length) { + lastNode = view.rootNodes[view.rootNodes.length - 1]; + break; + } + } + return firstNode && lastNode ? getOffset(orientation, 'end', lastNode) - getOffset(orientation, 'start', firstNode) : 0; } -}; - -/***/ }), - -/***/ 9757: -/*!************************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToPromise.js ***! - \************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToPromise: () => (/* binding */ subscribeToPromise) -/* harmony export */ }); -/* harmony import */ var _hostReportError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./hostReportError */ 8722); - -const subscribeToPromise = promise => subscriber => { - promise.then(value => { - if (!subscriber.closed) { - subscriber.next(value); - subscriber.complete(); + ngDoCheck() { + if (this._differ && this._needsUpdate) { + // TODO(mmalerba): We should differentiate needs update due to scrolling and a new portion of + // this list being rendered (can use simpler algorithm) vs needs update due to data actually + // changing (need to do this diff). + const changes = this._differ.diff(this._renderedItems); + if (!changes) { + this._updateContext(); + } else { + this._applyChanges(changes); + } + this._needsUpdate = false; } - }, err => subscriber.error(err)).then(null, _hostReportError__WEBPACK_IMPORTED_MODULE_0__.hostReportError); - return subscriber; -}; - -/***/ }), - -/***/ 6920: -/*!******************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/toSubscriber.js ***! - \******************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ toSubscriber: () => (/* binding */ toSubscriber) -/* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../symbol/rxSubscriber */ 1999); -/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Observer */ 6195); - - - -function toSubscriber(nextOrObserver, error, complete) { - if (nextOrObserver) { - if (nextOrObserver instanceof _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber) { - return nextOrObserver; + } + ngOnDestroy() { + this._viewport.detach(); + this._dataSourceChanges.next(undefined); + this._dataSourceChanges.complete(); + this.viewChange.complete(); + this._destroyed.next(); + this._destroyed.complete(); + this._viewRepeater.detach(); + } + /** React to scroll state changes in the viewport. */ + _onRenderedDataChange() { + if (!this._renderedRange) { + return; } - if (nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber]) { - return nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber](); + this._renderedItems = this._data.slice(this._renderedRange.start, this._renderedRange.end); + if (!this._differ) { + // Use a wrapper function for the `trackBy` so any new values are + // picked up automatically without having to recreate the differ. + this._differ = this._differs.find(this._renderedItems).create((index, item) => { + return this.cdkVirtualForTrackBy ? this.cdkVirtualForTrackBy(index, item) : item; + }); } + this._needsUpdate = true; } - if (!nextOrObserver && !error && !complete) { - return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(_Observer__WEBPACK_IMPORTED_MODULE_2__.empty); + /** Swap out one `DataSource` for another. */ + _changeDataSource(oldDs, newDs) { + if (oldDs) { + oldDs.disconnect(this); + } + this._needsUpdate = true; + return newDs ? newDs.connect(this) : (0,rxjs__WEBPACK_IMPORTED_MODULE_4__.of)(); } - return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(nextOrObserver, error, complete); -} - -/***/ }), - -/***/ 9210: -/*!******************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/native.js ***! - \******************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ - randomUUID -}); - -/***/ }), - -/***/ 9772: -/*!*****************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/regex.js ***! - \*****************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); - -/***/ }), - -/***/ 7948: -/*!***************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/rng.js ***! - \***************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ rng) -/* harmony export */ }); -// Unique ID creation requires a high quality random # generator. In the browser we therefore -// require the crypto API and do not support built-in fallback to lower quality random number -// generators (like Math.random()). -let getRandomValues; -const rnds8 = new Uint8Array(16); -function rng() { - // lazy load so that environments that need to polyfill have a chance to do so - if (!getRandomValues) { - // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. - getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto); - if (!getRandomValues) { - throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); + /** Update the `CdkVirtualForOfContext` for all views. */ + _updateContext() { + const count = this._data.length; + let i = this._viewContainerRef.length; + while (i--) { + const view = this._viewContainerRef.get(i); + view.context.index = this._renderedRange.start + i; + view.context.count = count; + this._updateComputedContextProperties(view.context); + view.detectChanges(); } } - return getRandomValues(rnds8); + /** Apply changes to the DOM. */ + _applyChanges(changes) { + this._viewRepeater.applyChanges(changes, this._viewContainerRef, (record, _adjustedPreviousIndex, currentIndex) => this._getEmbeddedViewArgs(record, currentIndex), record => record.item); + // Update $implicit for any items that had an identity change. + changes.forEachIdentityChange(record => { + const view = this._viewContainerRef.get(record.currentIndex); + view.context.$implicit = record.item; + }); + // Update the context variables on all items. + const count = this._data.length; + let i = this._viewContainerRef.length; + while (i--) { + const view = this._viewContainerRef.get(i); + view.context.index = this._renderedRange.start + i; + view.context.count = count; + this._updateComputedContextProperties(view.context); + } + } + /** Update the computed properties on the `CdkVirtualForOfContext`. */ + _updateComputedContextProperties(context) { + context.first = context.index === 0; + context.last = context.index === context.count - 1; + context.even = context.index % 2 === 0; + context.odd = !context.even; + } + _getEmbeddedViewArgs(record, index) { + // Note that it's important that we insert the item directly at the proper index, + // rather than inserting it and the moving it in place, because if there's a directive + // on the same node that injects the `ViewContainerRef`, Angular will insert another + // comment node which can throw off the move when it's being repeated for all items. + return { + templateRef: this._template, + context: { + $implicit: record.item, + // It's guaranteed that the iterable is not "undefined" or "null" because we only + // generate views for elements if the "cdkVirtualForOf" iterable has elements. + cdkVirtualForOf: this._cdkVirtualForOf, + index: -1, + count: -1, + first: false, + last: false, + odd: false, + even: false + }, + index + }; + } + static #_ = this.ɵfac = function CdkVirtualForOf_Factory(t) { + return new (t || CdkVirtualForOf)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewContainerRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.TemplateRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.IterableDiffers), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](CdkVirtualScrollViewport, 4), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualForOf, + selectors: [["", "cdkVirtualFor", "", "cdkVirtualForOf", ""]], + inputs: { + cdkVirtualForOf: "cdkVirtualForOf", + cdkVirtualForTrackBy: "cdkVirtualForTrackBy", + cdkVirtualForTemplate: "cdkVirtualForTemplate", + cdkVirtualForTemplateCacheSize: "cdkVirtualForTemplateCacheSize" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY, + useClass: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._RecycleViewRepeaterStrategy + }])] + }); } - -/***/ }), - -/***/ 564: -/*!*********************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/stringify.js ***! - \*********************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), -/* harmony export */ unsafeStringify: () => (/* binding */ unsafeStringify) -/* harmony export */ }); -/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ 9359); +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualForOf, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkVirtualFor][cdkVirtualForOf]', + providers: [{ + provide: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY, + useClass: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._RecycleViewRepeaterStrategy + }], + standalone: true + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewContainerRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.TemplateRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.IterableDiffers + }, { + type: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._RecycleViewRepeaterStrategy, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY] + }] + }, { + type: CdkVirtualScrollViewport, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.SkipSelf + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, { + cdkVirtualForOf: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + cdkVirtualForTrackBy: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + cdkVirtualForTemplate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + cdkVirtualForTemplateCacheSize: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); /** - * Convert array of 16 byte values to UUID string format of the form: - * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + * Provides a virtual scrollable for the element it is attached to. */ - -const byteToHex = []; -for (let i = 0; i < 256; ++i) { - byteToHex.push((i + 0x100).toString(16).slice(1)); -} -function unsafeStringify(arr, offset = 0) { - // Note: Be careful editing this code! It's been tuned for performance - // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 - return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]; -} -function stringify(arr, offset = 0) { - const uuid = unsafeStringify(arr, offset); // Consistency check for valid UUID. If this throws, it's likely due to one - // of the following: - // - One or more input array values don't map to a hex octet (leading to - // "undefined" in the uuid) - // - Invalid input values for the RFC `version` or `variant` fields - - if (!(0,_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) { - throw TypeError('Stringified UUID is invalid'); +class CdkVirtualScrollableElement extends CdkVirtualScrollable { + constructor(elementRef, scrollDispatcher, ngZone, dir) { + super(elementRef, scrollDispatcher, ngZone, dir); } - return uuid; + measureBoundingClientRectWithScrollOffset(from) { + return this.getElementRef().nativeElement.getBoundingClientRect()[from] - this.measureScrollOffset(from); + } + static #_ = this.ɵfac = function CdkVirtualScrollableElement_Factory(t) { + return new (t || CdkVirtualScrollableElement)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualScrollableElement, + selectors: [["", "cdkVirtualScrollingElement", ""]], + hostAttrs: [1, "cdk-virtual-scrollable"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableElement + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"]] + }); } -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (stringify); - -/***/ }), - -/***/ 4289: -/*!**************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/v4.js ***! - \**************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _native_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./native.js */ 9210); -/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rng.js */ 7948); -/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./stringify.js */ 564); - - +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollableElement, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkVirtualScrollingElement]', + providers: [{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableElement + }], + standalone: true, + host: { + 'class': 'cdk-virtual-scrollable' + } + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); -function v4(options, buf, offset) { - if (_native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID && !buf && !options) { - return _native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID(); +/** + * Provides as virtual scrollable for the global / window scrollbar. + */ +class CdkVirtualScrollableWindow extends CdkVirtualScrollable { + constructor(scrollDispatcher, ngZone, dir) { + super(new _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef(document.documentElement), scrollDispatcher, ngZone, dir); + this._elementScrolled = new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => this.ngZone.runOutsideAngular(() => (0,rxjs__WEBPACK_IMPORTED_MODULE_8__.fromEvent)(document, 'scroll').pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(observer))); } - options = options || {}; - const rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_1__["default"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` - - rnds[6] = rnds[6] & 0x0f | 0x40; - rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided - - if (buf) { - offset = offset || 0; - for (let i = 0; i < 16; ++i) { - buf[offset + i] = rnds[i]; - } - return buf; + measureBoundingClientRectWithScrollOffset(from) { + return this.getElementRef().nativeElement.getBoundingClientRect()[from]; } - return (0,_stringify_js__WEBPACK_IMPORTED_MODULE_2__.unsafeStringify)(rnds); + static #_ = this.ɵfac = function CdkVirtualScrollableWindow_Factory(t) { + return new (t || CdkVirtualScrollableWindow)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualScrollableWindow, + selectors: [["cdk-virtual-scroll-viewport", "scrollWindow", ""]], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableWindow + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"]] + }); } -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (v4); - -/***/ }), +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollableWindow, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: 'cdk-virtual-scroll-viewport[scrollWindow]', + providers: [{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableWindow + }], + standalone: true + }] + }], function () { + return [{ + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); +class CdkScrollableModule { + static #_ = this.ɵfac = function CdkScrollableModule_Factory(t) { + return new (t || CdkScrollableModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: CdkScrollableModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkScrollableModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + exports: [CdkScrollable], + imports: [CdkScrollable] + }] + }], null, null); +})(); +/** + * @docs-primary-export + */ +class ScrollingModule { + static #_ = this.ɵfac = function ScrollingModule_Factory(t) { + return new (t || ScrollingModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: ScrollingModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ + imports: [_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule, _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ScrollingModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + imports: [_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule, CdkVirtualScrollViewport, CdkFixedSizeVirtualScroll, CdkVirtualForOf, CdkVirtualScrollableWindow, CdkVirtualScrollableElement], + exports: [_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule, CdkFixedSizeVirtualScroll, CdkVirtualForOf, CdkVirtualScrollViewport, CdkVirtualScrollableWindow, CdkVirtualScrollableElement] + }] + }], null, null); +})(); -/***/ 9359: -/*!********************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/validate.js ***! - \********************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { +/** + * Generated bundle index. Do not edit. + */ -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ 9772); -function validate(uuid) { - return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__["default"].test(uuid); -} -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (validate); /***/ }), -/***/ 6575: +/***/ 26575: /*!**********************************************************!*\ !*** ./node_modules/@angular/common/fesm2022/common.mjs ***! \**********************************************************/ @@ -20442,7 +31850,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵparseCookieValue": () => (/* binding */ parseCookieValue), /* harmony export */ "ɵsetRootDomAdapter": () => (/* binding */ setRootDomAdapter) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -21928,7 +33336,6 @@ function getLocaleExtraDayPeriods(locale, formStyle, width) { const data = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵfindLocaleData"])(locale); checkFullData(data); const dayPeriodsData = [data[_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵLocaleDataIndex"].ExtraData][0 /* ɵExtraLocaleDataIndex.ExtraDayPeriodFormats */], data[_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵLocaleDataIndex"].ExtraData][1 /* ɵExtraLocaleDataIndex.ExtraDayPeriodStandalone */]]; - const dayPeriods = getLastDefinedValue(dayPeriodsData, formStyle) || []; return getLastDefinedValue(dayPeriods, width) || []; } @@ -22015,7 +33422,6 @@ function getNumberOfCurrencyDigits(code) { if (currency) { digits = currency[2 /* ɵCurrencyIndex.NbOfDigits */]; } - return typeof digits === 'number' ? digits : DEFAULT_NB_OF_CURRENCY_DIGITS; } const ISO8601_DATE_REGEX = /^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/; @@ -22382,7 +33788,6 @@ function weekGetter(size, monthBased = false) { const diff = thisThurs.getTime() - firstThurs.getTime(); result = 1 + Math.round(diff / 6.048e8); // 6.048e8 ms per week } - return padNumber(result, size, getLocaleNumberSymbol(locale, NumberSymbol.MinusSign)); }; } @@ -27673,7 +39078,7 @@ function unwrapSafeUrl(value) { /***/ }), -/***/ 4860: +/***/ 54860: /*!********************************************************!*\ !*** ./node_modules/@angular/common/fesm2022/http.mjs ***! \********************************************************/ @@ -27718,19 +39123,19 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵHttpInterceptorHandler": () => (/* binding */ HttpInterceptorHandler), /* harmony export */ "ɵwithHttpTransferCache": () => (/* binding */ withHttpTransferCache) /* harmony export */ }); -/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 1670); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 71670); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 61699); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs */ 3064); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 502); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 7293); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs/operators */ 5046); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 7422); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 786); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 5746); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs/operators */ 7627); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 30502); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 67293); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs/operators */ 85046); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 90786); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 15746); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs/operators */ 17627); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/common */ 26575); /** * @license Angular v16.2.12 @@ -30668,7 +42073,7 @@ function withHttpTransferCache() { /***/ }), -/***/ 1699: +/***/ 61699: /*!******************************************************!*\ !*** ./node_modules/@angular/core/fesm2022/core.mjs ***! \******************************************************/ @@ -31062,16 +42467,16 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵɵvalidateIframeAttribute": () => (/* binding */ ɵɵvalidateIframeAttribute), /* harmony export */ "ɵɵviewQuery": () => (/* binding */ ɵɵviewQuery) /* harmony export */ }); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs */ 2484); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 4614); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 3064); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 9718); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 462); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 89718); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 70462); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 1272); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 5083); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs/operators */ 7627); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 99718); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 45083); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs/operators */ 17627); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -32006,7 +43411,6 @@ function convertToBitFlags(flags) { // comment to force a line break in the formatter flags.optional && 8 /* InternalInjectFlags.Optional */) | (flags.host && 1 /* InternalInjectFlags.Host */) | (flags.self && 2 /* InternalInjectFlags.Self */) | (flags.skipSelf && 4 /* InternalInjectFlags.SkipSelf */); } - function injectArgs(types) { const args = []; for (let i = 0; i < types.length; i++) { @@ -32325,7 +43729,6 @@ function setUpAttributes(renderer, native, attrs) { function isNameOnlyAttributeMarker(marker) { return marker === 3 /* AttributeMarker.Bindings */ || marker === 4 /* AttributeMarker.Template */ || marker === 6 /* AttributeMarker.I18n */; } - function isAnimationProp(name) { // Perf note: accessing charCodeAt to check for the first character of a string is faster as // compared to accessing a character at index 0 (ex. name[0]). The main reason for this is that @@ -33267,7 +44670,6 @@ function isComponentHost(tNode) { function isDirectiveHost(tNode) { return (tNode.flags & 1 /* TNodeFlags.isDirectiveHost */) === 1 /* TNodeFlags.isDirectiveHost */; } - function isComponentDef(def) { return !!def.template; } @@ -33277,7 +44679,6 @@ function isRootView(target) { function isProjectionTNode(tNode) { return (tNode.type & 16 /* TNodeType.Projection */) === 16 /* TNodeType.Projection */; } - function hasI18n(lView) { return (lView[FLAGS] & 32 /* LViewFlags.HasI18n */) === 32 /* LViewFlags.HasI18n */; } @@ -33489,7 +44890,6 @@ function producerAccessed(node) { // `activeConsumer.producerNode[idx]` which will be overwritten below. } } - if (activeConsumer.producerNode[idx] !== node) { // We're a new dependency of the consumer (at `idx`). activeConsumer.producerNode[idx] = node; @@ -34986,7 +46386,6 @@ function callHooks(currentView, arr, initPhase, currentNodeIndex) { if (isInitHook) { currentView[PREORDER_HOOK_FLAGS] += 65536 /* PreOrderHookFlags.NumberOfInitHooksCalledIncrementer */; } - if (lastNodeIndexFound < nodeIndexLimit || nodeIndexLimit == -1) { callHook(currentView, initPhase, arr, i); currentView[PREORDER_HOOK_FLAGS] = (currentView[PREORDER_HOOK_FLAGS] & 4294901760 /* PreOrderHookFlags.NumberOfInitHooksCalledMask */) + i + 2; @@ -35259,7 +46658,6 @@ function getParentInjectorIndex(parentLocation) { ngDevMode && assertGreaterThan(parentInjectorIndex, HEADER_OFFSET, 'Parent injector must be pointing past HEADER_OFFSET.'); return parentLocation & 32767 /* RelativeInjectorLocationFlags.InjectorIndexMask */; } - function getParentInjectorViewOffset(parentLocation) { return parentLocation >> 16 /* RelativeInjectorLocationFlags.ViewOffsetShift */; } @@ -35468,7 +46866,6 @@ function getParentInjectorLocation(tNode, lView) { return parentTNode.injectorIndex | declarationViewOffset << 16 /* RelativeInjectorLocationFlags.ViewOffsetShift */; } } - return NO_PARENT_INJECTOR; } /** @@ -36526,7 +47923,6 @@ function _arrayIndexOfSorted(array, value, shift) { start = middle + 1; // We already searched middle so make it non-inclusive by adding 1 } } - return ~(end << shift); } @@ -36825,7 +48221,6 @@ const Host = // Disable tslint because `InternalInjectFlags` is a const enum which gets inlined. // tslint:disable-next-line: no-toplevel-property-access attachInjectFlag(makeParamDecorator('Host'), 1 /* InternalInjectFlags.Host */); - let _reflect = null; function getReflect() { return _reflect = _reflect || new ReflectionCapabilities(); @@ -38106,7 +49501,6 @@ function detachView(lContainer, removeIndex) { // Unsets the attached flag viewToDetach[FLAGS] &= ~128 /* LViewFlags.Attached */; } - return viewToDetach; } /** @@ -38531,7 +49925,6 @@ function applyNodes(renderer, action, tNode, lView, parentRElement, beforeNode, tNode.flags |= 2 /* TNodeFlags.isProjected */; } } - if ((tNode.flags & 32 /* TNodeFlags.isDetached */) !== 32 /* TNodeFlags.isDetached */) { if (tNodeType & 8 /* TNodeType.ElementContainer */) { applyNodes(renderer, action, tNode.child, lView, parentRElement, beforeNode, false); @@ -38610,7 +50003,6 @@ function applyProjectionRecursive(renderer, action, lView, tProjectionNode, pare if (hasInSkipHydrationBlockFlag(tProjectionNode)) { nodeToProject.flags |= 128 /* TNodeFlags.inSkipHydrationBlock */; } - applyNodes(renderer, action, nodeToProject, projectedComponentLView, parentRElement, beforeNode, true); } } @@ -39023,31 +50415,26 @@ class SafeHtmlImpl extends SafeValueImpl { return "HTML" /* BypassType.Html */; } } - class SafeStyleImpl extends SafeValueImpl { getTypeName() { return "Style" /* BypassType.Style */; } } - class SafeScriptImpl extends SafeValueImpl { getTypeName() { return "Script" /* BypassType.Script */; } } - class SafeUrlImpl extends SafeValueImpl { getTypeName() { return "URL" /* BypassType.Url */; } } - class SafeResourceUrlImpl extends SafeValueImpl { getTypeName() { return "ResourceURL" /* BypassType.ResourceUrl */; } } - function unwrapSafeValue(value) { return value instanceof SafeValueImpl ? value.changingThisBreaksApplicationSecurity : value; } @@ -39693,7 +51080,6 @@ const INJECTOR = new InjectionToken('INJECTOR', // Disable tslint because this is const enum which gets inlined not top level prop access. // tslint:disable-next-line: no-toplevel-property-access -1 /* InjectorMarkers.Injector */); - const INJECTOR_DEF_TYPES = new InjectionToken('INJECTOR_DEF_TYPES'); class NullInjector { get(token, notFoundValue = THROW_IF_NOT_FOUND) { @@ -42667,7 +54053,6 @@ function createLView(parentLView, tView, context, flags, host, tHostNode, enviro if (embeddedViewInjector !== null || parentLView && parentLView[FLAGS] & 2048 /* LViewFlags.HasEmbeddedViewInjector */) { lView[FLAGS] |= 2048 /* LViewFlags.HasEmbeddedViewInjector */; } - resetPreOrderHookFlags(lView); ngDevMode && tView.declTNode && parentLView && assertTNodeForLView(tView.declTNode, parentLView); lView[PARENT] = lView[DECLARATION_VIEW] = parentLView; @@ -43038,7 +54423,6 @@ function createTNode(tView, tParent, type, index, value, attrs) { if (isInSkipHydrationBlock$1()) { flags |= 128 /* TNodeFlags.inSkipHydrationBlock */; } - const tNode = { type, index, @@ -43149,12 +54533,10 @@ function initializeInputAndOutputAliases(tView, tNode, hostDirectiveDefinitionMa if (inputsStore.hasOwnProperty('class')) { tNode.flags |= 8 /* TNodeFlags.hasClassInput */; } - if (inputsStore.hasOwnProperty('style')) { tNode.flags |= 16 /* TNodeFlags.hasStyleInput */; } } - tNode.initialInputs = inputsFromAttrs; tNode.inputs = inputsStore; tNode.outputs = outputsStore; @@ -43218,7 +54600,6 @@ function markDirtyIfOnPush(lView, viewIndex) { childComponentLView[FLAGS] |= 64 /* LViewFlags.Dirty */; } } - function setNgReflectProperty(lView, element, type, attrName, value) { const renderer = lView[RENDERER]; attrName = normalizeDebugBindingName(attrName); @@ -43582,7 +54963,6 @@ function addComponentLogic(lView, hostTNode, def) { } else if (def.onPush) { lViewFlags = 64 /* LViewFlags.Dirty */; } - const componentView = addToViewTree(lView, createLView(lView, tView, null, lViewFlags, native, hostTNode, null, rendererFactory.createRenderer(native, def), null, null, null)); // Component view will always be created before any injected LContainers, // so this is a regular element, wrap it with the component view @@ -43713,7 +55093,6 @@ function createLContainer(hostNative, currentView, native, tNode) { ngDevMode && assertLView(currentView); const lContainer = [hostNative, true, false, currentView, null, 0, tNode, native, null, null, null // dehydrated views ]; - ngDevMode && assertEqual(lContainer.length, CONTAINER_HEADER_OFFSET, 'Should allocate correct number of slots for LContainer header.'); return lContainer; } @@ -44255,11 +55634,9 @@ function refreshView(tView, lView, templateFn, context) { if (contentHooks !== null) { executeInitAndCheckHooks(lView, contentHooks, 1 /* InitPhaseState.AfterContentInitHooksToBeRun */); } - incrementInitPhaseFlags(lView, 1 /* InitPhaseState.AfterContentInitHooksToBeRun */); } } - processHostBindingOpCodes(tView, lView); // Refresh child component views. const components = tView.components; @@ -44286,11 +55663,9 @@ function refreshView(tView, lView, templateFn, context) { if (viewHooks !== null) { executeInitAndCheckHooks(lView, viewHooks, 2 /* InitPhaseState.AfterViewInitHooksToBeRun */); } - incrementInitPhaseFlags(lView, 2 /* InitPhaseState.AfterViewInitHooksToBeRun */); } } - if (tView.firstUpdatePass === true) { // We need to make sure that we only flip the flag on successful `refreshView` only // Don't do this in `finally` block. @@ -44309,7 +55684,6 @@ function refreshView(tView, lView, templateFn, context) { if (!isInCheckNoChangesPass) { lView[FLAGS] &= ~(64 /* LViewFlags.Dirty */ | 8 /* LViewFlags.FirstLViewPass */); } - clearViewRefreshFlag(lView); } finally { leaveView(); @@ -44431,7 +55805,6 @@ class ViewRef$1 { get destroyed() { return (this._lView[FLAGS] & 256 /* LViewFlags.Destroyed */) === 256 /* LViewFlags.Destroyed */; } - destroy() { if (this._appRef) { this._appRef.detachView(this); @@ -44937,7 +56310,6 @@ function createRootComponentView(tNode, hostRNode, rootComponentDef, rootDirecti } else if (rootComponentDef.onPush) { lViewFlags = 64 /* LViewFlags.Dirty */; } - const componentView = createLView(rootView, getOrCreateComponentTView(rootComponentDef), null, lViewFlags, rootView[tNode.index], tNode, environment, viewRenderer, null, null, hydrationInfo); if (tView.firstCreatePass) { markAsComponentHost(tView, tNode, rootDirectives.length - 1); @@ -45436,7 +56808,6 @@ function isListLikeIterable(obj) { // JS Map are iterables but return entries as [k, v] Symbol.iterator in obj; // JS Iterable have a Symbol.iterator prop } - function areIterablesEqual(a, b, comparator) { const iterator1 = a[Symbol.iterator](); const iterator2 = b[Symbol.iterator](); @@ -47468,7 +58839,6 @@ function matchingProjectionSlotIndex(tNode, projectionSlots) { return i; // first matching selector "captures" a given node } } - return wildcardNgContentIndex; } /** @@ -48005,33 +59375,27 @@ function toTStylingRange(prev, next) { ngDevMode && assertNumberInRange(next, 0, 32767 /* StylingRange.UNSIGNED_MASK */); return prev << 17 /* StylingRange.PREV_SHIFT */ | next << 2 /* StylingRange.NEXT_SHIFT */; } - function getTStylingRangePrev(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return tStylingRange >> 17 /* StylingRange.PREV_SHIFT */ & 32767 /* StylingRange.UNSIGNED_MASK */; } - function getTStylingRangePrevDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return (tStylingRange & 2 /* StylingRange.PREV_DUPLICATE */) == 2 /* StylingRange.PREV_DUPLICATE */; } - function setTStylingRangePrev(tStylingRange, previous) { ngDevMode && assertNumber(tStylingRange, 'expected number'); ngDevMode && assertNumberInRange(previous, 0, 32767 /* StylingRange.UNSIGNED_MASK */); return tStylingRange & ~4294836224 /* StylingRange.PREV_MASK */ | previous << 17 /* StylingRange.PREV_SHIFT */; } - function setTStylingRangePrevDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return tStylingRange | 2 /* StylingRange.PREV_DUPLICATE */; } - function getTStylingRangeNext(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return (tStylingRange & 131068 /* StylingRange.NEXT_MASK */) >> 2 /* StylingRange.NEXT_SHIFT */; } - function setTStylingRangeNext(tStylingRange, next) { ngDevMode && assertNumber(tStylingRange, 'expected number'); ngDevMode && assertNumberInRange(next, 0, 32767 /* StylingRange.UNSIGNED_MASK */); @@ -48039,17 +59403,14 @@ function setTStylingRangeNext(tStylingRange, next) { // next << 2 /* StylingRange.NEXT_SHIFT */; } - function getTStylingRangeNextDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return (tStylingRange & 1 /* StylingRange.NEXT_DUPLICATE */) === 1 /* StylingRange.NEXT_DUPLICATE */; } - function setTStylingRangeNextDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return tStylingRange | 1 /* StylingRange.NEXT_DUPLICATE */; } - function getTStylingRangeTail(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); const next = getTStylingRangeNext(tStylingRange); @@ -48439,7 +59800,6 @@ function isStylingMatch(tStylingKeyCursor, tStylingKey) { // statics and we need to check those as well. return keyValueArrayIndexOf(tStylingKeyCursor, tStylingKey) >= 0; // see if we are matching the key } - return false; } @@ -48656,7 +60016,6 @@ function consumeStyleValue(text, startIndex, endIndex) { ch2 = ch1; ch1 = ch & -33 /* CharCode.UPPER_CASE */; } - return lastChIndex; } /** @@ -51144,7 +62503,6 @@ function addTNodeAndUpdateInsertBeforeIndex(previousTNodes, newTNode) { function isI18nText(tNode) { return !(tNode.type & 64 /* TNodeType.Placeholder */); } - function isNewTNodeCreatedBefore(existingTNode, newTNode) { return isI18nText(newTNode) || existingTNode.index > newTNode.index; } @@ -51255,15 +62613,12 @@ function getCurrentICUCaseIndex(tIcu, lView) { function getParentFromIcuCreateOpCode(mergedCode) { return mergedCode >>> 17 /* IcuCreateOpCode.SHIFT_PARENT */; } - function getRefFromIcuCreateOpCode(mergedCode) { return (mergedCode & 131070 /* IcuCreateOpCode.MASK_REF */) >>> 1 /* IcuCreateOpCode.SHIFT_REF */; } - function getInstructionFromIcuCreateOpCode(mergedCode) { return mergedCode & 1 /* IcuCreateOpCode.MASK_INSTRUCTION */; } - function icuCreateOpCode(opCode, parentIdx, refIdx) { ngDevMode && assertGreaterThanOrEqual(parentIdx, 0, 'Missing parent index'); ngDevMode && assertGreaterThan(refIdx, 0, 'Missing ref index'); @@ -52319,7 +63674,6 @@ function parseICUBlock(pattern) { } else { icuType = 1 /* IcuType.plural */; } - mainBinding = parseInt(binding.slice(1), 10); return ''; }); @@ -52496,15 +63850,12 @@ function addRemoveNestedIcu(remove, index, depth) { remove.push(index); // remove ICU comment at `index` } } - function addUpdateIcuSwitch(update, icuExpression, index) { update.push(toMaskBit(icuExpression.mainBinding), 2, -1 - icuExpression.mainBinding, index << 2 /* I18nUpdateOpCode.SHIFT_REF */ | 2 /* I18nUpdateOpCode.IcuSwitch */); } - function addUpdateIcuUpdate(update, bindingMask, index) { update.push(bindingMask, 1, index << 2 /* I18nUpdateOpCode.SHIFT_REF */ | 3 /* I18nUpdateOpCode.IcuUpdate */); } - function addCreateNodeAndAppend(create, marker, text, appendToParentIdx, createAtIdx) { if (marker !== null) { create.push(marker); @@ -52674,7 +64025,6 @@ function ɵɵi18nStart(index, messageIndex, subTemplateIndex = -1) { } else { lView[FLAGS] |= 32 /* LViewFlags.HasI18n */; } - const tI18n = tView.data[adjustedIndex]; const sameViewParentTNode = parentTNode === lView[T_HOST] ? null : parentTNode; const parentRNode = getClosestRElement(tView, sameViewParentTNode, lView); @@ -52887,7 +64237,6 @@ function resolveProvider(provider, tInjectables, lInjectablesBlueprint, isCompon if (isViewProvider) { tNode.providerIndexes += 1048576 /* TNodeProviderIndexes.CptViewProvidersCountShifter */; } - lInjectablesBlueprint.push(factory); lView.push(factory); } else { @@ -52933,7 +64282,6 @@ function resolveProvider(provider, tInjectables, lInjectablesBlueprint, isCompon if (isViewProvider) { tNode.providerIndexes += 1048576 /* TNodeProviderIndexes.CptViewProvidersCountShifter */; } - lInjectablesBlueprint.push(factory); lView.push(factory); } else { @@ -57681,7 +69029,6 @@ function getDependenciesFromInjectable(injector, token) { self: (2 /* InternalInjectFlags.Self */ & flags) === 2 /* InternalInjectFlags.Self */, skipSelf: (4 /* InternalInjectFlags.SkipSelf */ & flags) === 4 /* InternalInjectFlags.SkipSelf */ }; - for (let i = 0; i < resolutionPath.length; i++) { const injectorToCheck = resolutionPath[i]; // if skipSelf is true we skip the first injector @@ -61641,7 +72988,6 @@ function serializeLView(lView, context) { context.corruptedTextNodes.set(rNode, "ngtns" /* TextNodeMarker.Separator */); } } - if (tNode.projectionNext && tNode.projectionNext !== tNode.next && !isInSkipHydrationBlock(tNode.projectionNext)) { // Check if projection next is not the same as next, in which case // the node would not be found at creation time at runtime and we @@ -61876,7 +73222,6 @@ function withDomHydration() { } return () => {}; // noop }, - multi: true }]); } @@ -62258,7 +73603,7 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) { /***/ }), -/***/ 7164: +/***/ 17164: /*!**************************************************************!*\ !*** ./node_modules/@angular/elements/fesm2022/elements.mjs ***! \**************************************************************/ @@ -62271,11 +73616,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ VERSION: () => (/* binding */ VERSION), /* harmony export */ createCustomElement: () => (/* binding */ createCustomElement) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 6309); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 9718); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 7422); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 76309); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 89718); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 47422); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -62827,7 +74172,7 @@ const VERSION = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Version('16.2.12' /***/ }), -/***/ 1059: +/***/ 28849: /*!********************************************************!*\ !*** ./node_modules/@angular/forms/fesm2022/forms.mjs ***! \********************************************************/ @@ -62893,11 +74238,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵNgNoValidate": () => (/* binding */ ɵNgNoValidate), /* harmony export */ "ɵNgSelectMultipleOption": () => (/* binding */ ɵNgSelectMultipleOption) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 502); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 2130); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 7422); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 30502); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 92130); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 47422); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -63624,7 +74969,6 @@ function minValidator(min) { if (isEmptyInputValue(control.value) || isEmptyInputValue(min)) { return null; // don't validate empty values to allow optional controls } - const value = parseFloat(control.value); // Controls with NaN values after parsing should be treated as not having a // minimum, per the HTML forms spec: https://www.w3.org/TR/html5/forms.html#attr-input-min @@ -63645,7 +74989,6 @@ function maxValidator(max) { if (isEmptyInputValue(control.value) || isEmptyInputValue(max)) { return null; // don't validate empty values to allow optional controls } - const value = parseFloat(control.value); // Controls with NaN values after parsing should be treated as not having a // maximum, per the HTML forms spec: https://www.w3.org/TR/html5/forms.html#attr-input-max @@ -63684,7 +75027,6 @@ function emailValidator(control) { if (isEmptyInputValue(control.value)) { return null; // don't validate empty values to allow optional controls } - return EMAIL_REGEXP.test(control.value) ? null : { 'email': true }; @@ -63744,7 +75086,6 @@ function patternValidator(pattern) { if (isEmptyInputValue(control.value)) { return null; // don't validate empty values to allow optional controls } - const value = control.value; return regex.test(value) ? null : { 'pattern': { @@ -70985,7 +82326,7 @@ class ReactiveFormsModule { /***/ }), -/***/ 6480: +/***/ 36480: /*!******************************************************************************!*\ !*** ./node_modules/@angular/platform-browser/fesm2022/platform-browser.mjs ***! \******************************************************************************/ @@ -71030,9 +82371,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵgetDOM": () => (/* reexport safe */ _angular_common__WEBPACK_IMPORTED_MODULE_0__["ɵgetDOM"]), /* harmony export */ "ɵinitDomAdapter": () => (/* binding */ initDomAdapter) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common/http */ 4860); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common/http */ 54860); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -72020,7 +83361,6 @@ class KeyEventsPlugin extends EventManagerPlugin { } else if (keycode === '.') { keycode = 'dot'; // because '.' is used as a separator in event names } - MODIFIER_KEYS.forEach(modifierName => { if (modifierName !== keycode) { const modifierGetter = MODIFIER_KEY_GETTERS[modifierName]; @@ -73371,7 +84711,7 @@ const TransferState = _angular_core__WEBPACK_IMPORTED_MODULE_1__.TransferState; /***/ }), -/***/ 3873: +/***/ 83873: /*!****************************************************************************************************************!*\ !*** ./node_modules/@project-sunbird/sunbird-player-sdk-v9/fesm2022/project-sunbird-sunbird-player-sdk-v9.mjs ***! \****************************************************************************************************************/ @@ -73398,11 +84738,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ errorCode: () => (/* binding */ errorCode), /* harmony export */ errorMessage: () => (/* binding */ errorMessage) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 2525); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/forms */ 1059); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 32525); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/forms */ 28849); @@ -74840,7 +86180,7 @@ class ErrorService { /***/ }), -/***/ 7558: +/***/ 17558: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_DataView.js ***! \*********************************************/ @@ -74851,8 +86191,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -74862,7 +86202,7 @@ var DataView = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_j /***/ }), -/***/ 3875: +/***/ 73875: /*!*****************************************!*\ !*** ./node_modules/lodash-es/_Hash.js ***! \*****************************************/ @@ -74873,11 +86213,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _hashClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hashClear.js */ 4014); -/* harmony import */ var _hashDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_hashDelete.js */ 2208); -/* harmony import */ var _hashGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_hashGet.js */ 6546); -/* harmony import */ var _hashHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_hashHas.js */ 7343); -/* harmony import */ var _hashSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_hashSet.js */ 6788); +/* harmony import */ var _hashClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hashClear.js */ 64014); +/* harmony import */ var _hashDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_hashDelete.js */ 32208); +/* harmony import */ var _hashGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_hashGet.js */ 16546); +/* harmony import */ var _hashHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_hashHas.js */ 32502); +/* harmony import */ var _hashSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_hashSet.js */ 36788); @@ -74911,7 +86251,7 @@ Hash.prototype.set = _hashSet_js__WEBPACK_IMPORTED_MODULE_4__["default"]; /***/ }), -/***/ 2938: +/***/ 32938: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_ListCache.js ***! \**********************************************/ @@ -74922,11 +86262,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _listCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_listCacheClear.js */ 9537); -/* harmony import */ var _listCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_listCacheDelete.js */ 5126); -/* harmony import */ var _listCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_listCacheGet.js */ 3936); -/* harmony import */ var _listCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_listCacheHas.js */ 9420); -/* harmony import */ var _listCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_listCacheSet.js */ 8886); +/* harmony import */ var _listCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_listCacheClear.js */ 99537); +/* harmony import */ var _listCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_listCacheDelete.js */ 15126); +/* harmony import */ var _listCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_listCacheGet.js */ 23936); +/* harmony import */ var _listCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_listCacheHas.js */ 69420); +/* harmony import */ var _listCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_listCacheSet.js */ 88886); @@ -74971,8 +86311,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -74982,7 +86322,7 @@ var Map = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js__WE /***/ }), -/***/ 795: +/***/ 80795: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_MapCache.js ***! \*********************************************/ @@ -74993,11 +86333,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _mapCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_mapCacheClear.js */ 3771); -/* harmony import */ var _mapCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_mapCacheDelete.js */ 9809); -/* harmony import */ var _mapCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_mapCacheGet.js */ 9080); -/* harmony import */ var _mapCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapCacheHas.js */ 9927); -/* harmony import */ var _mapCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_mapCacheSet.js */ 8096); +/* harmony import */ var _mapCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_mapCacheClear.js */ 43771); +/* harmony import */ var _mapCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_mapCacheDelete.js */ 99809); +/* harmony import */ var _mapCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_mapCacheGet.js */ 29080); +/* harmony import */ var _mapCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapCacheHas.js */ 89927); +/* harmony import */ var _mapCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_mapCacheSet.js */ 58096); @@ -75031,7 +86371,7 @@ MapCache.prototype.set = _mapCacheSet_js__WEBPACK_IMPORTED_MODULE_4__["default"] /***/ }), -/***/ 9433: +/***/ 89433: /*!********************************************!*\ !*** ./node_modules/lodash-es/_Promise.js ***! \********************************************/ @@ -75042,8 +86382,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -75053,7 +86393,7 @@ var Promise = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js /***/ }), -/***/ 3684: +/***/ 23684: /*!****************************************!*\ !*** ./node_modules/lodash-es/_Set.js ***! \****************************************/ @@ -75064,8 +86404,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -75075,7 +86415,7 @@ var Set = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js__WE /***/ }), -/***/ 7081: +/***/ 77081: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_SetCache.js ***! \*********************************************/ @@ -75086,9 +86426,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 795); -/* harmony import */ var _setCacheAdd_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setCacheAdd.js */ 4924); -/* harmony import */ var _setCacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_setCacheHas.js */ 8336); +/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 80795); +/* harmony import */ var _setCacheAdd_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setCacheAdd.js */ 64924); +/* harmony import */ var _setCacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_setCacheHas.js */ 68336); @@ -75117,7 +86457,7 @@ SetCache.prototype.has = _setCacheHas_js__WEBPACK_IMPORTED_MODULE_2__["default"] /***/ }), -/***/ 3536: +/***/ 53536: /*!******************************************!*\ !*** ./node_modules/lodash-es/_Stack.js ***! \******************************************/ @@ -75128,12 +86468,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /* harmony import */ var _stackClear_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_stackClear.js */ 6677); -/* harmony import */ var _stackDelete_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stackDelete.js */ 5311); -/* harmony import */ var _stackGet_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_stackGet.js */ 5121); -/* harmony import */ var _stackHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_stackHas.js */ 669); -/* harmony import */ var _stackSet_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_stackSet.js */ 9746); +/* harmony import */ var _stackDelete_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stackDelete.js */ 55311); +/* harmony import */ var _stackGet_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_stackGet.js */ 95121); +/* harmony import */ var _stackHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_stackHas.js */ 90669); +/* harmony import */ var _stackSet_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_stackSet.js */ 79746); @@ -75163,7 +86503,7 @@ Stack.prototype.set = _stackSet_js__WEBPACK_IMPORTED_MODULE_5__["default"]; /***/ }), -/***/ 2134: +/***/ 82134: /*!*******************************************!*\ !*** ./node_modules/lodash-es/_Symbol.js ***! \*******************************************/ @@ -75174,7 +86514,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Built-in value references. */ @@ -75183,7 +86523,7 @@ var Symbol = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"].Symbol; /***/ }), -/***/ 9764: +/***/ 49764: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_Uint8Array.js ***! \***********************************************/ @@ -75194,7 +86534,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Built-in value references. */ @@ -75203,7 +86543,7 @@ var Uint8Array = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"].Uint8Array; /***/ }), -/***/ 2680: +/***/ 12680: /*!********************************************!*\ !*** ./node_modules/lodash-es/_WeakMap.js ***! \********************************************/ @@ -75214,8 +86554,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -75225,7 +86565,7 @@ var WeakMap = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js /***/ }), -/***/ 6318: +/***/ 36318: /*!******************************************!*\ !*** ./node_modules/lodash-es/_apply.js ***! \******************************************/ @@ -75263,7 +86603,7 @@ function apply(func, thisArg, args) { /***/ }), -/***/ 8851: +/***/ 88851: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_arrayAggregator.js ***! \****************************************************/ @@ -75297,7 +86637,7 @@ function arrayAggregator(array, setter, iteratee, accumulator) { /***/ }), -/***/ 7528: +/***/ 47528: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_arrayEach.js ***! \**********************************************/ @@ -75331,7 +86671,7 @@ function arrayEach(array, iteratee) { /***/ }), -/***/ 4423: +/***/ 74423: /*!************************************************!*\ !*** ./node_modules/lodash-es/_arrayFilter.js ***! \************************************************/ @@ -75368,7 +86708,7 @@ function arrayFilter(array, predicate) { /***/ }), -/***/ 6228: +/***/ 36228: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_arrayIncludes.js ***! \**************************************************/ @@ -75379,7 +86719,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIndexOf.js */ 9994); +/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIndexOf.js */ 79994); /** @@ -75399,7 +86739,7 @@ function arrayIncludes(array, value) { /***/ }), -/***/ 958: +/***/ 20958: /*!******************************************************!*\ !*** ./node_modules/lodash-es/_arrayIncludesWith.js ***! \******************************************************/ @@ -75433,7 +86773,7 @@ function arrayIncludesWith(array, value, comparator) { /***/ }), -/***/ 4937: +/***/ 54937: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_arrayLikeKeys.js ***! \**************************************************/ @@ -75444,12 +86784,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseTimes_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseTimes.js */ 6513); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); +/* harmony import */ var _baseTimes_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseTimes.js */ 26513); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); @@ -75498,7 +86838,7 @@ function arrayLikeKeys(value, inherited) { /***/ }), -/***/ 4987: +/***/ 64987: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_arrayMap.js ***! \*********************************************/ @@ -75531,7 +86871,7 @@ function arrayMap(array, iteratee) { /***/ }), -/***/ 1191: +/***/ 11191: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_arrayPush.js ***! \**********************************************/ @@ -75563,7 +86903,7 @@ function arrayPush(array, values) { /***/ }), -/***/ 2304: +/***/ 52304: /*!************************************************!*\ !*** ./node_modules/lodash-es/_arrayReduce.js ***! \************************************************/ @@ -75601,7 +86941,7 @@ function arrayReduce(array, iteratee, accumulator, initAccum) { /***/ }), -/***/ 2292: +/***/ 42292: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_arrayShuffle.js ***! \*************************************************/ @@ -75612,7 +86952,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_copyArray.js */ 4196); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_copyArray.js */ 54196); /* harmony import */ var _shuffleSelf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_shuffleSelf.js */ 4173); @@ -75631,7 +86971,7 @@ function arrayShuffle(array) { /***/ }), -/***/ 2125: +/***/ 72125: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_arraySome.js ***! \**********************************************/ @@ -75666,7 +87006,7 @@ function arraySome(array, predicate) { /***/ }), -/***/ 77: +/***/ 70077: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_assignMergeValue.js ***! \*****************************************************/ @@ -75677,8 +87017,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 8325); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 28325); @@ -75700,7 +87040,7 @@ function assignMergeValue(object, key, value) { /***/ }), -/***/ 8676: +/***/ 68676: /*!************************************************!*\ !*** ./node_modules/lodash-es/_assignValue.js ***! \************************************************/ @@ -75711,8 +87051,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 8325); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 28325); @@ -75742,7 +87082,7 @@ function assignValue(object, key, value) { /***/ }), -/***/ 3342: +/***/ 23342: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_assocIndexOf.js ***! \*************************************************/ @@ -75753,7 +87093,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 8325); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 28325); /** @@ -75777,7 +87117,7 @@ function assocIndexOf(array, key) { /***/ }), -/***/ 6448: +/***/ 44987: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_baseAggregator.js ***! \***************************************************/ @@ -75788,7 +87128,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 9121); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 59121); /** @@ -75812,7 +87152,7 @@ function baseAggregator(collection, setter, iteratee, accumulator) { /***/ }), -/***/ 3793: +/***/ 83793: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseAssign.js ***! \***********************************************/ @@ -75823,8 +87163,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -75844,7 +87184,7 @@ function baseAssign(object, source) { /***/ }), -/***/ 2631: +/***/ 22631: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseAssignIn.js ***! \*************************************************/ @@ -75855,8 +87195,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -75876,7 +87216,7 @@ function baseAssignIn(object, source) { /***/ }), -/***/ 2681: +/***/ 72681: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_baseAssignValue.js ***! \****************************************************/ @@ -75887,7 +87227,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 1307); +/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 11307); /** @@ -75915,7 +87255,7 @@ function baseAssignValue(object, key, value) { /***/ }), -/***/ 8265: +/***/ 68265: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseClone.js ***! \**********************************************/ @@ -75926,28 +87266,28 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./_arrayEach.js */ 7528); -/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./_assignValue.js */ 8676); -/* harmony import */ var _baseAssign_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./_baseAssign.js */ 3793); -/* harmony import */ var _baseAssignIn_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./_baseAssignIn.js */ 2631); -/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_cloneBuffer.js */ 1691); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyArray.js */ 4196); -/* harmony import */ var _copySymbols_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./_copySymbols.js */ 3662); -/* harmony import */ var _copySymbolsIn_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_copySymbolsIn.js */ 7085); -/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./_getAllKeys.js */ 4857); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./_arrayEach.js */ 47528); +/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./_assignValue.js */ 68676); +/* harmony import */ var _baseAssign_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./_baseAssign.js */ 83793); +/* harmony import */ var _baseAssignIn_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./_baseAssignIn.js */ 22631); +/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_cloneBuffer.js */ 21691); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyArray.js */ 54196); +/* harmony import */ var _copySymbols_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./_copySymbols.js */ 73662); +/* harmony import */ var _copySymbolsIn_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_copySymbolsIn.js */ 37085); +/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./_getAllKeys.js */ 44857); /* harmony import */ var _getAllKeysIn_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./_getAllKeysIn.js */ 9740); /* harmony import */ var _getTag_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_getTag.js */ 8020); -/* harmony import */ var _initCloneArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_initCloneArray.js */ 7392); -/* harmony import */ var _initCloneByTag_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./_initCloneByTag.js */ 586); -/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_initCloneObject.js */ 1372); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isMap_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./isMap.js */ 1078); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isSet_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./isSet.js */ 9584); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./keys.js */ 1192); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _initCloneArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_initCloneArray.js */ 97392); +/* harmony import */ var _initCloneByTag_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./_initCloneByTag.js */ 20586); +/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_initCloneObject.js */ 71372); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isMap_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./isMap.js */ 41078); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isSet_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./isSet.js */ 29584); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./keys.js */ 31192); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -76095,7 +87435,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) { /***/ }), -/***/ 1088: +/***/ 31088: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseCreate.js ***! \***********************************************/ @@ -76106,7 +87446,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); /** Built-in value references. */ @@ -76139,7 +87479,7 @@ var baseCreate = function () { /***/ }), -/***/ 7925: +/***/ 87925: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_baseDifference.js ***! \***************************************************/ @@ -76150,12 +87490,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 7081); -/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 6228); -/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 958); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 4066); +/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 77081); +/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 36228); +/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 20958); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 44066); @@ -76220,7 +87560,7 @@ function baseDifference(array, values, iteratee, comparator) { /***/ }), -/***/ 9121: +/***/ 59121: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseEach.js ***! \*********************************************/ @@ -76231,8 +87571,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseForOwn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseForOwn.js */ 3246); -/* harmony import */ var _createBaseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseEach.js */ 8772); +/* harmony import */ var _baseForOwn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseForOwn.js */ 93246); +/* harmony import */ var _createBaseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseEach.js */ 58772); @@ -76249,7 +87589,7 @@ var baseEach = (0,_createBaseEach_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_b /***/ }), -/***/ 7295: +/***/ 57295: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseFilter.js ***! \***********************************************/ @@ -76260,7 +87600,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 9121); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 59121); /** @@ -76284,7 +87624,7 @@ function baseFilter(collection, predicate) { /***/ }), -/***/ 4150: +/***/ 24150: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_baseFindIndex.js ***! \**************************************************/ @@ -76320,7 +87660,7 @@ function baseFindIndex(array, predicate, fromIndex, fromRight) { /***/ }), -/***/ 8607: +/***/ 78607: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseFlatten.js ***! \************************************************/ @@ -76331,8 +87671,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _isFlattenable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isFlattenable.js */ 3920); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _isFlattenable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isFlattenable.js */ 28336); @@ -76371,7 +87711,7 @@ function baseFlatten(array, depth, predicate, isStrict, result) { /***/ }), -/***/ 3867: +/***/ 93867: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseFor.js ***! \********************************************/ @@ -76382,7 +87722,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _createBaseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseFor.js */ 4400); +/* harmony import */ var _createBaseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseFor.js */ 24400); /** @@ -76401,7 +87741,7 @@ var baseFor = (0,_createBaseFor_js__WEBPACK_IMPORTED_MODULE_0__["default"])(); /***/ }), -/***/ 3246: +/***/ 93246: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseForOwn.js ***! \***********************************************/ @@ -76412,8 +87752,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 3867); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 93867); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -76432,7 +87772,7 @@ function baseForOwn(object, iteratee) { /***/ }), -/***/ 1527: +/***/ 31527: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseGet.js ***! \********************************************/ @@ -76443,8 +87783,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -76469,7 +87809,7 @@ function baseGet(object, path) { /***/ }), -/***/ 341: +/***/ 70341: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_baseGetAllKeys.js ***! \***************************************************/ @@ -76480,8 +87820,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -76504,7 +87844,7 @@ function baseGetAllKeys(object, keysFunc, symbolsFunc) { /***/ }), -/***/ 9304: +/***/ 79304: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseGetTag.js ***! \***********************************************/ @@ -76515,8 +87855,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _getRawTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getRawTag.js */ 1650); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _getRawTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getRawTag.js */ 11650); /* harmony import */ var _objectToString_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_objectToString.js */ 5354); @@ -76546,7 +87886,7 @@ function baseGetTag(value) { /***/ }), -/***/ 5566: +/***/ 95566: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseHas.js ***! \********************************************/ @@ -76604,7 +87944,7 @@ function baseHasIn(object, key) { /***/ }), -/***/ 9994: +/***/ 79994: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseIndexOf.js ***! \************************************************/ @@ -76615,9 +87955,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 4150); -/* harmony import */ var _baseIsNaN_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsNaN.js */ 3085); -/* harmony import */ var _strictIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_strictIndexOf.js */ 9343); +/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 24150); +/* harmony import */ var _baseIsNaN_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsNaN.js */ 33085); +/* harmony import */ var _strictIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_strictIndexOf.js */ 69343); @@ -76638,7 +87978,7 @@ function baseIndexOf(array, value, fromIndex) { /***/ }), -/***/ 4063: +/***/ 34063: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_baseIsArguments.js ***! \****************************************************/ @@ -76649,7 +87989,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -76671,7 +88011,7 @@ function baseIsArguments(value) { /***/ }), -/***/ 153: +/***/ 90153: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseIsEqual.js ***! \************************************************/ @@ -76725,14 +88065,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 7604); -/* harmony import */ var _equalByTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_equalByTag.js */ 8790); -/* harmony import */ var _equalObjects_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_equalObjects.js */ 457); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 77604); +/* harmony import */ var _equalByTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_equalByTag.js */ 38790); +/* harmony import */ var _equalObjects_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_equalObjects.js */ 40457); /* harmony import */ var _getTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getTag.js */ 8020); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); @@ -76811,7 +88151,7 @@ function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 6934: +/***/ 56934: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseIsMap.js ***! \**********************************************/ @@ -76844,7 +88184,7 @@ function baseIsMap(value) { /***/ }), -/***/ 5435: +/***/ 75435: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseIsMatch.js ***! \************************************************/ @@ -76855,8 +88195,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsEqual.js */ 153); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsEqual.js */ 90153); @@ -76913,7 +88253,7 @@ function baseIsMatch(object, source, matchData, customizer) { /***/ }), -/***/ 3085: +/***/ 33085: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseIsNaN.js ***! \**********************************************/ @@ -76938,7 +88278,7 @@ function baseIsNaN(value) { /***/ }), -/***/ 2020: +/***/ 52020: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseIsNative.js ***! \*************************************************/ @@ -76949,10 +88289,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFunction.js */ 3084); -/* harmony import */ var _isMasked_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isMasked.js */ 8426); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toSource.js */ 1540); +/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFunction.js */ 93084); +/* harmony import */ var _isMasked_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isMasked.js */ 38426); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toSource.js */ 51540); @@ -76999,7 +88339,7 @@ function baseIsNative(value) { /***/ }), -/***/ 1469: +/***/ 91469: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseIsSet.js ***! \**********************************************/ @@ -77032,7 +88372,7 @@ function baseIsSet(value) { /***/ }), -/***/ 970: +/***/ 80970: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_baseIsTypedArray.js ***! \*****************************************************/ @@ -77043,8 +88383,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isLength.js */ 4080); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isLength.js */ 74080); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -77095,7 +88435,7 @@ function baseIsTypedArray(value) { /***/ }), -/***/ 4018: +/***/ 34018: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseIteratee.js ***! \*************************************************/ @@ -77106,11 +88446,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseMatches_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMatches.js */ 6623); -/* harmony import */ var _baseMatchesProperty_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMatchesProperty.js */ 4185); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 5416); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _property_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./property.js */ 4691); +/* harmony import */ var _baseMatches_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMatches.js */ 76623); +/* harmony import */ var _baseMatchesProperty_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMatchesProperty.js */ 24185); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 25416); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _property_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./property.js */ 14691); @@ -77142,7 +88482,7 @@ function baseIteratee(value) { /***/ }), -/***/ 2093: +/***/ 22093: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseKeys.js ***! \*********************************************/ @@ -77153,8 +88493,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); -/* harmony import */ var _nativeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeys.js */ 3058); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); +/* harmony import */ var _nativeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeys.js */ 93058); @@ -77198,9 +88538,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); -/* harmony import */ var _nativeKeysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeysIn.js */ 2879); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); +/* harmony import */ var _nativeKeysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeysIn.js */ 22879); @@ -77235,7 +88575,7 @@ function baseKeysIn(object) { /***/ }), -/***/ 650: +/***/ 10650: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseMap.js ***! \********************************************/ @@ -77246,8 +88586,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseEach.js */ 9121); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseEach.js */ 59121); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); @@ -77271,7 +88611,7 @@ function baseMap(collection, iteratee) { /***/ }), -/***/ 6623: +/***/ 76623: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseMatches.js ***! \************************************************/ @@ -77282,9 +88622,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsMatch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMatch.js */ 5435); -/* harmony import */ var _getMatchData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMatchData.js */ 3741); -/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 499); +/* harmony import */ var _baseIsMatch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMatch.js */ 75435); +/* harmony import */ var _getMatchData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMatchData.js */ 33741); +/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 30499); @@ -77309,7 +88649,7 @@ function baseMatches(source) { /***/ }), -/***/ 4185: +/***/ 24185: /*!********************************************************!*\ !*** ./node_modules/lodash-es/_baseMatchesProperty.js ***! \********************************************************/ @@ -77320,13 +88660,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseIsEqual.js */ 153); -/* harmony import */ var _get_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./get.js */ 6687); -/* harmony import */ var _hasIn_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hasIn.js */ 3595); -/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 5836); -/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 6646); -/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 499); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseIsEqual.js */ 90153); +/* harmony import */ var _get_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./get.js */ 26687); +/* harmony import */ var _hasIn_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hasIn.js */ 23595); +/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 75836); +/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 96646); +/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 30499); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -77360,7 +88700,7 @@ function baseMatchesProperty(path, srcValue) { /***/ }), -/***/ 5674: +/***/ 45674: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseMerge.js ***! \**********************************************/ @@ -77371,13 +88711,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_assignMergeValue.js */ 77); -/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 3867); -/* harmony import */ var _baseMergeDeep_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMergeDeep.js */ 880); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./keysIn.js */ 2229); -/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_safeGet.js */ 3885); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_assignMergeValue.js */ 70077); +/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 93867); +/* harmony import */ var _baseMergeDeep_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMergeDeep.js */ 10880); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./keysIn.js */ 22229); +/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_safeGet.js */ 58883); @@ -77418,7 +88758,7 @@ function baseMerge(object, source, srcIndex, customizer, stack) { /***/ }), -/***/ 880: +/***/ 10880: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_baseMergeDeep.js ***! \**************************************************/ @@ -77429,21 +88769,21 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignMergeValue.js */ 77); -/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_cloneBuffer.js */ 1691); +/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignMergeValue.js */ 70077); +/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_cloneBuffer.js */ 21691); /* harmony import */ var _cloneTypedArray_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_cloneTypedArray.js */ 7721); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_copyArray.js */ 4196); -/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./_initCloneObject.js */ 1372); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 5306); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./isFunction.js */ 3084); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./isPlainObject.js */ 9702); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); -/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_safeGet.js */ 3885); -/* harmony import */ var _toPlainObject_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./toPlainObject.js */ 5949); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_copyArray.js */ 54196); +/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./_initCloneObject.js */ 71372); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 65306); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./isFunction.js */ 93084); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./isPlainObject.js */ 59702); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); +/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_safeGet.js */ 58883); +/* harmony import */ var _toPlainObject_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./toPlainObject.js */ 25949); @@ -77527,7 +88867,7 @@ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, sta /***/ }), -/***/ 4005: +/***/ 54005: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseProperty.js ***! \*************************************************/ @@ -77565,7 +88905,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 1527); +/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 31527); /** @@ -77584,7 +88924,7 @@ function basePropertyDeep(path) { /***/ }), -/***/ 9349: +/***/ 39349: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseRandom.js ***! \***********************************************/ @@ -77615,7 +88955,7 @@ function baseRandom(lower, upper) { /***/ }), -/***/ 7003: +/***/ 97003: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseReduce.js ***! \***********************************************/ @@ -77649,7 +88989,7 @@ function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { /***/ }), -/***/ 5736: +/***/ 15736: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseRest.js ***! \*********************************************/ @@ -77660,9 +89000,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./identity.js */ 5416); -/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 9116); -/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 3483); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./identity.js */ 25416); +/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 89116); +/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 13483); @@ -77682,7 +89022,7 @@ function baseRest(func, start) { /***/ }), -/***/ 7873: +/***/ 97873: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseSet.js ***! \********************************************/ @@ -77693,11 +89033,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_assignValue.js */ 8676); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_assignValue.js */ 68676); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -77745,7 +89085,7 @@ function baseSet(object, path, value, customizer) { /***/ }), -/***/ 5095: +/***/ 55095: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_baseSetToString.js ***! \****************************************************/ @@ -77757,8 +89097,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _constant_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constant.js */ 4324); -/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 1307); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./identity.js */ 5416); +/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 11307); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./identity.js */ 25416); @@ -77783,7 +89123,7 @@ var baseSetToString = !_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__["default" /***/ }), -/***/ 871: +/***/ 40871: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseShuffle.js ***! \************************************************/ @@ -77813,7 +89153,7 @@ function baseShuffle(collection) { /***/ }), -/***/ 1969: +/***/ 31969: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseSlice.js ***! \**********************************************/ @@ -77855,7 +89195,7 @@ function baseSlice(array, start, end) { /***/ }), -/***/ 6513: +/***/ 26513: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseTimes.js ***! \**********************************************/ @@ -77887,7 +89227,7 @@ function baseTimes(n, iteratee) { /***/ }), -/***/ 5696: +/***/ 25696: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseToString.js ***! \*************************************************/ @@ -77898,10 +89238,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isSymbol.js */ 67380); @@ -77941,7 +89281,7 @@ function baseToString(value) { /***/ }), -/***/ 9276: +/***/ 99276: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseTrim.js ***! \*********************************************/ @@ -77952,7 +89292,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _trimmedEndIndex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_trimmedEndIndex.js */ 8655); +/* harmony import */ var _trimmedEndIndex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_trimmedEndIndex.js */ 88655); /** Used to match leading whitespace. */ @@ -77972,7 +89312,7 @@ function baseTrim(string) { /***/ }), -/***/ 7523: +/***/ 87523: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseUnary.js ***! \**********************************************/ @@ -77999,7 +89339,7 @@ function baseUnary(func) { /***/ }), -/***/ 3401: +/***/ 84560: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseUniq.js ***! \*********************************************/ @@ -78010,12 +89350,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 7081); -/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 6228); -/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 958); -/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 4066); -/* harmony import */ var _createSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_createSet.js */ 8809); -/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_setToArray.js */ 974); +/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 77081); +/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 36228); +/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 20958); +/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 44066); +/* harmony import */ var _createSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_createSet.js */ 78809); +/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_setToArray.js */ 60974); @@ -78084,7 +89424,7 @@ function baseUniq(array, iteratee, comparator) { /***/ }), -/***/ 3882: +/***/ 63882: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseUnset.js ***! \**********************************************/ @@ -78095,10 +89435,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./last.js */ 8013); -/* harmony import */ var _parent_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_parent.js */ 556); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./last.js */ 78013); +/* harmony import */ var _parent_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_parent.js */ 92171); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -78121,7 +89461,7 @@ function baseUnset(object, path) { /***/ }), -/***/ 8518: +/***/ 78518: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseValues.js ***! \***********************************************/ @@ -78132,7 +89472,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); /** @@ -78154,7 +89494,7 @@ function baseValues(object, props) { /***/ }), -/***/ 259: +/***/ 40259: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseXor.js ***! \********************************************/ @@ -78165,9 +89505,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseDifference_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseDifference.js */ 7925); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); -/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 3401); +/* harmony import */ var _baseDifference_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseDifference.js */ 87925); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); +/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 84560); @@ -78204,7 +89544,7 @@ function baseXor(arrays, iteratee, comparator) { /***/ }), -/***/ 4066: +/***/ 44066: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_cacheHas.js ***! \*********************************************/ @@ -78230,7 +89570,7 @@ function cacheHas(cache, key) { /***/ }), -/***/ 7259: +/***/ 37259: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_castFunction.js ***! \*************************************************/ @@ -78241,7 +89581,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 5416); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 25416); /** @@ -78258,7 +89598,7 @@ function castFunction(value) { /***/ }), -/***/ 7478: +/***/ 17478: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_castPath.js ***! \*********************************************/ @@ -78269,10 +89609,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isKey.js */ 5836); -/* harmony import */ var _stringToPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stringToPath.js */ 1769); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isKey.js */ 75836); +/* harmony import */ var _stringToPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stringToPath.js */ 21769); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 88511); @@ -78296,7 +89636,7 @@ function castPath(value, object) { /***/ }), -/***/ 2583: +/***/ 82583: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_cloneArrayBuffer.js ***! \*****************************************************/ @@ -78307,7 +89647,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Uint8Array.js */ 9764); +/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Uint8Array.js */ 49764); /** @@ -78326,7 +89666,7 @@ function cloneArrayBuffer(arrayBuffer) { /***/ }), -/***/ 1691: +/***/ 21691: /*!************************************************!*\ !*** ./node_modules/lodash-es/_cloneBuffer.js ***! \************************************************/ @@ -78337,7 +89677,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Detect free variable `exports`. */ @@ -78374,7 +89714,7 @@ function cloneBuffer(buffer, isDeep) { /***/ }), -/***/ 6892: +/***/ 16892: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_cloneDataView.js ***! \**************************************************/ @@ -78385,7 +89725,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 2583); +/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 82583); /** @@ -78404,7 +89744,7 @@ function cloneDataView(dataView, isDeep) { /***/ }), -/***/ 762: +/***/ 10762: /*!************************************************!*\ !*** ./node_modules/lodash-es/_cloneRegExp.js ***! \************************************************/ @@ -78445,7 +89785,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); /** Used to convert symbols to primitives and strings. */ @@ -78477,7 +89817,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 2583); +/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 82583); /** @@ -78496,7 +89836,7 @@ function cloneTypedArray(typedArray, isDeep) { /***/ }), -/***/ 4196: +/***/ 54196: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_copyArray.js ***! \**********************************************/ @@ -78528,7 +89868,7 @@ function copyArray(source, array) { /***/ }), -/***/ 7480: +/***/ 87480: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_copyObject.js ***! \***********************************************/ @@ -78539,8 +89879,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignValue.js */ 8676); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); +/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignValue.js */ 68676); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); @@ -78577,7 +89917,7 @@ function copyObject(source, props, object, customizer) { /***/ }), -/***/ 3662: +/***/ 73662: /*!************************************************!*\ !*** ./node_modules/lodash-es/_copySymbols.js ***! \************************************************/ @@ -78588,7 +89928,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getSymbols.js */ 9294); @@ -78608,7 +89948,7 @@ function copySymbols(source, object) { /***/ }), -/***/ 7085: +/***/ 37085: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_copySymbolsIn.js ***! \**************************************************/ @@ -78619,8 +89959,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 9816); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 69816); @@ -78650,7 +89990,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Used to detect overreaching core-js shims. */ @@ -78659,7 +89999,7 @@ var coreJsData = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"]['__core-js_sha /***/ }), -/***/ 351: +/***/ 40351: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_createAggregator.js ***! \*****************************************************/ @@ -78670,10 +90010,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayAggregator_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayAggregator.js */ 8851); -/* harmony import */ var _baseAggregator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseAggregator.js */ 6448); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayAggregator_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayAggregator.js */ 88851); +/* harmony import */ var _baseAggregator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseAggregator.js */ 44987); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -78698,7 +90038,7 @@ function createAggregator(setter, initializer) { /***/ }), -/***/ 7650: +/***/ 57650: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_createAssigner.js ***! \***************************************************/ @@ -78709,8 +90049,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 5736); -/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isIterateeCall.js */ 9154); +/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 15736); +/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isIterateeCall.js */ 79154); @@ -78746,7 +90086,7 @@ function createAssigner(assigner) { /***/ }), -/***/ 8772: +/***/ 58772: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_createBaseEach.js ***! \***************************************************/ @@ -78757,7 +90097,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); /** @@ -78791,7 +90131,7 @@ function createBaseEach(eachFunc, fromRight) { /***/ }), -/***/ 4400: +/***/ 24400: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_createBaseFor.js ***! \**************************************************/ @@ -78828,7 +90168,7 @@ function createBaseFor(fromRight) { /***/ }), -/***/ 5679: +/***/ 35679: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_createFind.js ***! \***********************************************/ @@ -78839,9 +90179,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -78871,7 +90211,7 @@ function createFind(findIndexFunc) { /***/ }), -/***/ 6569: +/***/ 56569: /*!************************************************!*\ !*** ./node_modules/lodash-es/_createRound.js ***! \************************************************/ @@ -78882,10 +90222,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 7861); -/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toNumber.js */ 567); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 37861); +/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toNumber.js */ 20567); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 88511); @@ -78922,7 +90262,7 @@ function createRound(methodName) { /***/ }), -/***/ 8809: +/***/ 78809: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_createSet.js ***! \**********************************************/ @@ -78933,9 +90273,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Set.js */ 3684); -/* harmony import */ var _noop_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./noop.js */ 7183); -/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setToArray.js */ 974); +/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Set.js */ 23684); +/* harmony import */ var _noop_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./noop.js */ 87183); +/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setToArray.js */ 60974); @@ -78968,7 +90308,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isPlainObject.js */ 9702); +/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isPlainObject.js */ 59702); /** @@ -78987,7 +90327,7 @@ function customOmitClone(value) { /***/ }), -/***/ 1307: +/***/ 11307: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_defineProperty.js ***! \***************************************************/ @@ -78998,7 +90338,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); var defineProperty = function () { try { @@ -79011,7 +90351,7 @@ var defineProperty = function () { /***/ }), -/***/ 7604: +/***/ 77604: /*!************************************************!*\ !*** ./node_modules/lodash-es/_equalArrays.js ***! \************************************************/ @@ -79022,9 +90362,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_SetCache.js */ 7081); -/* harmony import */ var _arraySome_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arraySome.js */ 2125); -/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_cacheHas.js */ 4066); +/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_SetCache.js */ 77081); +/* harmony import */ var _arraySome_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arraySome.js */ 72125); +/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_cacheHas.js */ 44066); @@ -79102,7 +90442,7 @@ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 8790: +/***/ 38790: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_equalByTag.js ***! \***********************************************/ @@ -79113,12 +90453,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Uint8Array.js */ 9764); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./eq.js */ 8325); -/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 7604); -/* harmony import */ var _mapToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapToArray.js */ 4269); -/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_setToArray.js */ 974); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Uint8Array.js */ 49764); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./eq.js */ 28325); +/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 77604); +/* harmony import */ var _mapToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapToArray.js */ 74269); +/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_setToArray.js */ 60974); @@ -79222,7 +90562,7 @@ function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 457: +/***/ 40457: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_equalObjects.js ***! \*************************************************/ @@ -79233,7 +90573,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getAllKeys.js */ 4857); +/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getAllKeys.js */ 44857); /** Used to compose bitmasks for value comparisons. */ @@ -79315,7 +90655,7 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 2462: +/***/ 82462: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_flatRest.js ***! \*********************************************/ @@ -79326,9 +90666,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _flatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./flatten.js */ 8864); -/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 9116); -/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 3483); +/* harmony import */ var _flatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./flatten.js */ 28864); +/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 89116); +/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 13483); @@ -79347,7 +90687,7 @@ function flatRest(func) { /***/ }), -/***/ 800: +/***/ 60800: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_freeGlobal.js ***! \***********************************************/ @@ -79364,7 +90704,7 @@ var freeGlobal = typeof global == 'object' && global && global.Object === Object /***/ }), -/***/ 4857: +/***/ 44857: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_getAllKeys.js ***! \***********************************************/ @@ -79375,9 +90715,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 341); +/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 70341); /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbols.js */ 9294); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -79407,9 +90747,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 341); -/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 9816); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 70341); +/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 69816); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -79429,7 +90769,7 @@ function getAllKeysIn(object) { /***/ }), -/***/ 4564: +/***/ 54564: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_getMapData.js ***! \***********************************************/ @@ -79440,7 +90780,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isKeyable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKeyable.js */ 4405); +/* harmony import */ var _isKeyable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKeyable.js */ 64405); /** @@ -79459,7 +90799,7 @@ function getMapData(map, key) { /***/ }), -/***/ 3741: +/***/ 33741: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_getMatchData.js ***! \*************************************************/ @@ -79470,8 +90810,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 6646); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 96646); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -79496,7 +90836,7 @@ function getMatchData(object) { /***/ }), -/***/ 2483: +/***/ 72483: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_getNative.js ***! \**********************************************/ @@ -79507,8 +90847,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsNative_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsNative.js */ 2020); -/* harmony import */ var _getValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getValue.js */ 1680); +/* harmony import */ var _baseIsNative_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsNative.js */ 52020); +/* harmony import */ var _getValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getValue.js */ 91680); @@ -79528,7 +90868,7 @@ function getNative(object, key) { /***/ }), -/***/ 1640: +/***/ 41640: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_getPrototype.js ***! \*************************************************/ @@ -79539,7 +90879,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 4119); +/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 84119); /** Built-in value references. */ @@ -79548,7 +90888,7 @@ var getPrototype = (0,_overArg_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Objec /***/ }), -/***/ 1650: +/***/ 11650: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_getRawTag.js ***! \**********************************************/ @@ -79559,7 +90899,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); /** Used for built-in method references. */ @@ -79617,8 +90957,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 4423); -/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 1509); +/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 74423); +/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 71509); @@ -79651,7 +90991,7 @@ var getSymbols = !nativeGetSymbols ? _stubArray_js__WEBPACK_IMPORTED_MODULE_0__[ /***/ }), -/***/ 9816: +/***/ 69816: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_getSymbolsIn.js ***! \*************************************************/ @@ -79662,10 +91002,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_getPrototype.js */ 1640); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_getPrototype.js */ 41640); /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbols.js */ 9294); -/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 1509); +/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 71509); @@ -79704,13 +91044,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _DataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_DataView.js */ 7558); +/* harmony import */ var _DataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_DataView.js */ 17558); /* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_Map.js */ 525); -/* harmony import */ var _Promise_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Promise.js */ 9433); -/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_Set.js */ 3684); -/* harmony import */ var _WeakMap_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_WeakMap.js */ 2680); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_toSource.js */ 1540); +/* harmony import */ var _Promise_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Promise.js */ 89433); +/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_Set.js */ 23684); +/* harmony import */ var _WeakMap_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_WeakMap.js */ 12680); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_toSource.js */ 51540); @@ -79770,7 +91110,7 @@ if (_DataView_js__WEBPACK_IMPORTED_MODULE_1__["default"] && getTag(new _DataView /***/ }), -/***/ 1680: +/***/ 91680: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_getValue.js ***! \*********************************************/ @@ -79796,7 +91136,7 @@ function getValue(object, key) { /***/ }), -/***/ 1183: +/***/ 71183: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hasPath.js ***! \********************************************/ @@ -79807,12 +91147,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isLength.js */ 4080); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isLength.js */ 74080); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -79851,7 +91191,7 @@ function hasPath(object, path, hasFunc) { /***/ }), -/***/ 4014: +/***/ 64014: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_hashClear.js ***! \**********************************************/ @@ -79880,7 +91220,7 @@ function hashClear() { /***/ }), -/***/ 2208: +/***/ 32208: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_hashDelete.js ***! \***********************************************/ @@ -79910,7 +91250,7 @@ function hashDelete(key) { /***/ }), -/***/ 6546: +/***/ 16546: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hashGet.js ***! \********************************************/ @@ -79954,7 +91294,7 @@ function hashGet(key) { /***/ }), -/***/ 7343: +/***/ 32502: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hashHas.js ***! \********************************************/ @@ -79991,7 +91331,7 @@ function hashHas(key) { /***/ }), -/***/ 6788: +/***/ 36788: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hashSet.js ***! \********************************************/ @@ -80028,7 +91368,7 @@ function hashSet(key, value) { /***/ }), -/***/ 7392: +/***/ 97392: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_initCloneArray.js ***! \***************************************************/ @@ -80067,7 +91407,7 @@ function initCloneArray(array) { /***/ }), -/***/ 586: +/***/ 20586: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_initCloneByTag.js ***! \***************************************************/ @@ -80078,9 +91418,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 2583); -/* harmony import */ var _cloneDataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_cloneDataView.js */ 6892); -/* harmony import */ var _cloneRegExp_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_cloneRegExp.js */ 762); +/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 82583); +/* harmony import */ var _cloneDataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_cloneDataView.js */ 16892); +/* harmony import */ var _cloneRegExp_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_cloneRegExp.js */ 10762); /* harmony import */ var _cloneSymbol_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cloneSymbol.js */ 6203); /* harmony import */ var _cloneTypedArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_cloneTypedArray.js */ 7721); @@ -80159,7 +91499,7 @@ function initCloneByTag(object, tag, isDeep) { /***/ }), -/***/ 1372: +/***/ 71372: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_initCloneObject.js ***! \****************************************************/ @@ -80170,9 +91510,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseCreate_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseCreate.js */ 1088); -/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 1640); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); +/* harmony import */ var _baseCreate_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseCreate.js */ 31088); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 41640); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); @@ -80191,7 +91531,7 @@ function initCloneObject(object) { /***/ }), -/***/ 3920: +/***/ 28336: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_isFlattenable.js ***! \**************************************************/ @@ -80202,9 +91542,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -80226,7 +91566,7 @@ function isFlattenable(value) { /***/ }), -/***/ 6570: +/***/ 36570: /*!********************************************!*\ !*** ./node_modules/lodash-es/_isIndex.js ***! \********************************************/ @@ -80260,7 +91600,7 @@ function isIndex(value, length) { /***/ }), -/***/ 9154: +/***/ 79154: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_isIterateeCall.js ***! \***************************************************/ @@ -80271,10 +91611,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./eq.js */ 8325); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./eq.js */ 28325); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); @@ -80304,7 +91644,7 @@ function isIterateeCall(value, index, object) { /***/ }), -/***/ 5836: +/***/ 75836: /*!******************************************!*\ !*** ./node_modules/lodash-es/_isKey.js ***! \******************************************/ @@ -80315,8 +91655,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isSymbol.js */ 67380); @@ -80346,7 +91686,7 @@ function isKey(value, object) { /***/ }), -/***/ 4405: +/***/ 64405: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_isKeyable.js ***! \**********************************************/ @@ -80372,7 +91712,7 @@ function isKeyable(value) { /***/ }), -/***/ 8426: +/***/ 38426: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_isMasked.js ***! \*********************************************/ @@ -80406,7 +91746,7 @@ function isMasked(func) { /***/ }), -/***/ 4036: +/***/ 54036: /*!************************************************!*\ !*** ./node_modules/lodash-es/_isPrototype.js ***! \************************************************/ @@ -80436,7 +91776,7 @@ function isPrototype(value) { /***/ }), -/***/ 6646: +/***/ 96646: /*!*******************************************************!*\ !*** ./node_modules/lodash-es/_isStrictComparable.js ***! \*******************************************************/ @@ -80447,7 +91787,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); /** @@ -80465,7 +91805,7 @@ function isStrictComparable(value) { /***/ }), -/***/ 9537: +/***/ 99537: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_listCacheClear.js ***! \***************************************************/ @@ -80491,7 +91831,7 @@ function listCacheClear() { /***/ }), -/***/ 5126: +/***/ 15126: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_listCacheDelete.js ***! \****************************************************/ @@ -80502,7 +91842,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** Used for built-in method references. */ @@ -80539,7 +91879,7 @@ function listCacheDelete(key) { /***/ }), -/***/ 3936: +/***/ 23936: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_listCacheGet.js ***! \*************************************************/ @@ -80550,7 +91890,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** @@ -80571,7 +91911,7 @@ function listCacheGet(key) { /***/ }), -/***/ 9420: +/***/ 69420: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_listCacheHas.js ***! \*************************************************/ @@ -80582,7 +91922,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** @@ -80601,7 +91941,7 @@ function listCacheHas(key) { /***/ }), -/***/ 8886: +/***/ 88886: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_listCacheSet.js ***! \*************************************************/ @@ -80612,7 +91952,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** @@ -80640,7 +91980,7 @@ function listCacheSet(key, value) { /***/ }), -/***/ 3771: +/***/ 43771: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheClear.js ***! \**************************************************/ @@ -80651,8 +91991,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Hash_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Hash.js */ 3875); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _Hash_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Hash.js */ 73875); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Map.js */ 525); @@ -80677,7 +92017,7 @@ function mapCacheClear() { /***/ }), -/***/ 9809: +/***/ 99809: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheDelete.js ***! \***************************************************/ @@ -80688,7 +92028,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80709,7 +92049,7 @@ function mapCacheDelete(key) { /***/ }), -/***/ 9080: +/***/ 29080: /*!************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheGet.js ***! \************************************************/ @@ -80720,7 +92060,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80739,7 +92079,7 @@ function mapCacheGet(key) { /***/ }), -/***/ 9927: +/***/ 89927: /*!************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheHas.js ***! \************************************************/ @@ -80750,7 +92090,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80769,7 +92109,7 @@ function mapCacheHas(key) { /***/ }), -/***/ 8096: +/***/ 58096: /*!************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheSet.js ***! \************************************************/ @@ -80780,7 +92120,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80804,7 +92144,7 @@ function mapCacheSet(key, value) { /***/ }), -/***/ 4269: +/***/ 74269: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_mapToArray.js ***! \***********************************************/ @@ -80834,7 +92174,7 @@ function mapToArray(map) { /***/ }), -/***/ 499: +/***/ 30499: /*!************************************************************!*\ !*** ./node_modules/lodash-es/_matchesStrictComparable.js ***! \************************************************************/ @@ -80866,7 +92206,7 @@ function matchesStrictComparable(key, srcValue) { /***/ }), -/***/ 5119: +/***/ 65119: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_memoizeCapped.js ***! \**************************************************/ @@ -80877,7 +92217,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _memoize_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./memoize.js */ 151); +/* harmony import */ var _memoize_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./memoize.js */ 80151); /** Used as the maximum memoize cache size. */ @@ -80916,7 +92256,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); /* Built-in method references that are verified to be native. */ @@ -80925,7 +92265,7 @@ var nativeCreate = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Obj /***/ }), -/***/ 3058: +/***/ 93058: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_nativeKeys.js ***! \***********************************************/ @@ -80936,7 +92276,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 4119); +/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 84119); /* Built-in method references for those with the same name as other `lodash` methods. */ @@ -80945,7 +92285,7 @@ var nativeKeys = (0,_overArg_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Object. /***/ }), -/***/ 2879: +/***/ 22879: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_nativeKeysIn.js ***! \*************************************************/ @@ -80978,7 +92318,7 @@ function nativeKeysIn(object) { /***/ }), -/***/ 2596: +/***/ 92596: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_nodeUtil.js ***! \*********************************************/ @@ -80989,7 +92329,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 800); +/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 60800); /** Detect free variable `exports`. */ @@ -81056,7 +92396,7 @@ function objectToString(value) { /***/ }), -/***/ 4119: +/***/ 84119: /*!********************************************!*\ !*** ./node_modules/lodash-es/_overArg.js ***! \********************************************/ @@ -81084,7 +92424,7 @@ function overArg(func, transform) { /***/ }), -/***/ 9116: +/***/ 89116: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_overRest.js ***! \*********************************************/ @@ -81095,7 +92435,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _apply_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_apply.js */ 6318); +/* harmony import */ var _apply_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_apply.js */ 36318); /* Built-in method references for those with the same name as other `lodash` methods. */ @@ -81133,7 +92473,7 @@ function overRest(func, start, transform) { /***/ }), -/***/ 556: +/***/ 92171: /*!*******************************************!*\ !*** ./node_modules/lodash-es/_parent.js ***! \*******************************************/ @@ -81144,8 +92484,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 1527); -/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSlice.js */ 1969); +/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 31527); +/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSlice.js */ 31969); @@ -81164,7 +92504,7 @@ function parent(object, path) { /***/ }), -/***/ 6396: +/***/ 16396: /*!*****************************************!*\ !*** ./node_modules/lodash-es/_root.js ***! \*****************************************/ @@ -81175,7 +92515,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 800); +/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 60800); /** Detect free variable `self`. */ @@ -81187,7 +92527,7 @@ var root = _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__["default"] || freeSelf || /***/ }), -/***/ 3885: +/***/ 58883: /*!********************************************!*\ !*** ./node_modules/lodash-es/_safeGet.js ***! \********************************************/ @@ -81219,7 +92559,7 @@ function safeGet(object, key) { /***/ }), -/***/ 4924: +/***/ 64924: /*!************************************************!*\ !*** ./node_modules/lodash-es/_setCacheAdd.js ***! \************************************************/ @@ -81251,7 +92591,7 @@ function setCacheAdd(value) { /***/ }), -/***/ 8336: +/***/ 68336: /*!************************************************!*\ !*** ./node_modules/lodash-es/_setCacheHas.js ***! \************************************************/ @@ -81278,7 +92618,7 @@ function setCacheHas(value) { /***/ }), -/***/ 974: +/***/ 60974: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_setToArray.js ***! \***********************************************/ @@ -81308,7 +92648,7 @@ function setToArray(set) { /***/ }), -/***/ 3483: +/***/ 13483: /*!************************************************!*\ !*** ./node_modules/lodash-es/_setToString.js ***! \************************************************/ @@ -81319,8 +92659,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseSetToString_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSetToString.js */ 5095); -/* harmony import */ var _shortOut_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_shortOut.js */ 8685); +/* harmony import */ var _baseSetToString_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSetToString.js */ 55095); +/* harmony import */ var _shortOut_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_shortOut.js */ 58685); @@ -81337,7 +92677,7 @@ var setToString = (0,_shortOut_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_base /***/ }), -/***/ 8685: +/***/ 58685: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_shortOut.js ***! \*********************************************/ @@ -81396,7 +92736,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseRandom_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRandom.js */ 9349); +/* harmony import */ var _baseRandom_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRandom.js */ 39349); /** @@ -81436,7 +92776,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /** @@ -81454,7 +92794,7 @@ function stackClear() { /***/ }), -/***/ 5311: +/***/ 55311: /*!************************************************!*\ !*** ./node_modules/lodash-es/_stackDelete.js ***! \************************************************/ @@ -81484,7 +92824,7 @@ function stackDelete(key) { /***/ }), -/***/ 5121: +/***/ 95121: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_stackGet.js ***! \*********************************************/ @@ -81511,7 +92851,7 @@ function stackGet(key) { /***/ }), -/***/ 669: +/***/ 90669: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_stackHas.js ***! \*********************************************/ @@ -81538,7 +92878,7 @@ function stackHas(key) { /***/ }), -/***/ 9746: +/***/ 79746: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_stackSet.js ***! \*********************************************/ @@ -81549,9 +92889,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Map.js */ 525); -/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_MapCache.js */ 795); +/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_MapCache.js */ 80795); @@ -81588,7 +92928,7 @@ function stackSet(key, value) { /***/ }), -/***/ 9343: +/***/ 69343: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_strictIndexOf.js ***! \**************************************************/ @@ -81623,7 +92963,7 @@ function strictIndexOf(array, value, fromIndex) { /***/ }), -/***/ 1769: +/***/ 21769: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_stringToPath.js ***! \*************************************************/ @@ -81634,7 +92974,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _memoizeCapped_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_memoizeCapped.js */ 5119); +/* harmony import */ var _memoizeCapped_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_memoizeCapped.js */ 65119); /** Used to match property names within property paths. */ @@ -81664,7 +93004,7 @@ var stringToPath = (0,_memoizeCapped_js__WEBPACK_IMPORTED_MODULE_0__["default"]) /***/ }), -/***/ 667: +/***/ 50667: /*!******************************************!*\ !*** ./node_modules/lodash-es/_toKey.js ***! \******************************************/ @@ -81675,7 +93015,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 67380); /** Used as references for various `Number` constants. */ @@ -81699,7 +93039,7 @@ function toKey(value) { /***/ }), -/***/ 1540: +/***/ 51540: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_toSource.js ***! \*********************************************/ @@ -81738,7 +93078,7 @@ function toSource(func) { /***/ }), -/***/ 8655: +/***/ 88655: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_trimmedEndIndex.js ***! \****************************************************/ @@ -81769,7 +93109,7 @@ function trimmedEndIndex(string) { /***/ }), -/***/ 64: +/***/ 90064: /*!*********************************************!*\ !*** ./node_modules/lodash-es/castArray.js ***! \*********************************************/ @@ -81780,7 +93120,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); /** @@ -81827,7 +93167,7 @@ function castArray() { /***/ }), -/***/ 5772: +/***/ 25772: /*!*****************************************!*\ !*** ./node_modules/lodash-es/chunk.js ***! \*****************************************/ @@ -81838,9 +93178,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseSlice.js */ 1969); -/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isIterateeCall.js */ 9154); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toInteger.js */ 7861); +/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseSlice.js */ 31969); +/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isIterateeCall.js */ 79154); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toInteger.js */ 37861); @@ -81892,7 +93232,7 @@ function chunk(array, size, guard) { /***/ }), -/***/ 8717: +/***/ 48717: /*!*********************************************!*\ !*** ./node_modules/lodash-es/cloneDeep.js ***! \*********************************************/ @@ -81903,7 +93243,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseClone.js */ 8265); +/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseClone.js */ 68265); /** Used to compose bitmasks for cloning. */ @@ -81935,7 +93275,7 @@ function cloneDeep(value) { /***/ }), -/***/ 2984: +/***/ 32984: /*!******************************************!*\ !*** ./node_modules/lodash-es/concat.js ***! \******************************************/ @@ -81946,10 +93286,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_copyArray.js */ 4196); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_copyArray.js */ 54196); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -82033,7 +93373,7 @@ function constant(value) { /***/ }), -/***/ 8325: +/***/ 28325: /*!**************************************!*\ !*** ./node_modules/lodash-es/eq.js ***! \**************************************/ @@ -82083,7 +93423,7 @@ function eq(value, other) { /***/ }), -/***/ 9990: +/***/ 39990: /*!******************************************!*\ !*** ./node_modules/lodash-es/filter.js ***! \******************************************/ @@ -82094,10 +93434,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 4423); -/* harmony import */ var _baseFilter_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFilter.js */ 7295); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 74423); +/* harmony import */ var _baseFilter_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFilter.js */ 57295); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -82152,7 +93492,7 @@ function filter(collection, predicate) { /***/ }), -/***/ 7386: +/***/ 87386: /*!****************************************!*\ !*** ./node_modules/lodash-es/find.js ***! \****************************************/ @@ -82163,8 +93503,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _createFind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createFind.js */ 5679); -/* harmony import */ var _findIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./findIndex.js */ 1646); +/* harmony import */ var _createFind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createFind.js */ 35679); +/* harmony import */ var _findIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./findIndex.js */ 71646); @@ -82209,7 +93549,7 @@ var find = (0,_createFind_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_findIndex /***/ }), -/***/ 1646: +/***/ 71646: /*!*********************************************!*\ !*** ./node_modules/lodash-es/findIndex.js ***! \*********************************************/ @@ -82220,9 +93560,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 4150); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toInteger.js */ 7861); +/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 24150); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toInteger.js */ 37861); @@ -82280,7 +93620,7 @@ function findIndex(array, predicate, fromIndex) { /***/ }), -/***/ 8864: +/***/ 28864: /*!*******************************************!*\ !*** ./node_modules/lodash-es/flatten.js ***! \*******************************************/ @@ -82291,7 +93631,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); /** @@ -82316,7 +93656,7 @@ function flatten(array) { /***/ }), -/***/ 7175: +/***/ 47175: /*!***********************************************!*\ !*** ./node_modules/lodash-es/flattenDeep.js ***! \***********************************************/ @@ -82327,7 +93667,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); /** Used as references for various `Number` constants. */ @@ -82355,7 +93695,7 @@ function flattenDeep(array) { /***/ }), -/***/ 913: +/***/ 40913: /*!*******************************************!*\ !*** ./node_modules/lodash-es/forEach.js ***! \*******************************************/ @@ -82366,10 +93706,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayEach.js */ 7528); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseEach.js */ 9121); -/* harmony import */ var _castFunction_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_castFunction.js */ 7259); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayEach.js */ 47528); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseEach.js */ 59121); +/* harmony import */ var _castFunction_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_castFunction.js */ 37259); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -82413,7 +93753,7 @@ function forEach(collection, iteratee) { /***/ }), -/***/ 6687: +/***/ 26687: /*!***************************************!*\ !*** ./node_modules/lodash-es/get.js ***! \***************************************/ @@ -82424,7 +93764,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 1527); +/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 31527); /** @@ -82460,7 +93800,7 @@ function get(object, path, defaultValue) { /***/ }), -/***/ 408: +/***/ 20408: /*!*******************************************!*\ !*** ./node_modules/lodash-es/groupBy.js ***! \*******************************************/ @@ -82471,8 +93811,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); -/* harmony import */ var _createAggregator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAggregator.js */ 351); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); +/* harmony import */ var _createAggregator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAggregator.js */ 40351); @@ -82516,7 +93856,7 @@ var groupBy = (0,_createAggregator_js__WEBPACK_IMPORTED_MODULE_0__["default"])(f /***/ }), -/***/ 4373: +/***/ 34373: /*!***************************************!*\ !*** ./node_modules/lodash-es/has.js ***! \***************************************/ @@ -82527,8 +93867,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseHas_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseHas.js */ 5566); -/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 1183); +/* harmony import */ var _baseHas_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseHas.js */ 95566); +/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 71183); @@ -82566,7 +93906,7 @@ function has(object, path) { /***/ }), -/***/ 3595: +/***/ 23595: /*!*****************************************!*\ !*** ./node_modules/lodash-es/hasIn.js ***! \*****************************************/ @@ -82578,7 +93918,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _baseHasIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseHasIn.js */ 2100); -/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 1183); +/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 71183); @@ -82615,7 +93955,7 @@ function hasIn(object, path) { /***/ }), -/***/ 5416: +/***/ 25416: /*!********************************************!*\ !*** ./node_modules/lodash-es/identity.js ***! \********************************************/ @@ -82660,10 +94000,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseIndexOf.js */ 9994); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _isString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isString.js */ 9362); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 7861); +/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseIndexOf.js */ 79994); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _isString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isString.js */ 39362); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 37861); /* harmony import */ var _values_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./values.js */ 8733); @@ -82717,7 +94057,7 @@ function includes(collection, value, fromIndex, guard) { /***/ }), -/***/ 7018: +/***/ 77018: /*!***********************************************!*\ !*** ./node_modules/lodash-es/isArguments.js ***! \***********************************************/ @@ -82728,7 +94068,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsArguments_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsArguments.js */ 4063); +/* harmony import */ var _baseIsArguments_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsArguments.js */ 34063); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -82769,7 +94109,7 @@ var isArguments = (0,_baseIsArguments_js__WEBPACK_IMPORTED_MODULE_0__["default"] /***/ }), -/***/ 6328: +/***/ 66328: /*!*******************************************!*\ !*** ./node_modules/lodash-es/isArray.js ***! \*******************************************/ @@ -82808,7 +94148,7 @@ var isArray = Array.isArray; /***/ }), -/***/ 4070: +/***/ 64070: /*!***********************************************!*\ !*** ./node_modules/lodash-es/isArrayLike.js ***! \***********************************************/ @@ -82819,8 +94159,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isFunction.js */ 3084); -/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isLength.js */ 4080); +/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isFunction.js */ 93084); +/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isLength.js */ 74080); @@ -82856,7 +94196,7 @@ function isArrayLike(value) { /***/ }), -/***/ 5306: +/***/ 65306: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/isArrayLikeObject.js ***! \*****************************************************/ @@ -82867,7 +94207,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -82904,7 +94244,7 @@ function isArrayLikeObject(value) { /***/ }), -/***/ 2467: +/***/ 92467: /*!********************************************!*\ !*** ./node_modules/lodash-es/isBuffer.js ***! \********************************************/ @@ -82915,8 +94255,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); -/* harmony import */ var _stubFalse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stubFalse.js */ 8534); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); +/* harmony import */ var _stubFalse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stubFalse.js */ 68534); @@ -82957,7 +94297,7 @@ var isBuffer = nativeIsBuffer || _stubFalse_js__WEBPACK_IMPORTED_MODULE_1__["def /***/ }), -/***/ 1855: +/***/ 41855: /*!*******************************************!*\ !*** ./node_modules/lodash-es/isEmpty.js ***! \*******************************************/ @@ -82968,14 +94308,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseKeys.js */ 2093); +/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseKeys.js */ 22093); /* harmony import */ var _getTag_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_getTag.js */ 8020); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); @@ -83053,7 +94393,7 @@ function isEmpty(value) { /***/ }), -/***/ 4164: +/***/ 24164: /*!*******************************************!*\ !*** ./node_modules/lodash-es/isEqual.js ***! \*******************************************/ @@ -83064,7 +94404,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsEqual.js */ 153); +/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsEqual.js */ 90153); /** @@ -83102,7 +94442,7 @@ function isEqual(value, other) { /***/ }), -/***/ 3084: +/***/ 93084: /*!**********************************************!*\ !*** ./node_modules/lodash-es/isFunction.js ***! \**********************************************/ @@ -83113,8 +94453,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); @@ -83154,7 +94494,7 @@ function isFunction(value) { /***/ }), -/***/ 4080: +/***/ 74080: /*!********************************************!*\ !*** ./node_modules/lodash-es/isLength.js ***! \********************************************/ @@ -83201,7 +94541,7 @@ function isLength(value) { /***/ }), -/***/ 1078: +/***/ 41078: /*!*****************************************!*\ !*** ./node_modules/lodash-es/isMap.js ***! \*****************************************/ @@ -83212,9 +94552,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMap.js */ 6934); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 2596); +/* harmony import */ var _baseIsMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMap.js */ 56934); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 92596); @@ -83244,7 +94584,7 @@ var isMap = nodeIsMap ? (0,_baseUnary_js__WEBPACK_IMPORTED_MODULE_1__["default"] /***/ }), -/***/ 7570: +/***/ 17570: /*!******************************************!*\ !*** ./node_modules/lodash-es/isNull.js ***! \******************************************/ @@ -83279,7 +94619,7 @@ function isNull(value) { /***/ }), -/***/ 2176: +/***/ 32176: /*!********************************************!*\ !*** ./node_modules/lodash-es/isObject.js ***! \********************************************/ @@ -83365,7 +94705,7 @@ function isObjectLike(value) { /***/ }), -/***/ 9702: +/***/ 59702: /*!*************************************************!*\ !*** ./node_modules/lodash-es/isPlainObject.js ***! \*************************************************/ @@ -83376,8 +94716,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 1640); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 41640); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -83442,7 +94782,7 @@ function isPlainObject(value) { /***/ }), -/***/ 9584: +/***/ 29584: /*!*****************************************!*\ !*** ./node_modules/lodash-es/isSet.js ***! \*****************************************/ @@ -83453,9 +94793,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsSet.js */ 1469); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 2596); +/* harmony import */ var _baseIsSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsSet.js */ 91469); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 92596); @@ -83485,7 +94825,7 @@ var isSet = nodeIsSet ? (0,_baseUnary_js__WEBPACK_IMPORTED_MODULE_1__["default"] /***/ }), -/***/ 9362: +/***/ 39362: /*!********************************************!*\ !*** ./node_modules/lodash-es/isString.js ***! \********************************************/ @@ -83496,8 +94836,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -83530,7 +94870,7 @@ function isString(value) { /***/ }), -/***/ 7380: +/***/ 67380: /*!********************************************!*\ !*** ./node_modules/lodash-es/isSymbol.js ***! \********************************************/ @@ -83541,7 +94881,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -83573,7 +94913,7 @@ function isSymbol(value) { /***/ }), -/***/ 4752: +/***/ 54752: /*!************************************************!*\ !*** ./node_modules/lodash-es/isTypedArray.js ***! \************************************************/ @@ -83584,9 +94924,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsTypedArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsTypedArray.js */ 970); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 2596); +/* harmony import */ var _baseIsTypedArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsTypedArray.js */ 80970); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 92596); @@ -83616,7 +94956,7 @@ var isTypedArray = nodeIsTypedArray ? (0,_baseUnary_js__WEBPACK_IMPORTED_MODULE_ /***/ }), -/***/ 4817: +/***/ 10153: /*!***********************************************!*\ !*** ./node_modules/lodash-es/isUndefined.js ***! \***********************************************/ @@ -83651,7 +94991,7 @@ function isUndefined(value) { /***/ }), -/***/ 1192: +/***/ 31192: /*!****************************************!*\ !*** ./node_modules/lodash-es/keys.js ***! \****************************************/ @@ -83662,9 +95002,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 4937); -/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseKeys.js */ 2093); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 54937); +/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseKeys.js */ 22093); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); @@ -83704,7 +95044,7 @@ function keys(object) { /***/ }), -/***/ 2229: +/***/ 22229: /*!******************************************!*\ !*** ./node_modules/lodash-es/keysIn.js ***! \******************************************/ @@ -83715,9 +95055,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 4937); +/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 54937); /* harmony import */ var _baseKeysIn_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseKeysIn.js */ 2171); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); @@ -83752,7 +95092,7 @@ function keysIn(object) { /***/ }), -/***/ 8013: +/***/ 78013: /*!****************************************!*\ !*** ./node_modules/lodash-es/last.js ***! \****************************************/ @@ -83796,10 +95136,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMap.js */ 650); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMap.js */ 10650); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -83855,7 +95195,7 @@ function map(collection, iteratee) { /***/ }), -/***/ 151: +/***/ 80151: /*!*******************************************!*\ !*** ./node_modules/lodash-es/memoize.js ***! \*******************************************/ @@ -83866,7 +95206,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 795); +/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 80795); /** Error message constants. */ @@ -83941,7 +95281,7 @@ memoize.Cache = _MapCache_js__WEBPACK_IMPORTED_MODULE_0__["default"]; /***/ }), -/***/ 4011: +/***/ 94011: /*!*****************************************!*\ !*** ./node_modules/lodash-es/merge.js ***! \*****************************************/ @@ -83952,8 +95292,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseMerge_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseMerge.js */ 5674); -/* harmony import */ var _createAssigner_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAssigner.js */ 7650); +/* harmony import */ var _baseMerge_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseMerge.js */ 45674); +/* harmony import */ var _createAssigner_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAssigner.js */ 57650); @@ -83995,7 +95335,7 @@ var merge = (0,_createAssigner_js__WEBPACK_IMPORTED_MODULE_0__["default"])(funct /***/ }), -/***/ 7183: +/***/ 87183: /*!****************************************!*\ !*** ./node_modules/lodash-es/noop.js ***! \****************************************/ @@ -84025,7 +95365,7 @@ function noop() { /***/ }), -/***/ 6705: +/***/ 86705: /*!****************************************!*\ !*** ./node_modules/lodash-es/omit.js ***! \****************************************/ @@ -84036,13 +95376,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseClone.js */ 8265); -/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseUnset.js */ 3882); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyObject.js */ 7480); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseClone.js */ 68265); +/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseUnset.js */ 63882); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyObject.js */ 87480); /* harmony import */ var _customOmitClone_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_customOmitClone.js */ 9295); -/* harmony import */ var _flatRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_flatRest.js */ 2462); +/* harmony import */ var _flatRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_flatRest.js */ 82462); /* harmony import */ var _getAllKeysIn_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_getAllKeysIn.js */ 9740); @@ -84103,7 +95443,7 @@ var omit = (0,_flatRest_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function (ob /***/ }), -/***/ 4691: +/***/ 14691: /*!********************************************!*\ !*** ./node_modules/lodash-es/property.js ***! \********************************************/ @@ -84114,10 +95454,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseProperty_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseProperty.js */ 4005); +/* harmony import */ var _baseProperty_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseProperty.js */ 54005); /* harmony import */ var _basePropertyDeep_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_basePropertyDeep.js */ 2539); -/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 5836); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 75836); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -84152,7 +95492,7 @@ function property(path) { /***/ }), -/***/ 5935: +/***/ 45935: /*!******************************************!*\ !*** ./node_modules/lodash-es/reduce.js ***! \******************************************/ @@ -84163,11 +95503,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayReduce_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayReduce.js */ 2304); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseEach.js */ 9121); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseReduce_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseReduce.js */ 7003); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayReduce_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayReduce.js */ 52304); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseEach.js */ 59121); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseReduce_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseReduce.js */ 97003); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -84220,7 +95560,7 @@ function reduce(collection, iteratee, accumulator) { /***/ }), -/***/ 1745: +/***/ 61745: /*!*******************************************!*\ !*** ./node_modules/lodash-es/replace.js ***! \*******************************************/ @@ -84231,7 +95571,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 88511); /** @@ -84262,7 +95602,7 @@ function replace() { /***/ }), -/***/ 2502: +/***/ 42502: /*!*****************************************!*\ !*** ./node_modules/lodash-es/round.js ***! \*****************************************/ @@ -84273,7 +95613,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _createRound_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createRound.js */ 6569); +/* harmony import */ var _createRound_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createRound.js */ 56569); /** @@ -84302,7 +95642,7 @@ var round = (0,_createRound_js__WEBPACK_IMPORTED_MODULE_0__["default"])('round') /***/ }), -/***/ 4509: +/***/ 14509: /*!***************************************!*\ !*** ./node_modules/lodash-es/set.js ***! \***************************************/ @@ -84313,7 +95653,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseSet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseSet.js */ 7873); +/* harmony import */ var _baseSet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseSet.js */ 97873); /** @@ -84351,7 +95691,7 @@ function set(object, path, value) { /***/ }), -/***/ 4734: +/***/ 14734: /*!*******************************************!*\ !*** ./node_modules/lodash-es/shuffle.js ***! \*******************************************/ @@ -84362,9 +95702,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayShuffle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayShuffle.js */ 2292); -/* harmony import */ var _baseShuffle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseShuffle.js */ 871); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayShuffle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayShuffle.js */ 42292); +/* harmony import */ var _baseShuffle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseShuffle.js */ 40871); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -84392,7 +95732,7 @@ function shuffle(collection) { /***/ }), -/***/ 1509: +/***/ 71509: /*!*********************************************!*\ !*** ./node_modules/lodash-es/stubArray.js ***! \*********************************************/ @@ -84428,7 +95768,7 @@ function stubArray() { /***/ }), -/***/ 8534: +/***/ 68534: /*!*********************************************!*\ !*** ./node_modules/lodash-es/stubFalse.js ***! \*********************************************/ @@ -84459,7 +95799,7 @@ function stubFalse() { /***/ }), -/***/ 2071: +/***/ 82071: /*!********************************************!*\ !*** ./node_modules/lodash-es/toFinite.js ***! \********************************************/ @@ -84470,7 +95810,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toNumber.js */ 567); +/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toNumber.js */ 20567); /** Used as references for various `Number` constants. */ @@ -84515,7 +95855,7 @@ function toFinite(value) { /***/ }), -/***/ 7861: +/***/ 37861: /*!*********************************************!*\ !*** ./node_modules/lodash-es/toInteger.js ***! \*********************************************/ @@ -84526,7 +95866,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toFinite_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFinite.js */ 2071); +/* harmony import */ var _toFinite_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFinite.js */ 82071); /** @@ -84564,7 +95904,7 @@ function toInteger(value) { /***/ }), -/***/ 5751: +/***/ 55751: /*!*******************************************!*\ !*** ./node_modules/lodash-es/toLower.js ***! \*******************************************/ @@ -84575,7 +95915,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 88511); /** @@ -84606,7 +95946,7 @@ function toLower(value) { /***/ }), -/***/ 567: +/***/ 20567: /*!********************************************!*\ !*** ./node_modules/lodash-es/toNumber.js ***! \********************************************/ @@ -84617,9 +95957,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseTrim_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseTrim.js */ 9276); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _baseTrim_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseTrim.js */ 99276); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 67380); @@ -84684,7 +96024,7 @@ function toNumber(value) { /***/ }), -/***/ 5949: +/***/ 25949: /*!*************************************************!*\ !*** ./node_modules/lodash-es/toPlainObject.js ***! \*************************************************/ @@ -84695,8 +96035,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -84731,7 +96071,7 @@ function toPlainObject(value) { /***/ }), -/***/ 8511: +/***/ 88511: /*!********************************************!*\ !*** ./node_modules/lodash-es/toString.js ***! \********************************************/ @@ -84742,7 +96082,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseToString.js */ 5696); +/* harmony import */ var _baseToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseToString.js */ 25696); /** @@ -84784,8 +96124,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 3401); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 84560); @@ -84819,7 +96159,7 @@ function uniqBy(array, iteratee) { /***/ }), -/***/ 9412: +/***/ 39412: /*!*****************************************!*\ !*** ./node_modules/lodash-es/unset.js ***! \*****************************************/ @@ -84830,7 +96170,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUnset.js */ 3882); +/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUnset.js */ 63882); /** @@ -84878,8 +96218,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseValues_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseValues.js */ 8518); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _baseValues_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseValues.js */ 78518); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -84916,7 +96256,7 @@ function values(object) { /***/ }), -/***/ 9530: +/***/ 79530: /*!*****************************************!*\ !*** ./node_modules/lodash-es/xorBy.js ***! \*****************************************/ @@ -84927,12 +96267,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_arrayFilter.js */ 4423); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 5736); -/* harmony import */ var _baseXor_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseXor.js */ 259); -/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 5306); -/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./last.js */ 8013); +/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_arrayFilter.js */ 74423); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 15736); +/* harmony import */ var _baseXor_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseXor.js */ 40259); +/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 65306); +/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./last.js */ 78013); @@ -84974,7 +96314,7 @@ var xorBy = (0,_baseRest_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function (a /***/ }), -/***/ 2459: +/***/ 42459: /*!*********************************************************************************!*\ !*** ./node_modules/ngx-bootstrap/carousel/fesm2022/ngx-bootstrap-carousel.mjs ***! \*********************************************************************************/ @@ -84988,9 +96328,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ CarouselModule: () => (/* binding */ CarouselModule), /* harmony export */ SlideComponent: () => (/* binding */ SlideComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var ngx_bootstrap_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ngx-bootstrap/utils */ 8929); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var ngx_bootstrap_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ngx-bootstrap/utils */ 18929); @@ -86068,7 +97408,7 @@ class CarouselModule { /***/ }), -/***/ 8929: +/***/ 18929: /*!***************************************************************************!*\ !*** ./node_modules/ngx-bootstrap/utils/fesm2022/ngx-bootstrap-utils.mjs ***! \***************************************************************************/ @@ -86094,7 +97434,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ warnOnce: () => (/* binding */ warnOnce), /* harmony export */ window: () => (/* binding */ win) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); /** @@ -86298,7 +97638,6 @@ class LinkedList { this.asArray = []; // Array methods overriding END } - get(position) { if (this.length === 0 || position < 0 || position >= this.length) { return void 0; @@ -86604,7 +97943,7 @@ function warnOnce(msg) { /***/ }), -/***/ 1670: +/***/ 71670: /*!*********************************************************************!*\ !*** ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js ***! \*********************************************************************/ @@ -86653,7 +97992,7 @@ function _asyncToGenerator(fn) { "use strict"; (self["webpackChunkquml_player_wc"] = self["webpackChunkquml_player_wc"] || []).push([["main"],{ -/***/ 7207: +/***/ 57207: /*!****************************************************************!*\ !*** ./projects/quml-library/src/lib/alert/alert.component.ts ***! \****************************************************************/ @@ -86663,9 +98002,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AlertComponent: () => (/* binding */ AlertComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); @@ -86885,7 +98224,7 @@ class AlertComponent { /***/ }), -/***/ 3893: +/***/ 23893: /*!******************************************************************!*\ !*** ./projects/quml-library/src/lib/header/header.component.ts ***! \******************************************************************/ @@ -86895,13 +98234,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ HeaderComponent: () => (/* binding */ HeaderComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common */ 26575); /* harmony import */ var _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../icon/ans/ans.component */ 8188); -/* harmony import */ var _icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../icon/durationtimer/durationtimer.component */ 9905); -/* harmony import */ var _progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../progress-indicators/progress-indicators.component */ 1267); +/* harmony import */ var _icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../icon/durationtimer/durationtimer.component */ 29905); +/* harmony import */ var _progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../progress-indicators/progress-indicators.component */ 51267); @@ -87403,7 +98742,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AnsComponent: () => (/* binding */ AnsComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class AnsComponent { static #_ = this.ɵfac = function AnsComponent_Factory(t) { @@ -87432,7 +98771,7 @@ class AnsComponent { /***/ }), -/***/ 1228: +/***/ 11228: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/audio/audio.component.ts ***! \*********************************************************************/ @@ -87442,7 +98781,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AudioComponent: () => (/* binding */ AudioComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class AudioComponent { static #_ = this.ɵfac = function AudioComponent_Factory(t) { @@ -87478,7 +98817,7 @@ class AudioComponent { /***/ }), -/***/ 467: +/***/ 90467: /*!***************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/bookmark/bookmark.component.ts ***! \***************************************************************************/ @@ -87488,7 +98827,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ BookmarkComponent: () => (/* binding */ BookmarkComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class BookmarkComponent { static #_ = this.ɵfac = function BookmarkComponent_Factory(t) { @@ -87517,7 +98856,7 @@ class BookmarkComponent { /***/ }), -/***/ 5922: +/***/ 55922: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/close/close.component.ts ***! \*********************************************************************/ @@ -87527,7 +98866,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ CloseComponent: () => (/* binding */ CloseComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class CloseComponent { static #_ = this.ɵfac = function CloseComponent_Factory(t) { @@ -87556,7 +98895,7 @@ class CloseComponent { /***/ }), -/***/ 5019: +/***/ 85019: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/content/content.component.ts ***! \*************************************************************************/ @@ -87566,7 +98905,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ContentComponent: () => (/* binding */ ContentComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class ContentComponent { static #_ = this.ɵfac = function ContentComponent_Factory(t) { @@ -87598,7 +98937,7 @@ class ContentComponent { /***/ }), -/***/ 189: +/***/ 30189: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/correct/correct.component.ts ***! \*************************************************************************/ @@ -87608,7 +98947,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ CorrectComponent: () => (/* binding */ CorrectComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class CorrectComponent { static #_ = this.ɵfac = function CorrectComponent_Factory(t) { @@ -87637,7 +98976,7 @@ class CorrectComponent { /***/ }), -/***/ 9905: +/***/ 29905: /*!*************************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/durationtimer/durationtimer.component.ts ***! \*************************************************************************************/ @@ -87647,7 +98986,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ DurationtimerComponent: () => (/* binding */ DurationtimerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class DurationtimerComponent { static #_ = this.ɵfac = function DurationtimerComponent_Factory(t) { @@ -87676,7 +99015,7 @@ class DurationtimerComponent { /***/ }), -/***/ 4696: +/***/ 64696: /*!*******************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/hint/hint.component.ts ***! \*******************************************************************/ @@ -87686,7 +99025,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ HintComponent: () => (/* binding */ HintComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class HintComponent { static #_ = this.ɵfac = function HintComponent_Factory(t) { @@ -87715,7 +99054,7 @@ class HintComponent { /***/ }), -/***/ 2075: +/***/ 82075: /*!*******************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/menu/menu.component.ts ***! \*******************************************************************/ @@ -87725,7 +99064,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ MenuComponent: () => (/* binding */ MenuComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class MenuComponent { static #_ = this.ɵfac = function MenuComponent_Factory(t) { @@ -87754,7 +99093,7 @@ class MenuComponent { /***/ }), -/***/ 3651: +/***/ 33651: /*!*********************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/next-active/next-active.component.ts ***! \*********************************************************************************/ @@ -87764,7 +99103,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ NextActiveComponent: () => (/* binding */ NextActiveComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class NextActiveComponent { static #_ = this.ɵfac = function NextActiveComponent_Factory(t) { @@ -87822,7 +99161,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ NextComponent: () => (/* binding */ NextComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class NextComponent { static #_ = this.ɵfac = function NextComponent_Factory(t) { @@ -87870,7 +99209,7 @@ class NextComponent { /***/ }), -/***/ 9178: +/***/ 49178: /*!*****************************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/previous-active/previous-active.component.ts ***! \*****************************************************************************************/ @@ -87880,7 +99219,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ PreviousActiveComponent: () => (/* binding */ PreviousActiveComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class PreviousActiveComponent { static #_ = this.ɵfac = function PreviousActiveComponent_Factory(t) { @@ -87921,7 +99260,7 @@ class PreviousActiveComponent { /***/ }), -/***/ 664: +/***/ 50664: /*!***************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/previous/previous.component.ts ***! \***************************************************************************/ @@ -87931,7 +99270,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ PreviousComponent: () => (/* binding */ PreviousComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class PreviousComponent { static #_ = this.ɵfac = function PreviousComponent_Factory(t) { @@ -87979,7 +99318,7 @@ class PreviousComponent { /***/ }), -/***/ 4819: +/***/ 34819: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/share/share.component.ts ***! \*********************************************************************/ @@ -87989,7 +99328,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ShareComponent: () => (/* binding */ ShareComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class ShareComponent { static #_ = this.ɵfac = function ShareComponent_Factory(t) { @@ -88018,7 +99357,7 @@ class ShareComponent { /***/ }), -/***/ 413: +/***/ 40413: /*!*******************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/star/star.component.ts ***! \*******************************************************************/ @@ -88028,7 +99367,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ StarComponent: () => (/* binding */ StarComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class StarComponent { static #_ = this.ɵfac = function StarComponent_Factory(t) { @@ -88060,7 +99399,7 @@ class StarComponent { /***/ }), -/***/ 2205: +/***/ 72205: /*!*********************************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/startpagestaricon/startpagestaricon.component.ts ***! \*********************************************************************************************/ @@ -88070,7 +99409,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ StartpagestariconComponent: () => (/* binding */ StartpagestariconComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class StartpagestariconComponent { static #_ = this.ɵfac = function StartpagestariconComponent_Factory(t) { @@ -88102,7 +99441,7 @@ class StartpagestariconComponent { /***/ }), -/***/ 2162: +/***/ 52162: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/timer/timer.component.ts ***! \*********************************************************************/ @@ -88112,7 +99451,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ TimerComponent: () => (/* binding */ TimerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class TimerComponent { static #_ = this.ɵfac = function TimerComponent_Factory(t) { @@ -88154,7 +99493,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ WrongComponent: () => (/* binding */ WrongComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class WrongComponent { static #_ = this.ɵfac = function WrongComponent_Factory(t) { @@ -88186,7 +99525,7 @@ class WrongComponent { /***/ }), -/***/ 9736: +/***/ 99736: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/zoom-in/zoom-in.component.ts ***! \*************************************************************************/ @@ -88196,7 +99535,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ZoomInComponent: () => (/* binding */ ZoomInComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class ZoomInComponent { static #_ = this.ɵfac = function ZoomInComponent_Factory(t) { @@ -88227,7 +99566,7 @@ class ZoomInComponent { /***/ }), -/***/ 2306: +/***/ 72306: /*!****************************************************************************!*\ !*** ./projects/quml-library/src/lib/main-player/main-player.component.ts ***! \****************************************************************************/ @@ -88237,27 +99576,27 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ MainPlayerComponent: () => (/* binding */ MainPlayerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 6687); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 26687); /* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 3715); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 4734); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 8717); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 7175); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 408); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 8013); -/* harmony import */ var _section_player_section_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../section-player/section-player.component */ 4970); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../telemetry-constants */ 1679); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 2525); -/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../player-constants */ 8831); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../util-service */ 4384); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 14734); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 48717); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 47175); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 20408); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 78013); +/* harmony import */ var _section_player_section_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../section-player/section-player.component */ 14970); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../telemetry-constants */ 71679); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 32525); +/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../player-constants */ 28831); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../util-service */ 54384); /* harmony import */ var _services_transformation_service_transformation_service__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../services/transformation-service/transformation.service */ 8396); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 3873); -/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../header/header.component */ 3893); -/* harmony import */ var _scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../scoreboard/scoreboard.component */ 9186); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 83873); +/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../header/header.component */ 23893); +/* harmony import */ var _scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../scoreboard/scoreboard.component */ 19186); @@ -89043,7 +100382,7 @@ class MainPlayerComponent { /***/ }), -/***/ 305: +/***/ 50305: /*!**************************************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq-image-option/mcq-image-option.component.ts ***! \**************************************************************************************/ @@ -89053,9 +100392,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqImageOptionComponent: () => (/* binding */ McqImageOptionComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89188,7 +100527,7 @@ class McqImageOptionComponent { /***/ }), -/***/ 1879: +/***/ 51879: /*!**************************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq-option/mcq-option.component.ts ***! \**************************************************************************/ @@ -89198,14 +100537,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqOptionComponent: () => (/* binding */ McqOptionComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 4734); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 9990); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-image-option/mcq-image-option.component */ 305); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 14734); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 39990); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-image-option/mcq-image-option.component */ 50305); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89534,7 +100873,7 @@ class McqOptionComponent { /***/ }), -/***/ 4443: +/***/ 64443: /*!******************************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq-question/mcq-question.component.ts ***! \******************************************************************************/ @@ -89544,9 +100883,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqQuestionComponent: () => (/* binding */ McqQuestionComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89604,11 +100943,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqSolutionsComponent: () => (/* binding */ McqSolutionsComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _icon_close_close_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/close/close.component */ 5922); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _icon_close_close_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/close/close.component */ 55922); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89760,7 +101099,7 @@ class McqSolutionsComponent { /***/ }), -/***/ 6633: +/***/ 16633: /*!************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq/mcq.component.ts ***! \************************************************************/ @@ -89770,14 +101109,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqComponent: () => (/* binding */ McqComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 64); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../mcq-question/mcq-question.component */ 4443); -/* harmony import */ var _mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-option/mcq-option.component */ 1879); -/* harmony import */ var _quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../quml-popup/quml-popup.component */ 7921); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 90064); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../mcq-question/mcq-question.component */ 64443); +/* harmony import */ var _mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-option/mcq-option.component */ 51879); +/* harmony import */ var _quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../quml-popup/quml-popup.component */ 77921); @@ -90059,7 +101398,460 @@ class McqComponent { /***/ }), -/***/ 5989: +/***/ 88921: +/*!*********************************************************************!*\ + !*** ./projects/quml-library/src/lib/mtf/check-figure.directive.ts ***! + \*********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CheckFigureDirective: () => (/* binding */ CheckFigureDirective) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); + +class CheckFigureDirective { + constructor(el, renderer) { + this.el = el; + this.renderer = renderer; + } + ngAfterViewInit() { + this.checkForFigureTag(); + } + checkForFigureTag() { + const figureTag = this.el.nativeElement.querySelector('figure'); + const magnifyIcon = this.el.nativeElement.parentElement.querySelector('.zoom-icon'); + if (figureTag) { + this.renderer.setStyle(magnifyIcon, 'display', 'block'); + } else { + this.renderer.setStyle(magnifyIcon, 'display', 'none'); + } + } + static #_ = this.ɵfac = function CheckFigureDirective_Factory(t) { + return new (t || CheckFigureDirective)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.Renderer2)); + }; + static #_2 = this.ɵdir = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CheckFigureDirective, + selectors: [["", "appCheckFigure", ""]] + }); +} + +/***/ }), + +/***/ 71568: +/*!********************************************************************************!*\ + !*** ./projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.ts ***! + \********************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ MtfOptionsComponent: () => (/* binding */ MtfOptionsComponent) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 14734); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/cdk/drag-drop */ 17792); +/* harmony import */ var _check_figure_directive__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../check-figure.directive */ 88921); + + + + + + +function MtfOptionsComponent_ng_container_0_div_3_Template(rf, ctx) { + if (rf & 1) { + const _r7 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 7); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_0_div_3_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r7); + const ctx_r6 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r6.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r5 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r5.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_0_div_5_Template(rf, ctx) { + if (rf & 1) { + const _r11 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 10); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_0_div_5_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r11); + const ctx_r10 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r10.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r8 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("cdkDragData", option_r8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r8.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_0_div_6_Template(rf, ctx) { + if (rf & 1) { + const _r13 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "span", 13); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_0_div_6_Template_span_click_2_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r13); + const ctx_r12 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r12.closeModal()); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](3, "\u00D7"); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](4, "img", 14); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const ctx_r4 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("src", ctx_r4.selectedImageSrc, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeUrl"]); + } +} +function MtfOptionsComponent_ng_container_0_Template(rf, ctx) { + if (rf & 1) { + const _r15 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerStart"](0); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](1, "div", 1)(2, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](3, MtfOptionsComponent_ng_container_0_div_3_Template, 3, 1, "div", 3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](4, "div", 4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("cdkDropListDropped", function MtfOptionsComponent_ng_container_0_Template_div_cdkDropListDropped_4_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r15); + const ctx_r14 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r14.onDrop($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](5, MtfOptionsComponent_ng_container_0_div_5_Template, 3, 2, "div", 5); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](6, MtfOptionsComponent_ng_container_0_div_6_Template, 5, 1, "div", 6); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerEnd"](); + } + if (rf & 2) { + const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r0.shuffledOptions.left); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r0.shuffledOptions.right); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx_r0.isModalVisible); + } +} +function MtfOptionsComponent_ng_container_1_div_3_Template(rf, ctx) { + if (rf & 1) { + const _r22 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 20); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_1_div_3_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r22); + const ctx_r21 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r21.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r19 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r19.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_1_div_5_Template(rf, ctx) { + if (rf & 1) { + const _r26 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 21); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 22); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_1_div_5_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r26); + const ctx_r25 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r25.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r23 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("cdkDragData", option_r23); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r23.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_1_div_6_Template(rf, ctx) { + if (rf & 1) { + const _r28 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "span", 13); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_1_div_6_Template_span_click_2_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r28); + const ctx_r27 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r27.closeModal()); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](3, "\u00D7"); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](4, "img", 14); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const ctx_r18 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("src", ctx_r18.selectedImageSrc, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeUrl"]); + } +} +function MtfOptionsComponent_ng_container_1_Template(rf, ctx) { + if (rf & 1) { + const _r30 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerStart"](0); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](1, "div", 15)(2, "div", 16); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](3, MtfOptionsComponent_ng_container_1_div_3_Template, 3, 1, "div", 17); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](4, "div", 18); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("cdkDropListDropped", function MtfOptionsComponent_ng_container_1_Template_div_cdkDropListDropped_4_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r30); + const ctx_r29 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r29.onDrop($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](5, MtfOptionsComponent_ng_container_1_div_5_Template, 3, 2, "div", 19); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](6, MtfOptionsComponent_ng_container_1_div_6_Template, 5, 1, "div", 6); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerEnd"](); + } + if (rf & 2) { + const ctx_r1 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r1.shuffledOptions.left); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r1.shuffledOptions.right); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx_r1.isModalVisible); + } +} +class MtfOptionsComponent { + constructor() { + this.reorderedOptions = new _angular_core__WEBPACK_IMPORTED_MODULE_1__.EventEmitter(); + this.optionsShuffled = false; + this.isModalVisible = false; + this.selectedImageSrc = ''; + this.shuffledOptions = { + left: [], + right: [] + }; + } + ngOnInit() { + this.shuffleMTFOptions(); + } + ngOnChanges() { + if (this.replayed || this.tryAgain) { + this.shuffleMTFOptions(); + } + } + shuffleMTFOptions() { + const leftOptions = this.options.left; + const rightOptions = this.options.right; + /* Left options will be shuffled if the shuffleOptions configuration is set to true */ + let shuffledLeft = this.shuffleOptions ? this.shuffleAndCheck(leftOptions) : leftOptions; + /* Right options will always be shuffled */ + let shuffledRight = this.shuffleAndCheck(rightOptions); + /* Ensure that the shuffled lists do not contain matching pairs */ + while (shuffledLeft.some((item, index) => item.value === shuffledRight[index].value)) { + shuffledRight = this.shuffleAndCheck(rightOptions); + } + this.shuffledOptions = { + left: shuffledLeft, + right: shuffledRight + }; + this.optionsShuffled = true; + } + shuffleAndCheck(array) { + let shuffledArray; + while (true) { + shuffledArray = lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](array); + if (shuffledArray.every((item, index) => item.value !== index)) { + break; + } + } + return shuffledArray; + } + onDrop(event) { + const droppedItem = event.item.data; + const currentIndex = this.shuffledOptions.right.indexOf(droppedItem); + const targetIndex = event.currentIndex; + this.swapRightOptions(currentIndex, targetIndex); + this.reorderedOptions.emit(this.shuffledOptions); + } + swapRightOptions(index1, index2) { + [this.shuffledOptions.right[index1], this.shuffledOptions.right[index2]] = [this.shuffledOptions.right[index2], this.shuffledOptions.right[index1]]; + } + openModal(event) { + const parentDiv = event.target.parentElement; + const figure = parentDiv.querySelector('figure'); + if (figure) { + const img = figure.querySelector('img'); + if (img) { + this.selectedImageSrc = img.src; + this.isModalVisible = true; + } + } + } + closeModal() { + this.isModalVisible = false; + } + static #_ = this.ɵfac = function MtfOptionsComponent_Factory(t) { + return new (t || MtfOptionsComponent)(); + }; + static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineComponent"]({ + type: MtfOptionsComponent, + selectors: [["quml-mtf-options"]], + inputs: { + options: "options", + layout: "layout", + shuffleOptions: "shuffleOptions", + replayed: "replayed", + tryAgain: "tryAgain" + }, + outputs: { + reorderedOptions: "reorderedOptions" + }, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵNgOnChangesFeature"]], + decls: 2, + vars: 2, + consts: [[4, "ngIf"], [1, "main-div"], ["id", "leftSide"], ["class", "bubble-right", 4, "ngFor", "ngForOf"], ["id", "rightSide", "cdkDropList", "", 3, "cdkDropListDropped"], ["class", "bubble-left", "cdkDrag", "", "cdkDragBoundary", "#rightSide", 3, "cdkDragData", 4, "ngFor", "ngForOf"], ["class", "mft-modal modal", 4, "ngIf"], [1, "bubble-right"], ["appCheckFigure", "", 3, "innerHTML"], [1, "zoom-icon", 3, "click"], ["cdkDrag", "", "cdkDragBoundary", "#rightSide", 1, "bubble-left", 3, "cdkDragData"], [1, "mft-modal", "modal"], [1, "modal-content"], [1, "modal-close", 3, "click"], [3, "src"], [1, "horizontal-main"], ["id", "topSide"], ["class", "bubble-bottom", 4, "ngFor", "ngForOf"], ["id", "bottomSide", "cdkDropList", "", "cdkDropListOrientation", "horizontal", 3, "cdkDropListDropped"], ["class", "bubble-top", "cdkDrag", "", 3, "cdkDragData", 4, "ngFor", "ngForOf"], [1, "bubble-bottom"], ["cdkDrag", "", 1, "bubble-top", 3, "cdkDragData"], ["cdkDragBoundary", "#bottomSide", "appCheckFigure", "", 3, "innerHTML"]], + template: function MtfOptionsComponent_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](0, MtfOptionsComponent_ng_container_0_Template, 7, 3, "ng-container", 0); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](1, MtfOptionsComponent_ng_container_1_Template, 7, 3, "ng-container", 0); + } + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx.optionsShuffled && (ctx.layout === "VERTICAL" || ctx.layout === "DEFAULT")); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx.optionsShuffled && ctx.layout === "HORIZONTAL"); + } + }, + dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_3__.NgForOf, _angular_common__WEBPACK_IMPORTED_MODULE_3__.NgIf, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_4__.CdkDropList, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_4__.CdkDrag, _check_figure_directive__WEBPACK_IMPORTED_MODULE_0__.CheckFigureDirective], + styles: [".main-div[_ngcontent-%COMP%] {\n background: #eee;\n display: flex;\n width: 100%;\n padding: 2%;\n}\n\n#leftSide[_ngcontent-%COMP%] {\n flex-basis: 50%;\n}\n\n .main-div figure.image img, .horizontal-main figure.image img {\n width: 120px;\n height: 80px;\n object-fit: contain;\n}\n\n .main-div figure {\n margin: 0 0 0rem;\n}\n\n#rightSide[_ngcontent-%COMP%] {\n flex-basis: 50%;\n}\n\n.horizontal-main[_ngcontent-%COMP%] {\n background: #eee;\n width: 100%;\n padding: 20px;\n flex-wrap: wrap;\n justify-content: space-between;\n}\n\n#topSide[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: row;\n overflow: hidden;\n}\n\n#bottomSide[_ngcontent-%COMP%] {\n min-height: 60px;\n display: flex;\n flex-direction: row;\n margin-top: -3%;\n}\n\n.cdk-drag-preview[_ngcontent-%COMP%] {\n box-sizing: border-box;\n border-radius: 4px;\n}\n\n.cdk-drag-placeholder[_ngcontent-%COMP%] {\n opacity: 0;\n}\n\n.cdk-drag-animating[_ngcontent-%COMP%] {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n#bottomSide[_ngcontent-%COMP%] .cdk-drag-preview[_ngcontent-%COMP%] {\n box-sizing: border-box;\n border-radius: 4px;\n}\n\n#bottomSide[_ngcontent-%COMP%] .cdk-drag-placeholder[_ngcontent-%COMP%] {\n opacity: 0;\n}\n\n#bottomSide[_ngcontent-%COMP%] .cdk-drag-animating[_ngcontent-%COMP%] {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.bubble-left[_ngcontent-%COMP%] {\n margin-left: 10px;\n padding: 50px;\n --size: 150px;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n border-radius: 10px;\n width: 100%;\n margin-bottom: 20px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n z-index: 1;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.bubble-left[_ngcontent-%COMP%]:before {\n content: \"\";\n position: absolute;\n left: 0;\n top: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-right-color: #fff;\n border-left: 0;\n margin-top: calc(var(--size) * 0.13 * -1);\n margin-left: calc(var(--size) * 0.13 * -1);\n}\n\n.bubble-right[_ngcontent-%COMP%] {\n --size: 150px;\n padding: 50px;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n cursor: not-allowed;\n border-radius: 10px;\n width: 100%;\n margin-bottom: 20px;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n -webkit-clip-path: polygon(100% 0, 100% 32%, 96% 51%, 100% 72%, 100% 100%, 50% 100%, 21% 100%, 0 100%, 0 0, 41% 0);\n clip-path: polygon(100% 0, 100% 32%, 96% 51%, 100% 72%, 100% 100%, 50% 100%, 21% 100%, 0 100%, 0 0, 41% 0);\n z-index: 1;\n}\n\n.bubble-right[_ngcontent-%COMP%]:before {\n content: \"\";\n position: absolute;\n right: 0;\n top: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-left-color: #fff;\n border-right: 0;\n margin-top: calc(var(--size) * 0.13 * -1);\n margin-right: calc(var(--size) * 0.13 * -1);\n}\n\n.bubble-bottom[_ngcontent-%COMP%] {\n margin: 10px;\n --size: 200px;\n margin-bottom: 30px;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n cursor: not-allowed;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n border-radius: 10px;\n width: 92%;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n z-index: 1;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n margin-bottom: 30px;\n -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 61% 100%, 50% 79%, 39% 100%, 0 100%, 0 0);\n clip-path: polygon(50% 0%, 100% 0, 100% 100%, 61% 100%, 50% 79%, 39% 100%, 0 100%, 0 0);\n}\n\n.bubble-bottom[_ngcontent-%COMP%]:after {\n content: \"\";\n position: absolute;\n bottom: 0;\n left: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-top-color: #fff;\n border-bottom: 0;\n margin-left: calc(var(--size) * 0.13 * -1);\n margin-bottom: calc(var(--size) * 0.13 * -1);\n}\n\n.bubble-top[_ngcontent-%COMP%] {\n cursor: move;\n margin: 10px;\n --size: 200px;\n margin-top: 2%;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n border-radius: 10px;\n width: 92%;\n margin-bottom: 10px;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n z-index: 1;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.bubble-top[_ngcontent-%COMP%]:after {\n content: \"\";\n position: absolute;\n top: 0;\n left: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-bottom-color: #fff;\n border-top: 0;\n margin-left: calc(var(--size) * 0.13 * -1);\n margin-top: calc(var(--size) * 0.13 * -1);\n}\n\n.zoom-icon[_ngcontent-%COMP%] {\n position: absolute;\n right: 0;\n bottom: 0;\n width: 1.5rem;\n height: 1.5rem;\n border-top-left-radius: 0.5rem;\n cursor: pointer;\n background-color: var(--quml-color-primary-contrast);\n}\n\n.zoom-icon[_ngcontent-%COMP%]::after {\n content: \"\";\n position: absolute;\n bottom: 0.125rem;\n right: 0.125rem;\n z-index: 1;\n width: 1rem;\n height: 1rem;\n background-image: url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n\n.mft-modal.modal[_ngcontent-%COMP%] {\n display: flex;\n position: fixed;\n z-index: 1;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n overflow: auto;\n background-color: rgba(0, 0, 0, 0.9);\n justify-content: center;\n align-items: center;\n}\n\n.mft-modal.modal.modal-content[_ngcontent-%COMP%] {\n position: relative;\n max-width: 90%;\n max-height: 90%;\n}\n\n.modal-close[_ngcontent-%COMP%] {\n position: absolute;\n top: 10px;\n right: 25px;\n color: #fff;\n font-size: 35px;\n font-weight: bold;\n cursor: pointer;\n}\n\n@media screen and (max-width: 768px) {\n .main-div p {\n font-size: 12px;\n line-height: 20px;\n margin-bottom: 0px;\n }\n .horizontal-main p {\n font-size: 11px;\n line-height: 16px;\n margin-bottom: 0;\n }\n .horizontal-main[_ngcontent-%COMP%] {\n padding: 0px;\n }\n .bubble-right[_ngcontent-%COMP%] {\n padding: 0px;\n }\n .bubble-left[_ngcontent-%COMP%] {\n padding: 0px;\n }\n .bubble-bottom[_ngcontent-%COMP%] {\n margin: 10px 2px 20px;\n }\n .bubble-top[_ngcontent-%COMP%] {\n margin: 2% 2px 4px;\n }\n .main-div figure.image img, .horizontal-main figure.image img {\n width: 70px;\n height: 70px;\n object-fit: contain;\n }\n}\n@media screen and (min-width: 1200px) {\n .main-div p {\n font-size: 16px;\n line-height: 25px;\n margin-bottom: 0px;\n }\n .horizontal-main p {\n font-size: 16px;\n line-height: 25px;\n margin-bottom: 0px;\n }\n .mft-modal[_ngcontent-%COMP%] .modal-content[_ngcontent-%COMP%] img[_ngcontent-%COMP%] {\n width: 900px;\n height: 300px;\n object-fit: contain;\n }\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL210Zi9tdGYtb3B0aW9ucy9tdGYtb3B0aW9ucy5jb21wb25lbnQuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLGdCQUFBO0VBQ0EsYUFBQTtFQUNBLFdBQUE7RUFDQSxXQUFBO0FBQ0Y7O0FBRUE7RUFDRSxlQUFBO0FBQ0Y7O0FBRUE7O0VBRUUsWUFBQTtFQUNBLFlBQUE7RUFDQSxtQkFBQTtBQUNGOztBQUVBO0VBRUUsZ0JBQUE7QUFBRjs7QUFFQTtFQUNFLGVBQUE7QUFDRjs7QUFFQTtFQUNFLGdCQUFBO0VBQ0EsV0FBQTtFQUNBLGFBQUE7RUFDQSxlQUFBO0VBQ0EsOEJBQUE7QUFDRjs7QUFFQTtFQUNFLGFBQUE7RUFDQSxtQkFBQTtFQUNBLGdCQUFBO0FBQ0Y7O0FBRUE7RUFDRSxnQkFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QUFDRjs7QUFFQTtFQUNFLHNCQUFBO0VBQ0Esa0JBQUE7QUFDRjs7QUFFQTtFQUNFLFVBQUE7QUFDRjs7QUFFQTtFQUNFLHNEQUFBO0FBQ0Y7O0FBR0E7RUFDRSxzQkFBQTtFQUNBLGtCQUFBO0FBQUY7O0FBR0E7RUFDRSxVQUFBO0FBQUY7O0FBR0E7RUFDRSxzREFBQTtBQUFGOztBQUtBO0VBQ0UsaUJBQUE7RUFDQSxhQUFBO0VBQ0EsYUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0EsV0FBQTtFQUNBLG1CQUFBO0VBQ0Esc0JBQUE7RUFDQSwwQkFBQTtFQUNBLFlBQUE7RUFDQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsVUFBQTtFQUNBLCtHQUFBO0FBRkY7O0FBS0E7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxPQUFBO0VBQ0EsUUFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0Esa0RBQUE7RUFDQSx3QkFBQTtFQUNBLGNBQUE7RUFDQSx5Q0FBQTtFQUNBLDBDQUFBO0FBRkY7O0FBS0E7RUFDRSxhQUFBO0VBQ0EsYUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7RUFDQSxXQUFBO0VBQ0EsbUJBQUE7RUFDQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsK0dBQUE7RUFDQSxrSEFBQTtVQUFBLDBHQUFBO0VBQ0EsVUFBQTtBQUZGOztBQUtBO0VBQ0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFFBQUE7RUFDQSxRQUFBO0VBQ0EsU0FBQTtFQUNBLGtEQUFBO0VBQ0EsdUJBQUE7RUFDQSxlQUFBO0VBQ0EseUNBQUE7RUFDQSwyQ0FBQTtBQUZGOztBQUtBO0VBQ0UsWUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0EsVUFBQTtFQUNBLG9CQUFBO0VBQ0EsdUJBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxVQUFBO0VBQ0EsK0dBQUE7RUFDQSxtQkFBQTtFQUNBLCtGQUFBO1VBQUEsdUZBQUE7QUFGRjs7QUFLQTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLFNBQUE7RUFDQSxTQUFBO0VBQ0EsUUFBQTtFQUNBLFNBQUE7RUFDQSxrREFBQTtFQUNBLHNCQUFBO0VBQ0EsZ0JBQUE7RUFDQSwwQ0FBQTtFQUNBLDRDQUFBO0FBRkY7O0FBS0E7RUFDRSxZQUFBO0VBQ0EsWUFBQTtFQUNBLGFBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSxrQkFBQTtFQUNBLGdDQUFBO0VBQ0EsbUJBQUE7RUFDQSxVQUFBO0VBQ0EsbUJBQUE7RUFDQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsVUFBQTtFQUNBLCtHQUFBO0FBRkY7O0FBS0E7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxNQUFBO0VBQ0EsU0FBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0Esa0RBQUE7RUFDQSx5QkFBQTtFQUNBLGFBQUE7RUFDQSwwQ0FBQTtFQUNBLHlDQUFBO0FBRkY7O0FBS0E7RUFDRSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSw4QkFBQTtFQUNBLGVBQUE7RUFDQSxvREFBQTtBQUZGOztBQUtBO0VBQ0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EsdzREQUFBO0VBQ0Esc0JBQUE7RUFDQSw0QkFBQTtFQUNBLDJCQUFBO0FBRkY7O0FBS0E7RUFDRSxhQUFBO0VBQ0EsZUFBQTtFQUNBLFVBQUE7RUFDQSxPQUFBO0VBQ0EsTUFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EsY0FBQTtFQUNBLG9DQUFBO0VBQ0EsdUJBQUE7RUFDQSxtQkFBQTtBQUZGOztBQUtBO0VBQ0Usa0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtBQUZGOztBQUtBO0VBQ0Usa0JBQUE7RUFDQSxTQUFBO0VBQ0EsV0FBQTtFQUNBLFdBQUE7RUFDQSxlQUFBO0VBQ0EsaUJBQUE7RUFDQSxlQUFBO0FBRkY7O0FBS0E7RUFDRTtJQUNFLGVBQUE7SUFDQSxpQkFBQTtJQUNBLGtCQUFBO0VBRkY7RUFLQTtJQUNFLGVBQUE7SUFDQSxpQkFBQTtJQUNBLGdCQUFBO0VBSEY7RUFNQTtJQUNFLFlBQUE7RUFKRjtFQU9BO0lBQ0UsWUFBQTtFQUxGO0VBUUE7SUFDRSxZQUFBO0VBTkY7RUFTQTtJQUNFLHFCQUFBO0VBUEY7RUFVQTtJQUNFLGtCQUFBO0VBUkY7RUFXQTs7SUFFRSxXQUFBO0lBQ0EsWUFBQTtJQUNBLG1CQUFBO0VBVEY7QUFDRjtBQVlBO0VBQ0U7SUFDRSxlQUFBO0lBQ0EsaUJBQUE7SUFDQSxrQkFBQTtFQVZGO0VBYUE7SUFDRSxlQUFBO0lBQ0EsaUJBQUE7SUFDQSxrQkFBQTtFQVhGO0VBY0E7SUFDRSxZQUFBO0lBQ0EsYUFBQTtJQUNBLG1CQUFBO0VBWkY7QUFDRiIsInNvdXJjZXNDb250ZW50IjpbIi5tYWluLWRpdiB7XG4gIGJhY2tncm91bmQ6ICNlZWU7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIHdpZHRoOiAxMDAlO1xuICBwYWRkaW5nOiAyJTtcbn1cblxuI2xlZnRTaWRlIHtcbiAgZmxleC1iYXNpczogNTAlO1xufVxuXG46Om5nLWRlZXAgLm1haW4tZGl2IGZpZ3VyZS5pbWFnZSBpbWcsXG46Om5nLWRlZXAgLmhvcml6b250YWwtbWFpbiBmaWd1cmUuaW1hZ2UgaW1nIHtcbiAgd2lkdGg6IDEyMHB4O1xuICBoZWlnaHQ6IDgwcHg7XG4gIG9iamVjdC1maXQ6IGNvbnRhaW47XG59XG5cbjo6bmctZGVlcCAubWFpbi1kaXYgZmlndXJlXG57XG4gIG1hcmdpbjogMCAwIDByZW07XG59XG4jcmlnaHRTaWRlIHtcbiAgZmxleC1iYXNpczogNTAlO1xufVxuXG4uaG9yaXpvbnRhbC1tYWluIHtcbiAgYmFja2dyb3VuZDogI2VlZTtcbiAgd2lkdGg6IDEwMCU7XG4gIHBhZGRpbmc6IDIwcHg7XG4gIGZsZXgtd3JhcDogd3JhcDtcbiAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xufVxuXG4jdG9wU2lkZSB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiByb3c7XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbiNib3R0b21TaWRlIHtcbiAgbWluLWhlaWdodDogNjBweDtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IHJvdztcbiAgbWFyZ2luLXRvcDogLTMlO1xufVxuXG4uY2RrLWRyYWctcHJldmlldyB7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cblxuLmNkay1kcmFnLXBsYWNlaG9sZGVyIHtcbiAgb3BhY2l0eTogMDtcbn1cblxuLmNkay1kcmFnLWFuaW1hdGluZyB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAyNTBtcyBjdWJpYy1iZXppZXIoMCwgMCwgMC4yLCAxKTtcbn1cblxuXG4jYm90dG9tU2lkZSAuY2RrLWRyYWctcHJldmlldyB7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cblxuI2JvdHRvbVNpZGUgLmNkay1kcmFnLXBsYWNlaG9sZGVyIHtcbiAgb3BhY2l0eTogMDtcbn1cblxuI2JvdHRvbVNpZGUgLmNkay1kcmFnLWFuaW1hdGluZyB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAyNTBtcyBjdWJpYy1iZXppZXIoMCwgMCwgMC4yLCAxKTtcbn1cblxuXG4vL3VpIGNoYW5nZXNcbi5idWJibGUtbGVmdCB7XG4gIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICBwYWRkaW5nOiA1MHB4O1xuICAtLXNpemU6IDE1MHB4O1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHdpZHRoOiB2YXIoLS1zaXplKTtcbiAgaGVpZ2h0OiBjYWxjKHZhcigtLXNpemUpICogMC42Nik7XG4gIGJvcmRlci1yYWRpdXM6IDEwcHg7XG4gIHdpZHRoOiAxMDAlO1xuICBtYXJnaW4tYm90dG9tOiAyMHB4O1xuICBib3JkZXI6IHNvbGlkIDFweCAjY2NjO1xuICBjb2xvcjogcmdiYSgwLCAwLCAwLCAwLjg3KTtcbiAgY3Vyc29yOiBtb3ZlO1xuICBkaXNwbGF5OiBpbmxpbmUtZmxleDtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgYmFja2dyb3VuZDogI2ZmZjtcbiAgei1pbmRleDogMTtcbiAgYm94LXNoYWRvdzogMCAzcHggMXB4IC0ycHggcmdiYSgwLCAwLCAwLCAwLjIpLCAwIDJweCAycHggMCByZ2JhKDAsIDAsIDAsIDAuMTQpLCAwIDFweCA1cHggMCByZ2JhKDAsIDAsIDAsIDAuMTIpO1xufVxuXG4uYnViYmxlLWxlZnQ6YmVmb3JlIHtcbiAgY29udGVudDogJyc7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgdG9wOiA1MCU7XG4gIHdpZHRoOiAwO1xuICBoZWlnaHQ6IDA7XG4gIGJvcmRlcjogY2FsYyh2YXIoLS1zaXplKSAqIDAuMTMpIHNvbGlkIHRyYW5zcGFyZW50O1xuICBib3JkZXItcmlnaHQtY29sb3I6ICNmZmY7XG4gIGJvcmRlci1sZWZ0OiAwO1xuICBtYXJnaW4tdG9wOiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbiAgbWFyZ2luLWxlZnQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjEzICogLTEpO1xufVxuXG4uYnViYmxlLXJpZ2h0IHtcbiAgLS1zaXplOiAxNTBweDtcbiAgcGFkZGluZzogNTBweDtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICB3aWR0aDogdmFyKC0tc2l6ZSk7XG4gIGhlaWdodDogY2FsYyh2YXIoLS1zaXplKSAqIDAuNjYpO1xuICBjdXJzb3I6IG5vdC1hbGxvd2VkO1xuICBib3JkZXItcmFkaXVzOiAxMHB4O1xuICB3aWR0aDogMTAwJTtcbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcbiAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIGJveC1zaGFkb3c6IDAgM3B4IDFweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4yKSwgMCAycHggMnB4IDAgcmdiYSgwLCAwLCAwLCAwLjE0KSwgMCAxcHggNXB4IDAgcmdiYSgwLCAwLCAwLCAwLjEyKTtcbiAgY2xpcC1wYXRoOiBwb2x5Z29uKDEwMCUgMCwgMTAwJSAzMiUsIDk2JSA1MSUsIDEwMCUgNzIlLCAxMDAlIDEwMCUsIDUwJSAxMDAlLCAyMSUgMTAwJSwgMCAxMDAlLCAwIDAsIDQxJSAwKTtcbiAgei1pbmRleDogMTtcbn1cblxuLmJ1YmJsZS1yaWdodDpiZWZvcmUge1xuICBjb250ZW50OiAnJztcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICByaWdodDogMDtcbiAgdG9wOiA1MCU7XG4gIHdpZHRoOiAwO1xuICBoZWlnaHQ6IDA7XG4gIGJvcmRlcjogY2FsYyh2YXIoLS1zaXplKSAqIDAuMTMpIHNvbGlkIHRyYW5zcGFyZW50O1xuICBib3JkZXItbGVmdC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyLXJpZ2h0OiAwO1xuICBtYXJnaW4tdG9wOiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbiAgbWFyZ2luLXJpZ2h0OiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbn1cblxuLmJ1YmJsZS1ib3R0b20ge1xuICBtYXJnaW46IDEwcHg7XG4gIC0tc2l6ZTogMjAwcHg7XG4gIG1hcmdpbi1ib3R0b206IDMwcHg7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgd2lkdGg6IHZhcigtLXNpemUpO1xuICBoZWlnaHQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjY2KTtcbiAgY3Vyc29yOiBub3QtYWxsb3dlZDtcbiAgd2lkdGg6IHZhcigtLXNpemUpO1xuICBoZWlnaHQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjY2KTtcbiAgYm9yZGVyLXJhZGl1czogMTBweDtcbiAgd2lkdGg6IDkyJTtcbiAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIHotaW5kZXg6IDE7XG4gIGJveC1zaGFkb3c6IDAgM3B4IDFweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4yKSwgMCAycHggMnB4IDAgcmdiYSgwLCAwLCAwLCAwLjE0KSwgMCAxcHggNXB4IDAgcmdiYSgwLCAwLCAwLCAwLjEyKTtcbiAgbWFyZ2luLWJvdHRvbTogMzBweDtcbiAgY2xpcC1wYXRoOiBwb2x5Z29uKDUwJSAwJSwgMTAwJSAwLCAxMDAlIDEwMCUsIDYxJSAxMDAlLCA1MCUgNzklLCAzOSUgMTAwJSwgMCAxMDAlLCAwIDApO1xufVxuXG4uYnViYmxlLWJvdHRvbTphZnRlciB7XG4gIGNvbnRlbnQ6ICcnO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGJvdHRvbTogMDtcbiAgbGVmdDogNTAlO1xuICB3aWR0aDogMDtcbiAgaGVpZ2h0OiAwO1xuICBib3JkZXI6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjEzKSBzb2xpZCB0cmFuc3BhcmVudDtcbiAgYm9yZGVyLXRvcC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyLWJvdHRvbTogMDtcbiAgbWFyZ2luLWxlZnQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjEzICogLTEpO1xuICBtYXJnaW4tYm90dG9tOiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbn1cblxuLmJ1YmJsZS10b3Age1xuICBjdXJzb3I6IG1vdmU7XG4gIG1hcmdpbjogMTBweDtcbiAgLS1zaXplOiAyMDBweDtcbiAgbWFyZ2luLXRvcDogMiU7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgd2lkdGg6IHZhcigtLXNpemUpO1xuICBoZWlnaHQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjY2KTtcbiAgYm9yZGVyLXJhZGl1czogMTBweDtcbiAgd2lkdGg6IDkyJTtcbiAgbWFyZ2luLWJvdHRvbTogMTBweDtcbiAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIHotaW5kZXg6IDE7XG4gIGJveC1zaGFkb3c6IDAgM3B4IDFweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4yKSwgMCAycHggMnB4IDAgcmdiYSgwLCAwLCAwLCAwLjE0KSwgMCAxcHggNXB4IDAgcmdiYSgwLCAwLCAwLCAwLjEyKTtcbn1cblxuLmJ1YmJsZS10b3A6YWZ0ZXIge1xuICBjb250ZW50OiAnJztcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB0b3A6IDA7XG4gIGxlZnQ6IDUwJTtcbiAgd2lkdGg6IDA7XG4gIGhlaWdodDogMDtcbiAgYm9yZGVyOiBjYWxjKHZhcigtLXNpemUpICogMC4xMykgc29saWQgdHJhbnNwYXJlbnQ7XG4gIGJvcmRlci1ib3R0b20tY29sb3I6ICNmZmY7XG4gIGJvcmRlci10b3A6IDA7XG4gIG1hcmdpbi1sZWZ0OiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbiAgbWFyZ2luLXRvcDogY2FsYyh2YXIoLS1zaXplKSAqIDAuMTMgKiAtMSk7XG59XG5cbi56b29tLWljb24ge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHJpZ2h0OiAwO1xuICBib3R0b206IDA7XG4gIHdpZHRoOiAxLjVyZW07XG4gIGhlaWdodDogMS41cmVtO1xuICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAwLjVyZW07XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0KTtcbn1cblxuLnpvb20taWNvbjo6YWZ0ZXIge1xuICBjb250ZW50OiBcIlwiO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGJvdHRvbTogMC4xMjVyZW07XG4gIHJpZ2h0OiAwLjEyNXJlbTtcbiAgei1pbmRleDogMTtcbiAgd2lkdGg6IDFyZW07XG4gIGhlaWdodDogMXJlbTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKFwiZGF0YTppbWFnZS9zdmcreG1sLCUzQyUzRnhtbCB2ZXJzaW9uPScxLjAnJTNGJTNFJTNDc3ZnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZycgeG1sbnM6eGxpbms9J2h0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsnIHhtbG5zOnN2Z2pzPSdodHRwOi8vc3ZnanMuY29tL3N2Z2pzJyB2ZXJzaW9uPScxLjEnIHdpZHRoPSc1MTInIGhlaWdodD0nNTEyJyB4PScwJyB5PScwJyB2aWV3Qm94PScwIDAgMzcuMTY2IDM3LjE2Nicgc3R5bGU9J2VuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMicgeG1sOnNwYWNlPSdwcmVzZXJ2ZScgY2xhc3M9JyclM0UlM0NnJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDcGF0aCBkPSdNMzUuODI5LDMyLjA0NWwtNi44MzMtNi44MzNjLTAuNTEzLTAuNTEzLTEuMTY3LTAuNzg4LTEuODM2LTAuODUzYzIuMDYtMi41NjcsMy4yOTgtNS44MTksMy4yOTgtOS4zNTkgYzAtOC4yNzEtNi43MjktMTUtMTUtMTVjLTguMjcxLDAtMTUsNi43MjktMTUsMTVjMCw4LjI3MSw2LjcyOSwxNSwxNSwxNWMzLjEyMSwwLDYuMDIxLTAuOTYsOC40MjQtMi41OTggYzAuMDE4LDAuNzQ0LDAuMzA1LDEuNDgyLDAuODcyLDIuMDUybDYuODMzLDYuODMzYzAuNTg1LDAuNTg2LDEuMzU0LDAuODc5LDIuMTIxLDAuODc5czEuNTM2LTAuMjkzLDIuMTIxLTAuODc5IEMzNy4wMDEsMzUuMTE2LDM3LjAwMSwzMy4yMTcsMzUuODI5LDMyLjA0NXogTTE1LjQ1OCwyNWMtNS41MTQsMC0xMC00LjQ4NC0xMC0xMGMwLTUuNTE0LDQuNDg2LTEwLDEwLTEwYzUuNTE0LDAsMTAsNC40ODYsMTAsMTAgQzI1LjQ1OCwyMC41MTYsMjAuOTcyLDI1LDE1LjQ1OCwyNXogTTIyLjMzNCwxNWMwLDEuMTA0LTAuODk2LDItMiwyaC0yLjc1djIuNzVjMCwxLjEwNC0wLjg5NiwyLTIsMnMtMi0wLjg5Ni0yLTJWMTdoLTIuNzUgYy0xLjEwNCwwLTItMC44OTYtMi0yczAuODk2LTIsMi0yaDIuNzV2LTIuNzVjMC0xLjEwNCwwLjg5Ni0yLDItMnMyLDAuODk2LDIsMlYxM2gyLjc1QzIxLjQzOCwxMywyMi4zMzQsMTMuODk1LDIyLjMzNCwxNXonIGZpbGw9JyUyM2ZmZmZmZicgZGF0YS1vcmlnaW5hbD0nJTIzMDAwMDAwJyBzdHlsZT0nJyBjbGFzcz0nJy8lM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQy9nJTNFJTNDL3N2ZyUzRSUwQVwiKTtcbiAgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjtcbiAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyO1xufVxuXG4ubWZ0LW1vZGFsLm1vZGFsIHtcbiAgZGlzcGxheTogZmxleDtcbiAgcG9zaXRpb246IGZpeGVkO1xuICB6LWluZGV4OiAxO1xuICBsZWZ0OiAwO1xuICB0b3A6IDA7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIG92ZXJmbG93OiBhdXRvO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuOSk7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xufVxuXG4ubWZ0LW1vZGFsLm1vZGFsLm1vZGFsLWNvbnRlbnQge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIG1heC13aWR0aDogOTAlO1xuICBtYXgtaGVpZ2h0OiA5MCU7XG59XG5cbi5tb2RhbC1jbG9zZSB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAxMHB4O1xuICByaWdodDogMjVweDtcbiAgY29sb3I6ICNmZmY7XG4gIGZvbnQtc2l6ZTogMzVweDtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIGN1cnNvcjogcG9pbnRlcjtcbn1cblxuQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgOjpuZy1kZWVwLm1haW4tZGl2IHAge1xuICAgIGZvbnQtc2l6ZTogMTJweDtcbiAgICBsaW5lLWhlaWdodDogMjBweDtcbiAgICBtYXJnaW4tYm90dG9tOiAwcHg7XG4gIH1cblxuICA6Om5nLWRlZXAuaG9yaXpvbnRhbC1tYWluIHAge1xuICAgIGZvbnQtc2l6ZTogMTFweDtcbiAgICBsaW5lLWhlaWdodDogMTZweDtcbiAgICBtYXJnaW4tYm90dG9tOiAwO1xuICB9XG5cbiAgLmhvcml6b250YWwtbWFpbiB7XG4gICAgcGFkZGluZzogMHB4O1xuICB9XG5cbiAgLmJ1YmJsZS1yaWdodCB7XG4gICAgcGFkZGluZzogMHB4O1xuICB9XG5cbiAgLmJ1YmJsZS1sZWZ0IHtcbiAgICBwYWRkaW5nOiAwcHg7XG4gIH1cblxuICAuYnViYmxlLWJvdHRvbSB7XG4gICAgbWFyZ2luOiAxMHB4IDJweCAyMHB4O1xuICB9XG5cbiAgLmJ1YmJsZS10b3Age1xuICAgIG1hcmdpbjogMiUgMnB4IDRweDtcbiAgfVxuXG4gIDo6bmctZGVlcCAubWFpbi1kaXYgZmlndXJlLmltYWdlIGltZyxcbiAgOjpuZy1kZWVwIC5ob3Jpem9udGFsLW1haW4gZmlndXJlLmltYWdlIGltZyB7XG4gICAgd2lkdGg6IDcwcHg7XG4gICAgaGVpZ2h0OiA3MHB4O1xuICAgIG9iamVjdC1maXQ6IGNvbnRhaW47XG4gIH1cbn1cblxuQG1lZGlhIHNjcmVlbiBhbmQgKG1pbi13aWR0aDogMTIwMHB4KSB7XG4gIDo6bmctZGVlcC5tYWluLWRpdiBwIHtcbiAgICBmb250LXNpemU6IDE2cHg7XG4gICAgbGluZS1oZWlnaHQ6IDI1cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICB9XG5cbiAgOjpuZy1kZWVwLmhvcml6b250YWwtbWFpbiBwIHtcbiAgICBmb250LXNpemU6IDE2cHg7XG4gICAgbGluZS1oZWlnaHQ6IDI1cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICB9XG5cbiAgLm1mdC1tb2RhbCAubW9kYWwtY29udGVudCBpbWcge1xuICAgIHdpZHRoOiA5MDBweDtcbiAgICBoZWlnaHQ6IDMwMHB4O1xuICAgIG9iamVjdC1maXQ6IGNvbnRhaW47XG4gIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */"] + }); +} + +/***/ }), + +/***/ 30960: +/*!************************************************************!*\ + !*** ./projects/quml-library/src/lib/mtf/mtf.component.ts ***! + \************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ MtfComponent: () => (/* binding */ MtfComponent) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mtf-options/mtf-options.component */ 71568); + + + + +function MtfComponent_div_0_quml_mtf_options_3_Template(rf, ctx) { + if (rf & 1) { + const _r3 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "quml-mtf-options", 5); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("reorderedOptions", function MtfComponent_div_0_quml_mtf_options_3_Template_quml_mtf_options_reorderedOptions_0_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r3); + const ctx_r2 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r2.handleReorderedOptions($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + } + if (rf & 2) { + const ctx_r1 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("shuffleOptions", ctx_r1.shuffleOptions)("replayed", ctx_r1.replayed)("tryAgain", ctx_r1.tryAgain)("options", ctx_r1.interactions.response1.options)("layout", ctx_r1.layout); + } +} +function MtfComponent_div_0_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 1)(1, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](2, "p", 3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](3, MtfComponent_div_0_quml_mtf_options_3_Template, 1, 5, "quml-mtf-options", 4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + } + if (rf & 2) { + const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", ctx_r0.questionBody, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx_r0.interactions == null ? null : ctx_r0.interactions.response1 == null ? null : ctx_r0.interactions.response1.options); + } +} +class MtfComponent { + constructor() { + this.optionsReordered = new _angular_core__WEBPACK_IMPORTED_MODULE_1__.EventEmitter(); + } + ngOnInit() { + this.initialize(); + } + initialize() { + this.setLayout(); + this.interactions = this.question?.interactions; + this.questionBody = this.question?.body; + } + setLayout() { + const templateId = this.question?.templateId; + if (templateId === 'mtf-vertical') { + this.layout = 'VERTICAL'; + } else if (templateId === 'mtf-horizontal') { + this.layout = 'HORIZONTAL'; + } else { + console.error('Invalid or undefined templateId'); + this.layout = 'DEFAULT'; + } + } + handleReorderedOptions(reorderedOptions) { + this.optionsReordered.emit(reorderedOptions); + } + static #_ = this.ɵfac = function MtfComponent_Factory(t) { + return new (t || MtfComponent)(); + }; + static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineComponent"]({ + type: MtfComponent, + selectors: [["quml-mtf"]], + inputs: { + question: "question", + shuffleOptions: "shuffleOptions", + replayed: "replayed", + tryAgain: "tryAgain" + }, + outputs: { + optionsReordered: "optionsReordered" + }, + decls: 1, + vars: 1, + consts: [["class", "question-body", 4, "ngIf"], [1, "question-body"], [1, "mtf-title"], [3, "innerHTML"], [3, "shuffleOptions", "replayed", "tryAgain", "options", "layout", "reorderedOptions", 4, "ngIf"], [3, "shuffleOptions", "replayed", "tryAgain", "options", "layout", "reorderedOptions"]], + template: function MtfComponent_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](0, MtfComponent_div_0_Template, 4, 2, "div", 0); + } + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx.questionBody); + } + }, + dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_2__.NgIf, _mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_0__.MtfOptionsComponent], + styles: [".quml-mtf[_ngcontent-%COMP%] {\n padding: 0px;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL210Zi9tdGYuY29tcG9uZW50LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFDRSxZQUFBO0FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyIucXVtbC1tdGYge1xuICBwYWRkaW5nOiAwcHg7XG59Il0sInNvdXJjZVJvb3QiOiIifQ== */"] + }); +} + +/***/ }), + +/***/ 75989: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/pipes/safe-html/safe-html.pipe.ts ***! \*************************************************************************/ @@ -90069,8 +101861,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SafeHtmlPipe: () => (/* binding */ SafeHtmlPipe) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/platform-browser */ 6480); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/platform-browser */ 36480); class SafeHtmlPipe { @@ -90092,7 +101884,7 @@ class SafeHtmlPipe { /***/ }), -/***/ 8831: +/***/ 28831: /*!***********************************************************!*\ !*** ./projects/quml-library/src/lib/player-constants.ts ***! \***********************************************************/ @@ -90113,7 +101905,7 @@ const COMPATABILITY_LEVEL = 6; /***/ }), -/***/ 1267: +/***/ 51267: /*!********************************************************************************************!*\ !*** ./projects/quml-library/src/lib/progress-indicators/progress-indicators.component.ts ***! \********************************************************************************************/ @@ -90123,8 +101915,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ProgressIndicatorsComponent: () => (/* binding */ ProgressIndicatorsComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); @@ -90226,7 +102018,7 @@ class ProgressIndicatorsComponent { /***/ }), -/***/ 2792: +/***/ 92792: /*!*****************************************************************!*\ !*** ./projects/quml-library/src/lib/quml-library.component.ts ***! \*****************************************************************/ @@ -90236,7 +102028,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QumlLibraryComponent: () => (/* binding */ QumlLibraryComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class QumlLibraryComponent { static #_ = this.ɵfac = function QumlLibraryComponent_Factory(t) { @@ -90260,7 +102052,7 @@ class QumlLibraryComponent { /***/ }), -/***/ 1073: +/***/ 81073: /*!***************************************************************!*\ !*** ./projects/quml-library/src/lib/quml-library.service.ts ***! \***************************************************************/ @@ -90270,13 +102062,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QumlLibraryService: () => (/* binding */ QumlLibraryService) /* harmony export */ }); -/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 1670); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @project-sunbird/client-services/telemetry */ 5869); +/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 71670); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @project-sunbird/client-services/telemetry */ 35869); /* harmony import */ var _project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util-service */ 4384); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util-service */ 54384); @@ -90496,7 +102288,7 @@ class QumlLibraryService { /***/ }), -/***/ 7921: +/***/ 77921: /*!**************************************************************************!*\ !*** ./projects/quml-library/src/lib/quml-popup/quml-popup.component.ts ***! \**************************************************************************/ @@ -90506,9 +102298,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QumlPopupComponent: () => (/* binding */ QumlPopupComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -90601,7 +102393,7 @@ class QuestionCursor {} /***/ }), -/***/ 5502: +/***/ 45502: /*!**********************************************************!*\ !*** ./projects/quml-library/src/lib/sa/sa.component.ts ***! \**********************************************************/ @@ -90611,12 +102403,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SaComponent: () => (/* binding */ SaComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -90784,7 +102576,7 @@ class SaComponent { /***/ }), -/***/ 9186: +/***/ 19186: /*!**************************************************************************!*\ !*** ./projects/quml-library/src/lib/scoreboard/scoreboard.component.ts ***! \**************************************************************************/ @@ -90794,11 +102586,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ScoreboardComponent: () => (/* binding */ ScoreboardComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 26575); @@ -91011,7 +102803,7 @@ class ScoreboardComponent { /***/ }), -/***/ 4970: +/***/ 14970: /*!**********************************************************************************!*\ !*** ./projects/quml-library/src/lib/section-player/section-player.component.ts ***! \**********************************************************************************/ @@ -91021,32 +102813,34 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SectionPlayerComponent: () => (/* binding */ SectionPlayerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 3873); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 9530); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 5446); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 8717); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! lodash-es */ 6687); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! lodash-es */ 408); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! lodash-es */ 4817); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs */ 2484); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs/operators */ 3303); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../player-constants */ 8831); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 2459); -/* harmony import */ var _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../mcq/mcq.component */ 6633); -/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../header/header.component */ 3893); -/* harmony import */ var _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../sa/sa.component */ 5502); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 83873); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 79530); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 5446); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! lodash-es */ 48717); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! lodash-es */ 26687); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! lodash-es */ 20408); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! lodash-es */ 10153); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../player-constants */ 28831); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 42459); +/* harmony import */ var _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../mcq/mcq.component */ 16633); +/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../header/header.component */ 23893); +/* harmony import */ var _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../sa/sa.component */ 45502); /* harmony import */ var _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../icon/ans/ans.component */ 8188); -/* harmony import */ var _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../startpage/startpage.component */ 444); -/* harmony import */ var _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../alert/alert.component */ 7207); +/* harmony import */ var _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../startpage/startpage.component */ 60444); +/* harmony import */ var _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../alert/alert.component */ 57207); /* harmony import */ var _mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../mcq-solutions/mcq-solutions.component */ 3506); +/* harmony import */ var _mtf_mtf_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../mtf/mtf.component */ 30960); + @@ -91072,168 +102866,189 @@ const _c1 = ["imageModal"]; const _c2 = ["questionSlide"]; function SectionPlayerComponent_div_0_div_5_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div", 30); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 30); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - const ctx_r4 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate2"](" ", _r6.getCurrentSlideIndex(), "/", ctx_r4.noOfQuestions, " "); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + const ctx_r4 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate2"](" ", _r6.getCurrentSlideIndex(), "/", ctx_r4.noOfQuestions, " "); } } function SectionPlayerComponent_div_0_div_6_Template(rf, ctx) { if (rf & 1) { - const _r15 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div")(1, "quml-ans", 31); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_div_6_Template_quml_ans_click_1_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r15); - const ctx_r14 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r14.getSolutions()); + const _r15 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div")(1, "quml-ans", 31); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_div_6_Template_quml_ans_click_1_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r15); + const ctx_r14 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r14.getSolutions()); })("keydown", function SectionPlayerComponent_div_0_div_6_Template_quml_ans_keydown_1_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r15); - const ctx_r16 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r16.onAnswerKeyDown($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r15); + const ctx_r16 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r16.onAnswerKeyDown($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } } function SectionPlayerComponent_div_0_slide_12_div_3_Template(rf, ctx) { if (rf & 1) { - const _r23 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div")(1, "quml-mcq", 34); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("optionSelected", function SectionPlayerComponent_div_0_slide_12_div_3_Template_quml_mcq_optionSelected_1_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r23); - const ctx_r22 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r22.getOptionSelected($event)); + const _r24 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div")(1, "quml-mcq", 35); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("optionSelected", function SectionPlayerComponent_div_0_slide_12_div_3_Template_quml_mcq_optionSelected_1_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r24); + const ctx_r23 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r23.getOptionSelected($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } if (rf & 2) { - const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"]().$implicit; - const ctx_r20 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("shuffleOptions", ctx_r20.shuffleOptions)("question", question_r17)("replayed", ctx_r20.parentConfig == null ? null : ctx_r20.parentConfig.isReplayed)("identifier", question_r17.id)("tryAgain", ctx_r20.tryAgainClicked); + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r20 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("shuffleOptions", ctx_r20.shuffleOptions)("question", question_r17)("replayed", ctx_r20.parentConfig == null ? null : ctx_r20.parentConfig.isReplayed)("identifier", question_r17.id)("tryAgain", ctx_r20.tryAgainClicked); } } function SectionPlayerComponent_div_0_slide_12_div_4_Template(rf, ctx) { if (rf & 1) { - const _r27 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div")(1, "quml-sa", 35); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("showAnswerClicked", function SectionPlayerComponent_div_0_slide_12_div_4_Template_quml_sa_showAnswerClicked_1_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r27); - const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"]().$implicit; - const ctx_r25 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r25.showAnswerClicked($event, question_r17)); + const _r28 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div")(1, "quml-sa", 36); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("showAnswerClicked", function SectionPlayerComponent_div_0_slide_12_div_4_Template_quml_sa_showAnswerClicked_1_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r28); + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r26 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r26.showAnswerClicked($event, question_r17)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r21 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("questions", question_r17)("replayed", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.isReplayed)("baseUrl", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.baseUrl); + } +} +function SectionPlayerComponent_div_0_slide_12_div_5_Template(rf, ctx) { + if (rf & 1) { + const _r31 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 37)(1, "quml-mtf", 38); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("optionsReordered", function SectionPlayerComponent_div_0_slide_12_div_5_Template_quml_mtf_optionsReordered_1_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r31); + const ctx_r30 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r30.handleMTFOptionsChange($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } if (rf & 2) { - const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"]().$implicit; - const ctx_r21 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("questions", question_r17)("replayed", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.isReplayed)("baseUrl", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.baseUrl); + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r22 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("shuffleOptions", ctx_r22.shuffleOptions)("question", question_r17)("replayed", ctx_r22.parentConfig == null ? null : ctx_r22.parentConfig.isReplayed)("tryAgain", ctx_r22.tryAgainClicked); } } function SectionPlayerComponent_div_0_slide_12_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "slide", null, 32)(2, "div", 33); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_slide_12_div_3_Template, 2, 5, "div", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_slide_12_div_4_Template, 2, 3, "div", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "slide", null, 32)(2, "div", 33); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_slide_12_div_3_Template, 2, 5, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_slide_12_div_4_Template, 2, 3, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](5, SectionPlayerComponent_div_0_slide_12_div_5_Template, 2, 4, "div", 34); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } if (rf & 2) { const question_r17 = ctx.$implicit; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("id", question_r17.identifier); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "multiple choice question"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "subjective question"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("id", question_r17.identifier); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "multiple choice question"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "subjective question"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "match the following question"); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template(rf, ctx) { if (rf & 1) { - const _r38 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 42); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r38); - const question_r35 = restoredCtx.$implicit; - const ctx_r37 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r37.goToSlideClicked($event, question_r35 == null ? null : question_r35.index)); + const _r42 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 45); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r42); + const question_r39 = restoredCtx.$implicit; + const ctx_r41 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r41.goToSlideClicked($event, question_r39 == null ? null : question_r39.index)); })("keydown", function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r38); - const question_r35 = restoredCtx.$implicit; - const ctx_r39 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r39.onEnter($event, question_r35 == null ? null : question_r35.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r42); + const question_r39 = restoredCtx.$implicit; + const ctx_r43 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r43.onEnter($event, question_r39 == null ? null : question_r39.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r35 = ctx.$implicit; - const j_r36 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r35 == null ? null : question_r35.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r36 + 1 === _r6.getCurrentSlideIndex() ? question_r35.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r35.class : question_r35.class); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r35 == null ? null : question_r35.index, " "); + const question_r39 = ctx.$implicit; + const j_r40 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r39 == null ? null : question_r39.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r40 + 1 === _r6.getCurrentSlideIndex() ? question_r39.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r39.class : question_r39.class); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r39 == null ? null : question_r39.index, " "); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template, 2, 3, "li", 41); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template, 2, 3, "li", 44); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r32 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r32.progressBarClass); + const ctx_r36 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r36.progressBarClass); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template(rf, ctx) { if (rf & 1) { - const _r44 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 42); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r44); - const question_r41 = restoredCtx.$implicit; - const ctx_r43 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r43.goToSlideClicked($event, question_r41 == null ? null : question_r41.index)); + const _r48 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 45); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r48); + const question_r45 = restoredCtx.$implicit; + const ctx_r47 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r47.goToSlideClicked($event, question_r45 == null ? null : question_r45.index)); })("keydown", function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r44); - const question_r41 = restoredCtx.$implicit; - const ctx_r45 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r45.onEnter($event, question_r41 == null ? null : question_r41.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r48); + const question_r45 = restoredCtx.$implicit; + const ctx_r49 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r49.onEnter($event, question_r45 == null ? null : question_r45.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r41 = ctx.$implicit; - const j_r42 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r41 == null ? null : question_r41.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r42 + 1 === _r6.getCurrentSlideIndex() ? question_r41.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r41.class === "skipped" ? question_r41.class : question_r41.class === "unattempted" ? "" : "att-color"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r41 == null ? null : question_r41.index, " "); + const question_r45 = ctx.$implicit; + const j_r46 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r45 == null ? null : question_r45.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r46 + 1 === _r6.getCurrentSlideIndex() ? question_r45.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r45.class === "skipped" ? question_r45.class : question_r45.class === "unattempted" ? "" : "att-color"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r45 == null ? null : question_r45.index, " "); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 43); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template, 2, 3, "li", 41); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 46); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template, 2, 3, "li", 44); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r33 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r33.progressBarClass); + const ctx_r37 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r37.progressBarClass); } } const _c3 = function (a0, a1) { @@ -91249,309 +103064,309 @@ const _c4 = function (a0) { }; function SectionPlayerComponent_div_0_ul_19_li_1_Template(rf, ctx) { if (rf & 1) { - const _r47 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 38); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_Template_li_click_0_listener() { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r47); - const section_r30 = restoredCtx.$implicit; - const ctx_r46 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r46.jumpToSection(section_r30 == null ? null : section_r30.identifier)); + const _r51 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 41); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_Template_li_click_0_listener() { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r51); + const section_r34 = restoredCtx.$implicit; + const ctx_r50 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r50.jumpToSection(section_r34 == null ? null : section_r34.identifier)); })("keydown", function SectionPlayerComponent_div_0_ul_19_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r47); - const section_r30 = restoredCtx.$implicit; - const ctx_r48 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r48.onSectionEnter($event, section_r30 == null ? null : section_r30.identifier)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r51); + const section_r34 = restoredCtx.$implicit; + const ctx_r52 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r52.onSectionEnter($event, section_r34 == null ? null : section_r34.identifier)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](1, "label", 39); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_Template, 2, 1, "ul", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_Template, 2, 1, "ul", 40); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](1, "label", 42); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_Template, 2, 1, "ul", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_Template, 2, 1, "ul", 43); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const section_r30 = ctx.$implicit; - const i_r31 = ctx.index; - const ctx_r29 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "section ", section_r30 == null ? null : section_r30.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵpureFunction2"](7, _c3, section_r30.class === "attempted", section_r30.class === "partial")); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵpropertyInterpolate1"]("for", "list-item-", i_r31, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵpureFunction1"](10, _c4, (section_r30 == null ? null : section_r30.isActive) && !ctx_r29.showRootInstruction && section_r30.class !== "attempted")); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate"](section_r30 == null ? null : section_r30.index); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (section_r30 == null ? null : section_r30.isActive) && ctx_r29.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (section_r30 == null ? null : section_r30.isActive) && !ctx_r29.showFeedBack); + const section_r34 = ctx.$implicit; + const i_r35 = ctx.index; + const ctx_r33 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "section ", section_r34 == null ? null : section_r34.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵpureFunction2"](7, _c3, section_r34.class === "attempted", section_r34.class === "partial")); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵpropertyInterpolate1"]("for", "list-item-", i_r35, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵpureFunction1"](10, _c4, (section_r34 == null ? null : section_r34.isActive) && !ctx_r33.showRootInstruction && section_r34.class !== "attempted")); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate"](section_r34 == null ? null : section_r34.index); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (section_r34 == null ? null : section_r34.isActive) && ctx_r33.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (section_r34 == null ? null : section_r34.isActive) && !ctx_r33.showFeedBack); } } function SectionPlayerComponent_div_0_ul_19_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 36); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_Template, 5, 12, "li", 37); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 39); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_Template, 5, 12, "li", 40); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r8 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r8.mainProgressBar); + const ctx_r8 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r8.mainProgressBar); } } function SectionPlayerComponent_div_0_ul_21_li_1_Template(rf, ctx) { if (rf & 1) { - const _r53 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 46); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_21_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r53); - const question_r50 = restoredCtx.$implicit; - const ctx_r52 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r52.goToSlideClicked($event, question_r50 == null ? null : question_r50.index)); + const _r57 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 49); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_21_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r57); + const question_r54 = restoredCtx.$implicit; + const ctx_r56 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r56.goToSlideClicked($event, question_r54 == null ? null : question_r54.index)); })("keydown", function SectionPlayerComponent_div_0_ul_21_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r53); - const question_r50 = restoredCtx.$implicit; - const ctx_r54 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r54.onEnter($event, question_r50 == null ? null : question_r50.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r57); + const question_r54 = restoredCtx.$implicit; + const ctx_r58 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r58.onEnter($event, question_r54 == null ? null : question_r54.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r50 = ctx.$implicit; - const j_r51 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r50 == null ? null : question_r50.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r51 + 1 === _r6.getCurrentSlideIndex() ? question_r50.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r50.class : question_r50.class); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r50 == null ? null : question_r50.index, " "); + const question_r54 = ctx.$implicit; + const j_r55 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r54 == null ? null : question_r54.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r55 + 1 === _r6.getCurrentSlideIndex() ? question_r54.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r54.class : question_r54.class); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r54 == null ? null : question_r54.index, " "); } } function SectionPlayerComponent_div_0_ul_21_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 44); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_21_li_1_Template, 2, 3, "li", 45); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 47); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_21_li_1_Template, 2, 3, "li", 48); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r9 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r9.progressBarClass); + const ctx_r9 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r9.progressBarClass); } } function SectionPlayerComponent_div_0_ul_23_li_1_Template(rf, ctx) { if (rf & 1) { - const _r59 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 46); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_23_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r59); - const question_r56 = restoredCtx.$implicit; - const ctx_r58 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r58.goToSlideClicked($event, question_r56 == null ? null : question_r56.index)); + const _r63 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 49); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_23_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r63); + const question_r60 = restoredCtx.$implicit; + const ctx_r62 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r62.goToSlideClicked($event, question_r60 == null ? null : question_r60.index)); })("keydown", function SectionPlayerComponent_div_0_ul_23_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r59); - const question_r56 = restoredCtx.$implicit; - const ctx_r60 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r60.onEnter($event, question_r56 == null ? null : question_r56.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r63); + const question_r60 = restoredCtx.$implicit; + const ctx_r64 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r64.onEnter($event, question_r60 == null ? null : question_r60.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r56 = ctx.$implicit; - const j_r57 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r56 == null ? null : question_r56.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r57 + 1 === _r6.getCurrentSlideIndex() ? question_r56.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r56.class === "skipped" ? question_r56.class : question_r56.class === "unattempted" ? "" : "att-color"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r56 == null ? null : question_r56.index, " "); + const question_r60 = ctx.$implicit; + const j_r61 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r60 == null ? null : question_r60.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r61 + 1 === _r6.getCurrentSlideIndex() ? question_r60.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r60.class === "skipped" ? question_r60.class : question_r60.class === "unattempted" ? "" : "att-color"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r60 == null ? null : question_r60.index, " "); } } function SectionPlayerComponent_div_0_ul_23_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 47); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_23_li_1_Template, 2, 3, "li", 45); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 50); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_23_li_1_Template, 2, 3, "li", 48); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r10 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r10.progressBarClass); + const ctx_r10 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r10.progressBarClass); } } function SectionPlayerComponent_div_0_li_24_Template(rf, ctx) { if (rf & 1) { - const _r62 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 48); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_li_24_Template_li_click_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r62); - const ctx_r61 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - ctx_r61.disableNext = true; - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r61.onScoreBoardClicked()); + const _r66 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 51); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_li_24_Template_li_click_0_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r66); + const ctx_r65 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + ctx_r65.disableNext = true; + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r65.onScoreBoardClicked()); })("keydown", function SectionPlayerComponent_div_0_li_24_Template_li_keydown_0_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r62); - const ctx_r63 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r63.onScoreBoardEnter($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r66); + const ctx_r67 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r67.onScoreBoardEnter($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](1, "img", 49); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](1, "img", 52); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } } function SectionPlayerComponent_div_0_quml_alert_25_Template(rf, ctx) { if (rf & 1) { - const _r65 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "quml-alert", 50); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("showSolution", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_showSolution_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r65); - const ctx_r64 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r64.viewSolution()); + const _r69 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "quml-alert", 53); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("showSolution", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_showSolution_0_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r69); + const ctx_r68 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r68.viewSolution()); })("showHint", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_showHint_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r65); - const ctx_r66 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r66.viewHint()); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r69); + const ctx_r70 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r70.viewHint()); })("closeAlert", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_closeAlert_0_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r65); - const ctx_r67 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r67.closeAlertBox($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r69); + const ctx_r71 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r71.closeAlertBox($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r12 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("alertType", ctx_r12.alertType)("isHintAvailable", ctx_r12.showHints)("showSolutionButton", ctx_r12.showUserSolution && ctx_r12.currentSolutions); + const ctx_r12 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("alertType", ctx_r12.alertType)("isHintAvailable", ctx_r12.showHints)("showSolutionButton", ctx_r12.showUserSolution && ctx_r12.currentSolutions); } } function SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template(rf, ctx) { if (rf & 1) { - const _r69 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "quml-mcq-solutions", 51); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("close", function SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template_quml_mcq_solutions_close_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r69); - const ctx_r68 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r68.closeSolution()); + const _r73 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "quml-mcq-solutions", 54); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("close", function SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template_quml_mcq_solutions_close_0_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r73); + const ctx_r72 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r72.closeSolution()); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r13 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("question", ctx_r13.currentQuestion)("options", ctx_r13.currentOptions)("solutions", ctx_r13.currentSolutions)("baseUrl", ctx_r13.parentConfig == null ? null : ctx_r13.parentConfig.baseUrl)("media", ctx_r13.media)("identifier", ctx_r13.currentQuestionIndetifier); + const ctx_r13 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("question", ctx_r13.currentQuestion)("options", ctx_r13.currentOptions)("solutions", ctx_r13.currentSolutions)("baseUrl", ctx_r13.parentConfig == null ? null : ctx_r13.parentConfig.baseUrl)("media", ctx_r13.media)("identifier", ctx_r13.currentQuestionIndetifier); } } function SectionPlayerComponent_div_0_Template(rf, ctx) { if (rf & 1) { - const _r71 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "quml-header", 13); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("durationEnds", function SectionPlayerComponent_div_0_Template_quml_header_durationEnds_2_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r70 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r70.durationEnds()); + const _r75 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "quml-header", 13); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("durationEnds", function SectionPlayerComponent_div_0_Template_quml_header_durationEnds_2_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r74 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r74.durationEnds()); })("nextSlideClicked", function SectionPlayerComponent_div_0_Template_quml_header_nextSlideClicked_2_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r72 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r72.nextSlideClicked($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r76 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r76.nextSlideClicked($event)); })("prevSlideClicked", function SectionPlayerComponent_div_0_Template_quml_header_prevSlideClicked_2_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r73 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r73.previousSlideClicked($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r77 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r77.previousSlideClicked($event)); })("showSolution", function SectionPlayerComponent_div_0_Template_quml_header_showSolution_2_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r74 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r74.viewSolution()); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r78 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r78.viewSolution()); })("toggleScreenRotate", function SectionPlayerComponent_div_0_Template_quml_header_toggleScreenRotate_2_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r75 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r75.toggleScreenRotate()); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r79 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r79.toggleScreenRotate()); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](3, "div", 14)(4, "div", 15); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](5, SectionPlayerComponent_div_0_div_5_Template, 2, 2, "div", 16); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](6, SectionPlayerComponent_div_0_div_6_Template, 2, 0, "div", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](7, "div", 17)(8, "carousel", 18, 19); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("activeSlideChange", function SectionPlayerComponent_div_0_Template_carousel_activeSlideChange_8_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r76 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r76.activeSlideChange($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](3, "div", 14)(4, "div", 15); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](5, SectionPlayerComponent_div_0_div_5_Template, 2, 2, "div", 16); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](6, SectionPlayerComponent_div_0_div_6_Template, 2, 0, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](7, "div", 17)(8, "carousel", 18, 19); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("activeSlideChange", function SectionPlayerComponent_div_0_Template_carousel_activeSlideChange_8_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r80 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r80.activeSlideChange($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](10, "slide"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](11, "quml-startpage", 20); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](12, SectionPlayerComponent_div_0_slide_12_Template, 5, 3, "slide", 21); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](13, "div", 22)(14, "ul"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementContainerStart"](15); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](16, "li", 23); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("keydown", function SectionPlayerComponent_div_0_Template_li_keydown_16_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r77 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r77.onEnter($event, 0)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](10, "slide"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](11, "quml-startpage", 20); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](12, SectionPlayerComponent_div_0_slide_12_Template, 6, 4, "slide", 21); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](13, "div", 22)(14, "ul"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementContainerStart"](15); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](16, "li", 23); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("keydown", function SectionPlayerComponent_div_0_Template_li_keydown_16_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r81 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r81.onEnter($event, 0)); })("click", function SectionPlayerComponent_div_0_Template_li_click_16_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r78 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r78.goToSlideClicked($event, 0)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r82 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r82.goToSlideClicked($event, 0)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](17, "i "); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](18, "li"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](19, SectionPlayerComponent_div_0_ul_19_Template, 2, 1, "ul", 24); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](20, "li"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](21, SectionPlayerComponent_div_0_ul_21_Template, 2, 1, "ul", 25); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](22, "li"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](23, SectionPlayerComponent_div_0_ul_23_Template, 2, 1, "ul", 26); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](24, SectionPlayerComponent_div_0_li_24_Template, 2, 0, "li", 27); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementContainerEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()()()(); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](25, SectionPlayerComponent_div_0_quml_alert_25_Template, 1, 3, "quml-alert", 28); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](26, SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template, 1, 6, "quml-mcq-solutions", 29); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](17, "i "); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](18, "li"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](19, SectionPlayerComponent_div_0_ul_19_Template, 2, 1, "ul", 24); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](20, "li"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](21, SectionPlayerComponent_div_0_ul_21_Template, 2, 1, "ul", 25); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](22, "li"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](23, SectionPlayerComponent_div_0_ul_23_Template, 2, 1, "ul", 26); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](24, SectionPlayerComponent_div_0_li_24_Template, 2, 0, "li", 27); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementContainerEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()()()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](25, SectionPlayerComponent_div_0_quml_alert_25_Template, 1, 3, "quml-alert", 28); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](26, SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template, 1, 6, "quml-mcq-solutions", 29); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("hidden", ctx_r0.showZoomModal); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("hidden", ctx_r0.showSolution); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("disablePreviousNavigation", ctx_r0.linearNavigation)("duration", ctx_r0.timeLimit)("warningTime", ctx_r0.warningTime)("showWarningTimer", ctx_r0.showWarningTimer)("showTimer", ctx_r0.showTimer)("showLegend", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.showLegend)("currentSlideIndex", ctx_r0.currentSlideIndex)("totalNoOfQuestions", ctx_r0.noOfQuestions)("active", ctx_r0.active)("showFeedBack", ctx_r0.showFeedBack)("currentSolutions", ctx_r0.currentSolutions)("initializeTimer", ctx_r0.initializeTimer)("replayed", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isReplayed)("disableNext", ctx_r0.disableNext)("startPageInstruction", ctx_r0.startPageInstruction)("attempts", ctx_r0.attempts)("showStartPage", ctx_r0.showStartPage)("showDeviceOrientation", ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.config == null ? null : ctx_r0.sectionConfig.config.showDeviceOrientation); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.currentSlideIndex !== 0); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.currentSolutions && ctx_r0.showUserSolution); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("interval", 0)("showIndicators", false)("noWrap", true); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("instructions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.instructions : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.instructions)("points", ctx_r0.points)("time", ctx_r0.showRootInstruction ? ctx_r0.timeLimit : null)("showTimer", ctx_r0.showTimer)("totalNoOfQuestions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.questionCount : ctx_r0.noOfQuestions)("contentName", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName : (ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) ? ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.name : ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r0.questions); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", ctx_r0.currentSlideIndex === 0 ? "att-color progressBar-border" : "att-color"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && ctx_r0.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && !ctx_r0.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig.requiresSubmit && (ctx_r0.progressBarClass == null ? null : ctx_r0.progressBarClass.length)); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.showAlert && ctx_r0.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.showSolution); + const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("hidden", ctx_r0.showZoomModal); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("hidden", ctx_r0.showSolution); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("disablePreviousNavigation", ctx_r0.linearNavigation)("duration", ctx_r0.timeLimit)("warningTime", ctx_r0.warningTime)("showWarningTimer", ctx_r0.showWarningTimer)("showTimer", ctx_r0.showTimer)("showLegend", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.showLegend)("currentSlideIndex", ctx_r0.currentSlideIndex)("totalNoOfQuestions", ctx_r0.noOfQuestions)("active", ctx_r0.active)("showFeedBack", ctx_r0.showFeedBack)("currentSolutions", ctx_r0.currentSolutions)("initializeTimer", ctx_r0.initializeTimer)("replayed", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isReplayed)("disableNext", ctx_r0.disableNext)("startPageInstruction", ctx_r0.startPageInstruction)("attempts", ctx_r0.attempts)("showStartPage", ctx_r0.showStartPage)("showDeviceOrientation", ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.config == null ? null : ctx_r0.sectionConfig.config.showDeviceOrientation); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.currentSlideIndex !== 0); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.currentSolutions && ctx_r0.showUserSolution); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("interval", 0)("showIndicators", false)("noWrap", true); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("instructions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.instructions : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.instructions)("points", ctx_r0.points)("time", ctx_r0.showRootInstruction ? ctx_r0.timeLimit : null)("showTimer", ctx_r0.showTimer)("totalNoOfQuestions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.questionCount : ctx_r0.noOfQuestions)("contentName", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName : (ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) ? ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.name : ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r0.questions); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", ctx_r0.currentSlideIndex === 0 ? "att-color progressBar-border" : "att-color"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && ctx_r0.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && !ctx_r0.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig.requiresSubmit && (ctx_r0.progressBarClass == null ? null : ctx_r0.progressBarClass.length)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.showAlert && ctx_r0.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.showSolution); } } function SectionPlayerComponent_div_1_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div", 52); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1, " Please attempt the question\n"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 55); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1, " Please attempt the question\n"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } } function SectionPlayerComponent_sb_player_contenterror_2_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](0, "sb-player-contenterror"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](0, "sb-player-contenterror"); } } class SectionPlayerComponent { @@ -91561,10 +103376,10 @@ class SectionPlayerComponent { this.cdRef = cdRef; this.errorService = errorService; this.sectionIndex = 0; - this.playerEvent = new _angular_core__WEBPACK_IMPORTED_MODULE_11__.EventEmitter(); - this.sectionEnd = new _angular_core__WEBPACK_IMPORTED_MODULE_11__.EventEmitter(); - this.showScoreBoard = new _angular_core__WEBPACK_IMPORTED_MODULE_11__.EventEmitter(); - this.destroy$ = new rxjs__WEBPACK_IMPORTED_MODULE_12__.Subject(); + this.playerEvent = new _angular_core__WEBPACK_IMPORTED_MODULE_12__.EventEmitter(); + this.sectionEnd = new _angular_core__WEBPACK_IMPORTED_MODULE_12__.EventEmitter(); + this.showScoreBoard = new _angular_core__WEBPACK_IMPORTED_MODULE_12__.EventEmitter(); + this.destroy$ = new rxjs__WEBPACK_IMPORTED_MODULE_13__.Subject(); this.loadView = false; this.showContentError = false; this.noOfTimesApiCalled = 0; @@ -91600,19 +103415,19 @@ class SectionPlayerComponent { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.startPageLoaded, 'impression', 0); } subscribeToEvents() { - this.viewerService.qumlPlayerEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.takeUntil)(this.destroy$)).subscribe(res => { + this.viewerService.qumlPlayerEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.takeUntil)(this.destroy$)).subscribe(res => { this.playerEvent.emit(res); }); - this.viewerService.qumlQuestionEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.takeUntil)(this.destroy$)).subscribe(res => { + this.viewerService.qumlQuestionEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.takeUntil)(this.destroy$)).subscribe(res => { if (res?.error) { let traceId; - if (lodash_es__WEBPACK_IMPORTED_MODULE_14__["default"](this.sectionConfig, 'config')) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_15__["default"](this.sectionConfig, 'config')) { traceId = this.sectionConfig.config; } if (navigator.onLine && this.viewerService.isAvailableLocally) { - this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorCode.contentLoadFails, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.contentLoadFails, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.contentLoadFails), traceId); + this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorCode.contentLoadFails, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.contentLoadFails, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.contentLoadFails), traceId); } else { - this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorCode.internetConnectivity, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.internetConnectivity, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.internetConnectivity), traceId); + this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorCode.internetConnectivity, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.internetConnectivity, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.internetConnectivity), traceId); } this.showContentError = true; return; @@ -91620,8 +103435,8 @@ class SectionPlayerComponent { if (!res?.questions) { return; } - const unCommonQuestions = lodash_es__WEBPACK_IMPORTED_MODULE_16__["default"](this.questions, res.questions, 'identifier'); - this.questions = lodash_es__WEBPACK_IMPORTED_MODULE_17__["default"](this.questions.concat(unCommonQuestions), 'identifier'); + const unCommonQuestions = lodash_es__WEBPACK_IMPORTED_MODULE_17__["default"](this.questions, res.questions, 'identifier'); + this.questions = lodash_es__WEBPACK_IMPORTED_MODULE_18__["default"](this.questions.concat(unCommonQuestions), 'identifier'); this.sortQuestions(); this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier, this.questions); this.cdRef.detectChanges(); @@ -91656,7 +103471,7 @@ class SectionPlayerComponent { this.myCarousel.selectSlide(this.currentSlideIndex); } this.threshold = this.sectionConfig?.context?.threshold || 3; - this.questionIds = lodash_es__WEBPACK_IMPORTED_MODULE_18__["default"](this.sectionConfig.metadata.childNodes); + this.questionIds = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.sectionConfig.metadata.childNodes); /* istanbul ignore else */ if (this.parentConfig.isReplayed) { this.initializeTimer = true; @@ -91666,7 +103481,7 @@ class SectionPlayerComponent { this.currentSlideIndex = 0; this.myCarousel.selectSlide(0); this.showRootInstruction = true; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[0], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[0], 'media'); this.setImageZoom(); this.loadView = true; this.removeAttribute(); @@ -91694,7 +103509,6 @@ class SectionPlayerComponent { } else { this.showFeedBack = this.parentConfig.showFeedback; // Fallback to parent config } - this.showUserSolution = this.sectionConfig.metadata?.showSolutions; this.startPageInstruction = this.sectionConfig.metadata?.instructions || this.parentConfig.instructions; this.linearNavigation = this.sectionConfig.metadata.navigationMode === 'non-linear' ? false : true; @@ -91750,7 +103564,7 @@ class SectionPlayerComponent { } } createSummaryObj() { - const classObj = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.progressBarClass, 'class'); + const classObj = lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](this.progressBarClass, 'class'); return { skipped: classObj?.skipped?.length || 0, correct: classObj?.correct?.length || 0, @@ -91759,7 +103573,7 @@ class SectionPlayerComponent { }; } nextSlide() { - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.currentSlideIndex], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.currentSlideIndex], 'media'); this.getQuestion(); this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.nextClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex() + 1); this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.nextClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.impression, this.myCarousel.getCurrentSlideIndex() + 1); @@ -91809,7 +103623,7 @@ class SectionPlayerComponent { } this.currentSlideIndex = this.myCarousel.getCurrentSlideIndex(); this.active = this.currentSlideIndex === 0 && this.sectionIndex === 0 && this.showStartPage; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); this.setImageZoom(); this.setSkippedClass(this.myCarousel.getCurrentSlideIndex() - 1); } @@ -91828,6 +103642,7 @@ class SectionPlayerComponent { this.active = false; this.showAlert = false; this.optionSelectedObj = undefined; + this.mtfReorderedOptionsMap = undefined; this.currentOptionSelected = undefined; this.currentQuestion = undefined; this.currentOptions = undefined; @@ -91858,15 +103673,15 @@ class SectionPlayerComponent { } /* istanbul ignore else */ if (event?.type === 'next') { - this.validateSelectedOption(this.optionSelectedObj, 'next'); + this.validateQuestionInteraction('next'); } } previousSlideClicked(event) { /* istanbul ignore else */ if (event.event === 'previous clicked') { - if (this.optionSelectedObj && this.showFeedBack) { + if ((this.optionSelectedObj || this.mtfReorderedOptionsMap) && this.showFeedBack) { this.stopAutoNavigation = false; - this.validateSelectedOption(this.optionSelectedObj, 'previous'); + this.validateQuestionInteraction('previous'); } else { this.stopAutoNavigation = true; if (this.currentSlideIndex === 0 && this.parentConfig.isSectionsAvailable && this.getCurrentSectionIndex() > 0) { @@ -91901,9 +103716,9 @@ class SectionPlayerComponent { event.stopPropagation(); this.active = false; this.jumpSlideIndex = index; - if (this.optionSelectedObj && this.showFeedBack) { + if ((this.optionSelectedObj || this.mtfReorderedOptionsMap) && this.showFeedBack) { this.stopAutoNavigation = false; - this.validateSelectedOption(this.optionSelectedObj, 'jump'); + this.validateQuestionInteraction('jump'); } else { this.stopAutoNavigation = true; this.goToSlide(this.jumpSlideIndex); @@ -91926,7 +103741,7 @@ class SectionPlayerComponent { event.stopPropagation(); /* istanbul ignore else */ if (this.optionSelectedObj) { - this.validateSelectedOption(this.optionSelectedObj, 'jump'); + this.validateQuestionInteraction('jump'); } this.jumpToSection(identifier); } @@ -91958,27 +103773,45 @@ class SectionPlayerComponent { if (optionSelected.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.single && JSON.stringify(this.currentOptionSelected) === JSON.stringify(optionSelected)) { return; // Same option selected } - this.focusOnNextButton(); this.active = true; this.currentOptionSelected = optionSelected; const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.optionClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); // This optionSelected comes empty whenever the try again is clicked on feedback popup - if (lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](optionSelected?.option)) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](optionSelected?.option)) { this.optionSelectedObj = undefined; this.currentSolutions = undefined; this.updateScoreBoard(currentIndex, 'skipped'); } else { this.optionSelectedObj = optionSelected; this.isAssessEventRaised = false; - this.currentSolutions = !lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](optionSelected.solutions) ? optionSelected.solutions : undefined; + this.currentSolutions = !lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](optionSelected.solutions) ? optionSelected.solutions : undefined; } this.currentQuestionIndetifier = this.questions[currentIndex].identifier; - this.media = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[currentIndex], 'media', []); + this.media = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[currentIndex], 'media', []); /* istanbul ignore else */ if (!this.showFeedBack) { - this.validateSelectedOption(this.optionSelectedObj); + this.validateQuestionInteraction(); + } + } + handleMTFOptionsChange(rearrangedOptions) { + this.focusOnNextButton(); + this.active = true; + const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; + this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.optionsReordered, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); + const currentQuestion = this.questions[currentIndex]; + if (lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](rearrangedOptions)) { + this.updateScoreBoard(currentIndex, 'skipped'); + } else { + this.mtfReorderedOptionsMap = rearrangedOptions; + this.isAssessEventRaised = false; + this.currentSolutions = !lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](currentQuestion.solutions) ? currentQuestion.solutions : undefined; + } + this.currentQuestionIndetifier = currentQuestion.identifier; + this.media = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](currentQuestion, 'media', []); + if (!this.showFeedBack) { + this.validateQuestionInteraction(); } } durationEnds() { @@ -91995,7 +103828,7 @@ class SectionPlayerComponent { const checkContentCompatible = this.checkContentCompatibility(compatibilityLevel); /* istanbul ignore else */ if (!checkContentCompatible.isCompitable) { - this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorCode.contentCompatibility, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.contentCompatibility, checkContentCompatible.error, this.sectionConfig?.config?.traceId); + this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorCode.contentCompatibility, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.contentCompatibility, checkContentCompatible.error, this.sectionConfig?.config?.traceId); } } } @@ -92043,109 +103876,127 @@ class SectionPlayerComponent { this.showAlert = false; } setSkippedClass(index) { - if (this.progressBarClass && lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.progressBarClass[index], 'class') === 'unattempted') { + if (this.progressBarClass && lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.progressBarClass[index], 'class') === 'unattempted') { this.progressBarClass[index].class = 'skipped'; } } toggleScreenRotate(event) { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.deviceRotationClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex() + 1); } - validateSelectedOption(option, type) { - const selectedOptionValue = option?.option?.value; + validateQuestionInteraction(eventType) { const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; - const isQuestionSkipAllowed = !this.optionSelectedObj && this.allowSkip && this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq; - const isSubjectiveQuestion = this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.sa; - const onStartPage = this.startPageInstruction && this.myCarousel.getCurrentSlideIndex() === 0; - const isActive = !this.optionSelectedObj && this.active; const selectedQuestion = this.questions[currentIndex]; - const key = selectedQuestion.responseDeclaration ? this.utilService.getKeyValue(Object.keys(selectedQuestion.responseDeclaration)) : ''; + const responseKey = selectedQuestion.responseDeclaration ? this.utilService.getKeyValue(Object.keys(selectedQuestion.responseDeclaration)) : ''; this.slideDuration = Math.round((new Date().getTime() - this.initialSlideDuration) / 1000); - const getParams = () => { - if (selectedQuestion.qType.toUpperCase() === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && selectedQuestion?.editorState?.options) { - return selectedQuestion.editorState.options; - } else if (selectedQuestion.qType.toUpperCase() === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && !lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](selectedQuestion?.editorState)) { - return [selectedQuestion?.editorState]; - } else { - return []; + const edataItem = this.utilService.getEDataItem(selectedQuestion, responseKey); + if (edataItem && this.parentConfig?.isSectionsAvailable) { + edataItem['sectionId'] = this.sectionConfig?.metadata?.identifier; + } + const questionType = this.questions[currentIndex]['qType']; + const isQuestionSkipAllowed = this.isSkipAllowed(questionType); + if (!isQuestionSkipAllowed) { + this.handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, eventType); + } else { + this.handleNoInteraction(isQuestionSkipAllowed, edataItem, currentIndex, eventType); + } + } + isSkipAllowed(questionType) { + if (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.sa) { + return true; + } + if (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mtf && !this.mtfReorderedOptionsMap || (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq || questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mmcq) && !this.optionSelectedObj && this.allowSkip) { + return true; + } + return false; + } + handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, type) { + this.currentQuestion = selectedQuestion.body; + this.currentOptions = selectedQuestion.interactions[responseKey].options; + this.showAlert = true; + if (this.optionSelectedObj && (selectedQuestion.qType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq || selectedQuestion.qType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mmcq)) { + if (this.optionSelectedObj.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.single) { + this.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, false, type); + } else if (this.optionSelectedObj.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.multiple) { + this.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, true, type); } - }; - const edataItem = { - 'id': selectedQuestion.identifier, - 'title': selectedQuestion.name, - 'desc': selectedQuestion.description, - 'type': selectedQuestion.qType.toLowerCase(), - 'maxscore': key.length === 0 ? 0 : selectedQuestion.outcomeDeclaration.maxScore.defaultValue || 0, - 'params': getParams() - }; - /* istanbul ignore else */ - if (edataItem && this.parentConfig.isSectionsAvailable) { - edataItem.sectionId = this.sectionConfig.metadata.identifier; + this.optionSelectedObj = undefined; } - /* istanbul ignore else */ - if (!this.optionSelectedObj && !this.isAssessEventRaised && selectedQuestion.qType.toUpperCase() !== _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.sa) { + if (this.mtfReorderedOptionsMap && selectedQuestion.qType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mtf) { + this.handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type); + this.mtfReorderedOptionsMap = undefined; + } + } + handleMCQInteraction(selectedQuestion, edataItem, currentIndex, isMultipleChoice, type) { + const responseDeclaration = selectedQuestion.responseDeclaration; + const outcomeDeclaration = selectedQuestion.outcomeDeclaration; + const selectedOptions = this.optionSelectedObj.option; + let currentScore; + let optionsToPass; + if (isMultipleChoice) { + currentScore = this.utilService.getMultiselectScore(selectedOptions, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + optionsToPass = selectedOptions; + } else { + currentScore = this.utilService.getSingleSelectScore(selectedOptions, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + optionsToPass = [selectedOptions]; + } + if (currentScore === 0) { + this.handleWrongAnswer(currentScore, edataItem, currentIndex, optionsToPass, type); + } else { + this.handleCorrectAnswer(currentScore, edataItem, currentIndex, optionsToPass, type); + } + } + handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type) { + const responseDeclaration = selectedQuestion.responseDeclaration; + const outcomeDeclaration = selectedQuestion.outcomeDeclaration; + const userResponse = this.mtfReorderedOptionsMap; + const currentScore = this.utilService.getMTFScore(userResponse, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + if (currentScore === 0) { + this.handleWrongAnswer(currentScore, edataItem, currentIndex, userResponse, type); + } else { + this.handleCorrectAnswer(currentScore, edataItem, currentIndex, userResponse, type); + } + } + handleCorrectAnswer(currentScore, edataItem, currentIndex, userResponse, type) { + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, userResponse, this.slideDuration); + } + this.alertType = 'correct'; + if (this.showFeedBack) { + this.correctFeedBackTimeOut(type); + } + this.updateScoreBoard(currentIndex, 'correct', userResponse, currentScore); + } + handleWrongAnswer(currentScore, edataItem, currentIndex, userResponse, type) { + this.alertType = 'wrong'; + const classType = this.progressBarClass[currentIndex].class === 'partial' ? 'partial' : 'wrong'; + this.updateScoreBoard(currentIndex, classType, userResponse, currentScore); + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, userResponse, this.slideDuration); + } + } + handleNoInteraction(isQuestionSkipAllowed, edataItem, currentIndex, type) { + if (!this.isAssessEventRaised) { this.isAssessEventRaised = true; this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [], this.slideDuration); } - if (this.optionSelectedObj) { - this.currentQuestion = selectedQuestion.body; - this.currentOptions = selectedQuestion.interactions[key].options; - if (option.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.single) { - const correctOptionValue = Number(selectedQuestion.responseDeclaration[key].correctResponse.value); - this.showAlert = true; - if (option.option?.value === correctOptionValue) { - const currentScore = this.getScore(currentIndex, key, true); - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, [option.option], this.slideDuration); - } - this.alertType = 'correct'; - if (this.showFeedBack) this.correctFeedBackTimeOut(type); - this.updateScoreBoard(currentIndex, 'correct', undefined, currentScore); - } else { - const currentScore = this.getScore(currentIndex, key, false, option); - this.alertType = 'wrong'; - const classType = this.progressBarClass[currentIndex].class === 'partial' ? 'partial' : 'wrong'; - this.updateScoreBoard(currentIndex, classType, selectedOptionValue, currentScore); - /* istanbul ignore else */ - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [option.option], this.slideDuration); - } - } - } - if (option.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.multiple) { - const responseDeclaration = this.questions[currentIndex].responseDeclaration; - const outcomeDeclaration = this.questions[currentIndex].outcomeDeclaration; - const currentScore = this.utilService.getMultiselectScore(option.option, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); - this.showAlert = true; - if (currentScore === 0) { - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [option.option], this.slideDuration); - } - this.alertType = 'wrong'; - this.updateScoreBoard(currentIndex, 'wrong'); - } else { - this.updateScoreBoard(currentIndex, 'correct', undefined, currentScore); - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, [option.option], this.slideDuration); - } - if (this.showFeedBack) this.correctFeedBackTimeOut(type); - this.alertType = 'correct'; - } - } - this.optionSelectedObj = undefined; - } else if (isQuestionSkipAllowed || isSubjectiveQuestion || onStartPage || isActive) { - if (!lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](type)) { + const onStartPage = this.startPageInstruction && this.myCarousel.getCurrentSlideIndex() === 0; + if (isQuestionSkipAllowed || onStartPage || this.active) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_23__["default"](type)) { this.nextSlide(); } - } else if (this.startPageInstruction && !this.optionSelectedObj && !this.active && !this.allowSkip && this.myCarousel.getCurrentSlideIndex() > 0 && this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])) { - this.infoPopupTimeOut(); - } else if (!this.optionSelectedObj && !this.active && !this.allowSkip && this.myCarousel.getCurrentSlideIndex() >= 0 && this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])) { + } else if (this.shouldShowInfoPopup(currentIndex)) { this.infoPopupTimeOut(); } } + shouldShowInfoPopup(currentIndex) { + const questionType = this.utilService.getQuestionType(this.questions, currentIndex); + const slideIndex = this.myCarousel.getCurrentSlideIndex(); + const canGo = this.utilService.canGo(this.progressBarClass[slideIndex]); + const commonConditions = !this.optionSelectedObj && !this.active && !this.allowSkip && (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq || questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mtf) && canGo; + return commonConditions && (this.startPageInstruction ? slideIndex > 0 : slideIndex >= 0); + } infoPopupTimeOut() { this.infoPopup = true; setTimeout(() => { @@ -92176,6 +104027,7 @@ class SectionPlayerComponent { this.showRootInstruction = false; if (index === 0) { this.optionSelectedObj = undefined; + this.mtfReorderedOptionsMap = undefined; this.myCarousel.selectSlide(0); this.active = this.currentSlideIndex === 0 && this.sectionIndex === 0 && this.showStartPage; this.showRootInstruction = true; @@ -92185,7 +104037,7 @@ class SectionPlayerComponent { } return; } - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.currentSlideIndex - 1], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.currentSlideIndex - 1], 'media'); this.setSkippedClass(this.currentSlideIndex - 1); /* istanbul ignore else */ if (!this.initializeTimer) { @@ -92242,7 +104094,7 @@ class SectionPlayerComponent { const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; this.currentQuestion = this.questions[currentIndex].body; this.currentOptions = this.questions[currentIndex].interactions.response1.options; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[currentIndex], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[currentIndex], 'media'); setTimeout(() => { this.setImageZoom(); }); @@ -92259,7 +104111,7 @@ class SectionPlayerComponent { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.viewSolutionClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); this.showSolution = true; this.showAlert = false; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); setTimeout(() => { this.setImageZoom(); this.setImageHeightWidthClass(); @@ -92303,31 +104155,6 @@ class SectionPlayerComponent { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.pageScrolled, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.impression, this.myCarousel.getCurrentSlideIndex() - 1); } } - getScore(currentIndex, key, isCorrectAnswer, selectedOption) { - /* istanbul ignore else */ - if (isCorrectAnswer) { - if (this.isShuffleQuestions) { - return _player_constants__WEBPACK_IMPORTED_MODULE_1__.DEFAULT_SCORE; - } - return this.questions[currentIndex].outcomeDeclaration.maxScore.defaultValue ? this.questions[currentIndex].outcomeDeclaration.maxScore.defaultValue : _player_constants__WEBPACK_IMPORTED_MODULE_1__.DEFAULT_SCORE; - } else { - const selectedOptionValue = selectedOption.option.value; - const mapping = this.questions[currentIndex].responseDeclaration.mapping; - let score = 0; - /* istanbul ignore else */ - if (mapping) { - mapping.forEach(val => { - if (selectedOptionValue === val.value) { - score = val.score || 0; - if (val.score) { - this.progressBarClass[currentIndex].class = 'partial'; - } - } - }); - } - return score; - } - } calculateScore() { return this.progressBarClass.reduce((accumulator, element) => accumulator + element.score, 0); } @@ -92358,7 +104185,6 @@ class SectionPlayerComponent { // } }); } - setImageZoom() { const index = this.myCarousel.getCurrentSlideIndex() - 1; const currentQuestionId = this.questions[index]?.identifier; @@ -92369,7 +104195,7 @@ class SectionPlayerComponent { const imageId = image.getAttribute('data-asset-variable'); image.setAttribute('class', 'option-image'); image.setAttribute('id', imageId); - lodash_es__WEBPACK_IMPORTED_MODULE_23__["default"](this.currentQuestionsMedia, val => { + lodash_es__WEBPACK_IMPORTED_MODULE_24__["default"](this.currentQuestionsMedia, val => { if (imageId === val.id) { if (this.parentConfig.isAvailableLocally && this.parentConfig.baseUrl) { let baseUrl = this.parentConfig.baseUrl; @@ -92435,29 +104261,29 @@ class SectionPlayerComponent { this.errorService.getInternetConnectivityError.unsubscribe(); } static #_ = this.ɵfac = function SectionPlayerComponent_Factory(t) { - return new (t || SectionPlayerComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__.ViewerService), _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_util_service__WEBPACK_IMPORTED_MODULE_3__.UtilService), _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_11__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.ErrorService)); + return new (t || SectionPlayerComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__.ViewerService), _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_util_service__WEBPACK_IMPORTED_MODULE_3__.UtilService), _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_12__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.ErrorService)); }; - static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdefineComponent"]({ + static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdefineComponent"]({ type: SectionPlayerComponent, selectors: [["quml-section-player"]], viewQuery: function SectionPlayerComponent_Query(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵviewQuery"](_c0, 5); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵviewQuery"](_c1, 7); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵviewQuery"](_c2, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵviewQuery"](_c0, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵviewQuery"](_c1, 7); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵviewQuery"](_c2, 5); } if (rf & 2) { let _t; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵloadQuery"]()) && (ctx.myCarousel = _t.first); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵloadQuery"]()) && (ctx.imageModal = _t.first); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵloadQuery"]()) && (ctx.questionSlide = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵloadQuery"]()) && (ctx.myCarousel = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵloadQuery"]()) && (ctx.imageModal = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵloadQuery"]()) && (ctx.questionSlide = _t.first); } }, hostBindings: function SectionPlayerComponent_HostBindings(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("beforeunload", function SectionPlayerComponent_beforeunload_HostBindingHandler() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("beforeunload", function SectionPlayerComponent_beforeunload_HostBindingHandler() { return ctx.ngOnDestroy(); - }, false, _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresolveWindow"]); + }, false, _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresolveWindow"]); } }, inputs: { @@ -92473,48 +104299,48 @@ class SectionPlayerComponent { sectionEnd: "sectionEnd", showScoreBoard: "showScoreBoard" }, - features: [_angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵNgOnChangesFeature"]], + features: [_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵNgOnChangesFeature"]], decls: 11, vars: 5, - consts: [["class", "quml-container", 3, "hidden", 4, "ngIf"], ["class", "info-popup", 4, "ngIf"], [4, "ngIf"], [1, "image-viewer__overlay", 3, "hidden"], [1, "image-viewer__close", 3, "click"], [1, "image-viewer__container"], ["id", "imageModal", "alt", "Zoomed image", 1, "image-viewer__img", 3, "src"], ["imageModal", ""], [1, "image-viewer__zoom"], [1, "image-viewer__zoomin", 3, "click"], [1, "image-viewer__zoomout", 3, "click"], [1, "quml-container", 3, "hidden"], [1, "quml-landscape", 3, "hidden"], [1, "main-header", 3, "disablePreviousNavigation", "duration", "warningTime", "showWarningTimer", "showTimer", "showLegend", "currentSlideIndex", "totalNoOfQuestions", "active", "showFeedBack", "currentSolutions", "initializeTimer", "replayed", "disableNext", "startPageInstruction", "attempts", "showStartPage", "showDeviceOrientation", "durationEnds", "nextSlideClicked", "prevSlideClicked", "showSolution", "toggleScreenRotate"], [1, "landscape-mode"], [1, "lanscape-mode-left"], ["class", "current-slide", 4, "ngIf"], [1, "landscape-content"], [1, "landscape-center", 3, "interval", "showIndicators", "noWrap", "activeSlideChange"], ["myCarousel", ""], [3, "instructions", "points", "time", "showTimer", "totalNoOfQuestions", "contentName"], [4, "ngFor", "ngForOf"], [1, "lanscape-mode-right"], ["tabindex", "0", 1, "showFeedBack-progressBar", "info-page", "hover-effect", 3, "ngClass", "keydown", "click"], ["class", "scoreboard-sections", 4, "ngIf"], ["class", "singleContent", 4, "ngIf"], ["class", "singleContent nonFeedback", 4, "ngIf"], ["class", "requiresSubmit cursor-pointer showFeedBack-progressBar hover-effect", "tabindex", "0", "aria-label", "scoreboard", 3, "click", "keydown", 4, "ngIf"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert", 4, "ngIf"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close", 4, "ngIf"], [1, "current-slide"], [3, "click", "keydown"], ["questionSlide", ""], [3, "id"], [3, "shuffleOptions", "question", "replayed", "identifier", "tryAgain", "optionSelected"], [3, "questions", "replayed", "baseUrl", "showAnswerClicked"], [1, "scoreboard-sections"], ["class", "section relative", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], [1, "section", "relative", 3, "ngClass", "click", "keydown"], ["tabindex", "0", 1, "progressBar-border", 3, "for", "ngClass"], ["class", "nonFeedback", 4, "ngIf"], ["tabindex", "0", "class", "showFeedBack-progressBar", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", 3, "ngClass", "click", "keydown"], [1, "nonFeedback"], [1, "singleContent"], ["tabindex", "0", "class", "showFeedBack-progressBar hover-effect", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", "hover-effect", 3, "ngClass", "click", "keydown"], [1, "singleContent", "nonFeedback"], ["tabindex", "0", "aria-label", "scoreboard", 1, "requiresSubmit", "cursor-pointer", "showFeedBack-progressBar", "hover-effect", 3, "click", "keydown"], ["src", "./assets/flag_inactive.svg", "alt", "Flag logo: Show scoreboard"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close"], [1, "info-popup"]], + consts: [["class", "quml-container", 3, "hidden", 4, "ngIf"], ["class", "info-popup", 4, "ngIf"], [4, "ngIf"], [1, "image-viewer__overlay", 3, "hidden"], [1, "image-viewer__close", 3, "click"], [1, "image-viewer__container"], ["id", "imageModal", "alt", "Zoomed image", 1, "image-viewer__img", 3, "src"], ["imageModal", ""], [1, "image-viewer__zoom"], [1, "image-viewer__zoomin", 3, "click"], [1, "image-viewer__zoomout", 3, "click"], [1, "quml-container", 3, "hidden"], [1, "quml-landscape", 3, "hidden"], [1, "main-header", 3, "disablePreviousNavigation", "duration", "warningTime", "showWarningTimer", "showTimer", "showLegend", "currentSlideIndex", "totalNoOfQuestions", "active", "showFeedBack", "currentSolutions", "initializeTimer", "replayed", "disableNext", "startPageInstruction", "attempts", "showStartPage", "showDeviceOrientation", "durationEnds", "nextSlideClicked", "prevSlideClicked", "showSolution", "toggleScreenRotate"], [1, "landscape-mode"], [1, "lanscape-mode-left"], ["class", "current-slide", 4, "ngIf"], [1, "landscape-content"], [1, "landscape-center", 3, "interval", "showIndicators", "noWrap", "activeSlideChange"], ["myCarousel", ""], [3, "instructions", "points", "time", "showTimer", "totalNoOfQuestions", "contentName"], [4, "ngFor", "ngForOf"], [1, "lanscape-mode-right"], ["tabindex", "0", 1, "showFeedBack-progressBar", "info-page", "hover-effect", 3, "ngClass", "keydown", "click"], ["class", "scoreboard-sections", 4, "ngIf"], ["class", "singleContent", 4, "ngIf"], ["class", "singleContent nonFeedback", 4, "ngIf"], ["class", "requiresSubmit cursor-pointer showFeedBack-progressBar hover-effect", "tabindex", "0", "aria-label", "scoreboard", 3, "click", "keydown", 4, "ngIf"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert", 4, "ngIf"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close", 4, "ngIf"], [1, "current-slide"], [3, "click", "keydown"], ["questionSlide", ""], [3, "id"], ["class", "mtf", 4, "ngIf"], [3, "shuffleOptions", "question", "replayed", "identifier", "tryAgain", "optionSelected"], [3, "questions", "replayed", "baseUrl", "showAnswerClicked"], [1, "mtf"], [3, "shuffleOptions", "question", "replayed", "tryAgain", "optionsReordered"], [1, "scoreboard-sections"], ["class", "section relative", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], [1, "section", "relative", 3, "ngClass", "click", "keydown"], ["tabindex", "0", 1, "progressBar-border", 3, "for", "ngClass"], ["class", "nonFeedback", 4, "ngIf"], ["tabindex", "0", "class", "showFeedBack-progressBar", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", 3, "ngClass", "click", "keydown"], [1, "nonFeedback"], [1, "singleContent"], ["tabindex", "0", "class", "showFeedBack-progressBar hover-effect", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", "hover-effect", 3, "ngClass", "click", "keydown"], [1, "singleContent", "nonFeedback"], ["tabindex", "0", "aria-label", "scoreboard", 1, "requiresSubmit", "cursor-pointer", "showFeedBack-progressBar", "hover-effect", 3, "click", "keydown"], ["src", "./assets/flag_inactive.svg", "alt", "Flag logo: Show scoreboard"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close"], [1, "info-popup"]], template: function SectionPlayerComponent_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](0, SectionPlayerComponent_div_0_Template, 27, 39, "div", 0); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_1_Template, 2, 0, "div", 1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](2, SectionPlayerComponent_sb_player_contenterror_2_Template, 1, 0, "sb-player-contenterror", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](3, "div", 3)(4, "div", 4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_4_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](0, SectionPlayerComponent_div_0_Template, 27, 39, "div", 0); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_1_Template, 2, 0, "div", 1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](2, SectionPlayerComponent_sb_player_contenterror_2_Template, 1, 0, "sb-player-contenterror", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](3, "div", 3)(4, "div", 4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_4_listener() { return ctx.closeZoom(); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](5, "div", 5); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](6, "img", 6, 7); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](8, "div", 8)(9, "div", 9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_9_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](5, "div", 5); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](6, "img", 6, 7); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](8, "div", 8)(9, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_9_listener() { return ctx.zoomIn(); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](10, "div", 10); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_10_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](10, "div", 10); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_10_listener() { return ctx.zoomOut(); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()()(); } if (rf & 2) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx.loadView); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx.infoPopup); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx.showContentError); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("hidden", !ctx.showZoomModal); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("src", ctx.zoomImgSrc, _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵsanitizeUrl"]); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx.loadView); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx.infoPopup); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx.showContentError); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("hidden", !ctx.showZoomModal); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("src", ctx.zoomImgSrc, _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵsanitizeUrl"]); } }, - dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_24__.NgClass, _angular_common__WEBPACK_IMPORTED_MODULE_24__.NgForOf, _angular_common__WEBPACK_IMPORTED_MODULE_24__.NgIf, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_25__.SlideComponent, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_25__.CarouselComponent, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.ContenterrorComponent, _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__.McqComponent, _header_header_component__WEBPACK_IMPORTED_MODULE_5__.HeaderComponent, _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__.SaComponent, _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_7__.AnsComponent, _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__.StartpageComponent, _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__.AlertComponent, _mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_10__.McqSolutionsComponent], - styles: ["@charset \"UTF-8\";\n :root {\n --quml-scoreboard-sub-title: #6d7278;\n --quml-scoreboard-skipped: #969696;\n --quml-scoreboard-unattempted: #575757;\n --quml-color-success: #08bc82;\n --quml-color-danger: #f1635d;\n --quml-color-primary-contrast: #333;\n --quml-btn-border: #ccc;\n --quml-heder-text-color: #6250f5;\n --quml-header-bg-color: #c2c2c2;\n --quml-mcq-title-txt: #131415;\n --quml-zoom-btn-txt: #eee;\n --quml-zoom-btn-hover: #f2f2f2;\n --quml-main-bg: #fff;\n --quml-btn-color: #fff;\n --quml-question-bg: #fff;\n}\n\n.quml-header[_ngcontent-%COMP%] {\n background: var(--quml-header-bg-color);\n display: flow-root;\n height: 2.25rem;\n position: fixed;\n}\n\n.quml-container[_ngcontent-%COMP%] {\n overflow: hidden;\n width: 100%;\n height: 100%;\n position: relative;\n}\n\n.quml-landscape[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n\n .carousel {\n outline: none;\n}\n\n.col[_ngcontent-%COMP%] {\n padding-left: 0px;\n padding-right: 0px;\n}\n\n.quml-button[_ngcontent-%COMP%] {\n background-color: var(--primary-color);\n \n\n border: none;\n color: var(--quml-btn-color);\n padding: 0.25rem;\n text-align: center;\n text-decoration: none;\n font-size: 1rem;\n margin: 0.125rem 0.5rem 0.125rem 0.125rem;\n cursor: pointer;\n width: 3rem;\n height: 2.5rem;\n border-radius: 10%;\n}\n\n.landscape-mode[_ngcontent-%COMP%] {\n height: 100%;\n width: 100%;\n position: relative;\n background-color: var(--quml-main-bg);\n}\n\n.landscape-content[_ngcontent-%COMP%] {\n padding: 2.5rem 4rem 0 4rem;\n overflow: auto;\n height: 100%;\n width: 100%;\n}\n@media only screen and (max-width: 480px) {\n .landscape-content[_ngcontent-%COMP%] {\n padding: 5rem 1rem 0 1rem;\n height: calc(100% - 3rem);\n }\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] {\n position: absolute;\n left: 0;\n top: 3.5rem;\n text-align: center;\n z-index: 1;\n width: 4rem;\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] div[_ngcontent-%COMP%] {\n padding-bottom: 1.5rem;\n}\n\n.landscape-center[_ngcontent-%COMP%] {\n width: 100%;\n}\n\n.lanscape-mode-right[_ngcontent-%COMP%] {\n -ms-overflow-style: none; \n\n scrollbar-width: none; \n\n position: absolute;\n padding: 0 1rem;\n right: 0.5rem;\n color: var(--quml-scoreboard-unattempted);\n font-size: 0.75rem;\n height: calc(100% - 4rem);\n overflow-y: auto;\n top: 3.5rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n margin-top: 0.5rem;\n padding: 0;\n text-align: center;\n position: relative;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 0.0625rem;\n height: 100%;\n position: absolute;\n left: 0;\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 1;\n margin: 0 auto;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n width: 1.25rem;\n height: 1.25rem;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n display: inline-block;\n transform: rotate(45deg);\n height: 0.6rem;\n width: 0.3rem;\n border-bottom: 0.12rem solid var(--primary-color);\n border-right: 0.12rem solid var(--primary-color);\n position: absolute;\n top: 0.25rem;\n right: -0.7rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n position: absolute;\n top: 0.525rem;\n right: -0.7rem;\n height: 0.375rem;\n width: 0.375rem;\n border-radius: 0.375rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%] label[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n color: var(--white) !important;\n background: var(--primary-color);\n border: 0.03125rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 0.25rem;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n height: 1.65rem;\n border-radius: 0.25rem;\n position: absolute;\n width: 1.65rem;\n background: var(--quml-question-bg);\n z-index: -1;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] {\n display: none;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n height: 0;\n transform: scaleY(0);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n height: 100%;\n transform-origin: top;\n transition: transform 0.2s ease-out;\n transform: scaleY(1);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ label[_ngcontent-%COMP%] {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 50%;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border: 0.0625rem solid rgb(204, 204, 204);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.progressBar-border[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] .active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.att-color[_ngcontent-%COMP%] {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.info-page[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]:hover {\n color: var(--white) !important;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n color: var(--white);\n border: 0px solid transparent;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%] {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%] {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n\n.current-slide[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-sub-title);\n font-size: 0.875rem;\n font-weight: 900;\n letter-spacing: 0;\n}\n\n@media only screen and (max-width: 480px) {\n .lanscape-mode-right[_ngcontent-%COMP%] {\n background: var(--white);\n display: flex;\n align-items: center;\n overflow-x: auto;\n overflow-y: hidden;\n width: 90%;\n height: 2.5rem;\n padding: 1rem 0 0;\n margin: auto;\n left: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n padding: 0;\n text-align: center;\n position: relative;\n display: flex;\n height: 1.5rem;\n margin-top: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n z-index: 1;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 0px;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] {\n display: flex;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 2.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n top: -1.75rem;\n position: inherit;\n margin: 0.5rem 2.25rem;\n padding-left: 1.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n background: transparent;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.8125rem;\n right: auto;\n left: 0.625rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n margin-bottom: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 100%;\n height: 0.0625rem;\n position: absolute;\n left: 0;\n top: 50%;\n transform: translate(0, -50%);\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 0;\n margin: 0 auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n width: 0;\n transform: scaleX(0);\n margin: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n width: calc(100% - 4rem);\n transform-origin: left;\n transition: transform 0.2s ease-out;\n transform: scaleX(1);\n margin: -1.25rem 3rem 0 4rem;\n }\n .landscape-center[_ngcontent-%COMP%] {\n margin-top: 2rem;\n }\n .lanscape-mode-left[_ngcontent-%COMP%] {\n display: none;\n }\n .landscape-mode[_ngcontent-%COMP%] {\n grid-template-areas: \"right right right\" \"center center center\" \"left left left\";\n }\n}\n.quml-timer[_ngcontent-%COMP%] {\n padding: 0.5rem;\n}\n\n.quml-header-text[_ngcontent-%COMP%] {\n margin: 0.5rem;\n text-align: center;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n\n.quml-arrow-button[_ngcontent-%COMP%] {\n border-radius: 28%;\n font-size: 0%;\n outline: none;\n background-color: var(--primary-color);\n padding: 0.5rem;\n}\n\n.info-popup[_ngcontent-%COMP%] {\n position: absolute;\n top: 18%;\n right: 10%;\n font-size: 0.875rem;\n box-shadow: 0 0.125rem 0.875rem 0 rgba(0, 0, 0, 0.1);\n padding: 0.75rem;\n}\n\n.quml-menu[_ngcontent-%COMP%] {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n.quml-card[_ngcontent-%COMP%] {\n background-color: var(--white);\n padding: 1.25rem;\n box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);\n width: 25%;\n position: absolute;\n left: 37%;\n text-align: center;\n top: 25%;\n z-index: 2;\n}\n\n.quml-card-title[_ngcontent-%COMP%] {\n font-size: 1.25rem;\n text-align: center;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .wrong[_ngcontent-%COMP%] {\n color: red;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .right[_ngcontent-%COMP%] {\n color: green;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] button[_ngcontent-%COMP%] {\n color: var(--white);\n background-color: var(--primary-color);\n border-color: var(--primary-color);\n outline: none;\n font-size: 0.875rem;\n padding: 0.25rem 1.5rem;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] {\n width: 40%;\n display: inline;\n padding-right: 0.75rem;\n}\n\n .carousel.slide a.left.carousel-control.carousel-control-prev, .carousel.slide .carousel-control.carousel-control-next {\n display: none;\n}\n .carousel-item {\n perspective: unset;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] {\n visibility: hidden;\n margin-top: -2.5rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%] {\n display: grid;\n grid-template-columns: 1fr 15fr;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-menu[_ngcontent-%COMP%] {\n color: var(--quml-heder-text-color);\n font-size: 1.5rem;\n padding-left: 1.25rem;\n margin-top: 0.25rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-header-text[_ngcontent-%COMP%] {\n font-size: 0.875rem;\n color: var(--quml-heder-text-color);\n}\n\n.row[_ngcontent-%COMP%] {\n margin-right: 0px;\n margin-left: 0px;\n}\n\n.portrait-header[_ngcontent-%COMP%] {\n visibility: hidden;\n}\n\n.image-viewer__overlay[_ngcontent-%COMP%], .image-viewer__container[_ngcontent-%COMP%], .image-viewer__close[_ngcontent-%COMP%], .image-viewer__zoom[_ngcontent-%COMP%] {\n position: absolute;\n}\n.image-viewer__overlay[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n background: var(--quml-color-primary-contrast);\n z-index: 11111;\n}\n.image-viewer__container[_ngcontent-%COMP%] {\n background-color: var(--quml-color-primary-contrast);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 11111;\n width: 80%;\n height: 80%;\n}\n.image-viewer__img[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n.image-viewer__close[_ngcontent-%COMP%] {\n top: 1rem;\n right: 1rem;\n text-align: center;\n cursor: pointer;\n z-index: 999999;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 100%;\n width: 3rem;\n height: 3rem;\n position: inherit;\n}\n.image-viewer__close[_ngcontent-%COMP%]::after {\n content: \"\u2715\";\n color: var(--white);\n font-size: 2rem;\n}\n.image-viewer__close[_ngcontent-%COMP%]:hover {\n background: rgb(0, 0, 0);\n}\n.image-viewer__zoom[_ngcontent-%COMP%] {\n bottom: 1rem;\n right: 1rem;\n width: 2.5rem;\n height: auto;\n border-radius: 0.5rem;\n background: var(--white);\n display: flex;\n flex-direction: column;\n align-items: center;\n overflow: hidden;\n z-index: 99999;\n position: inherit;\n border: 0.0625rem solid var(--quml-zoom-btn-txt);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%], .image-viewer__zoomout[_ngcontent-%COMP%] {\n text-align: center;\n height: 2.5rem;\n position: relative;\n width: 2.5rem;\n cursor: pointer;\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]:hover, .image-viewer__zoomout[_ngcontent-%COMP%]:hover {\n background-color: var(--quml-zoom-btn-hover);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after, .image-viewer__zoomout[_ngcontent-%COMP%]::after {\n font-size: 1.5rem;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%] {\n border-bottom: 0.0625rem solid var(--quml-btn-border);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after {\n content: \"+\";\n}\n.image-viewer__zoomout[_ngcontent-%COMP%]::after {\n content: \"\u2212\";\n}\n\n\n\n quml-ans {\n cursor: pointer;\n}\n quml-ans svg circle {\n fill: var(--quml-zoom-btn-txt);\n}\n .magnify-icon {\n position: absolute;\n right: 0;\n bottom: 0;\n width: 1.5rem;\n height: 1.5rem;\n border-top-left-radius: 0.5rem;\n cursor: pointer;\n background-color: var(--quml-color-primary-contrast);\n}\n .magnify-icon::after {\n content: \"\";\n position: absolute;\n bottom: 0.125rem;\n right: 0.125rem;\n z-index: 1;\n width: 1rem;\n height: 1rem;\n background-image: url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n .solution-options figure.image {\n border: 0.0625rem solid var(--quml-btn-border);\n overflow: hidden;\n border-radius: 0.25rem;\n position: relative;\n}\n .solutions .solution-options figure.image, .image-viewer__overlay .image-viewer__container {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n .solutions .solution-options figure.image .portrait, .image-viewer__overlay .image-viewer__container .portrait {\n width: auto;\n height: 100%;\n}\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: auto;\n height: auto;\n}\n@media only screen and (max-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: 100%;\n }\n}\n@media only screen and (min-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n height: 100%;\n }\n}\n .solutions .solution-options figure.image .landscape, .image-viewer__overlay .image-viewer__container .landscape {\n height: auto;\n}\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .quml-mcq .mcq-title p, .quml-sa .mcq-title p, quml-sa .mcq-title p, quml-mcq-solutions .mcq-title p {\n word-break: break-word;\n}\n@media only screen and (max-width: 480px) {\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n margin-top: 1rem;\n }\n}\n .quml-mcq .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-mcq .quml-mcq--option .quml-mcq-option-card p:last-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:first-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:last-child {\n margin-bottom: 0;\n}\n quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-25, quml-mcq-solutions figure.image.resize-50, quml-mcq-solutions figure.image.resize-75, quml-mcq-solutions figure.image.resize-100, quml-mcq-solutions figure.image.resize-original {\n width: 25%;\n height: auto;\n}\n quml-mcq-solutions .solution-options p {\n margin-bottom: 1rem;\n}\n .quml-option .option p {\n word-break: break-word;\n}\n\n.endPage-container-height[_ngcontent-%COMP%] {\n height: 100%;\n}\n\n.scoreboard-sections[_ngcontent-%COMP%] {\n display: contents;\n}\n.scoreboard-sections[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n\n.hover-effect[_ngcontent-%COMP%]:hover::after, .hover-effect[_ngcontent-%COMP%]:focus::after, .hover-effect.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3NlY3Rpb24tcGxheWVyL3NlY3Rpb24tcGxheWVyLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdCQUFnQjtBQUVoQjtFQUNFLG9DQUFBO0VBQ0Esa0NBQUE7RUFDQSxzQ0FBQTtFQUNBLDZCQUFBO0VBQ0EsNEJBQUE7RUFDQSxtQ0FBQTtFQUNBLHVCQUFBO0VBQ0EsZ0NBQUE7RUFDQSwrQkFBQTtFQUNBLDZCQUFBO0VBQ0EseUJBQUE7RUFDQSw4QkFBQTtFQUNBLG9CQUFBO0VBQ0Esc0JBQUE7RUFDQSx3QkFBQTtBQUFGOztBQUdBO0VBQ0UsdUNBQUE7RUFDQSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxlQUFBO0FBQUY7O0FBR0E7RUFDRSxnQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7QUFBRjs7QUFHQTtFQUNFLFdBQUE7RUFDQSxZQUFBO0FBQUY7O0FBR0E7RUFDRSxhQUFBO0FBQUY7O0FBR0E7RUFDRSxpQkFBQTtFQUNBLGtCQUFBO0FBQUY7O0FBR0E7RUFDRSxzQ0FBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsNEJBQUE7RUFDQSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EscUJBQUE7RUFDQSxlQUFBO0VBQ0EseUNBQUE7RUFDQSxlQUFBO0VBQ0EsV0FBQTtFQUNBLGNBQUE7RUFDQSxrQkFBQTtBQUFGOztBQUdBO0VBQ0UsWUFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtFQUNBLHFDQUFBO0FBQUY7O0FBR0E7RUFDRSwyQkFBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtBQUFGO0FBRUU7RUFORjtJQU9JLHlCQUFBO0lBQ0EseUJBQUE7RUFDRjtBQUNGOztBQUVBO0VBQ0Usa0JBQUE7RUFDQSxPQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7QUFDRjs7QUFFQTtFQUNFLHNCQUFBO0FBQ0Y7O0FBRUE7RUFDRSxXQUFBO0FBQ0Y7O0FBRUE7RUFDRSx3QkFBQSxFQUFBLGdCQUFBO0VBQ0EscUJBQUEsRUFBQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxlQUFBO0VBQ0EsYUFBQTtFQUNBLHlDQUFBO0VBQ0Esa0JBQUE7RUFDQSx5QkFBQTtFQUNBLGdCQUFBO0VBQ0EsV0FBQTtBQUNGO0FBQ0U7RUFDRSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7QUFDSjtBQUNJO0VBQ0UsV0FBQTtFQUNBLGdCQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0EsT0FBQTtFQUNBLFFBQUE7RUFDQSwwQ0FBQTtFQUNBLFVBQUE7RUFDQSxjQUFBO0FBQ047QUFDSTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQUNOO0FBQ007RUFDRSx5Q0FBQTtFQUNBLDJEQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLHdCQUFBO0FBQ1I7QUFBUTtFQUNFLDRDQUFBO0FBRVY7QUFHTTtFQUNFLHNDQUFBO0VBQ0EsMkJBQUE7QUFEUjtBQUdNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtBQURSO0FBT1U7RUFDRSxzQ0FBQTtFQUNBLDJCQUFBO0FBTFo7QUFPVTtFQUNFLG1CQUFBO0VBQ0EsZ0NBQUE7QUFMWjtBQVlZO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsY0FBQTtFQUNBLGVBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0Esa0JBQUE7QUFWZDtBQWlCUTtFQUNFLFdBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsY0FBQTtFQUNBLGFBQUE7RUFDQSxpREFBQTtFQUNBLGdEQUFBO0VBQ0Esa0JBQUE7RUFDQSxZQUFBO0VBQ0EsY0FBQTtBQWZWO0FBa0JNO0VBR0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSxnQkFBQTtFQUNBLGVBQUE7RUFDQSx1QkFBQTtBQWxCUjtBQXFCUTtFQUNFLHVDQUFBO0VBQ0EsNkJBQUE7QUFuQlY7QUF1QlE7RUFDRSxvQ0FBQTtFQUNBLDJCQUFBO0FBckJWO0FBeUJRO0VBQ0U7Ozs7OztHQUFBO0VBT0EsNkJBQUE7QUF2QlY7QUE0QlE7RUFDRSw4QkFBQTtFQUNBLGdDQUFBO0VBQ0EsNkNBQUE7QUExQlY7QUE4Qkk7RUFDRSx5Q0FBQTtFQUNBLHNCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EseUNBQUE7RUFDQSwyREFBQTtFQUNBLHNCQUFBO0VBQ0EsZUFBQTtBQTVCTjtBQThCTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7RUFDQSxrQkFBQTtFQUNBLHdCQUFBO0FBNUJSO0FBNkJRO0VBQ0UsNENBQUE7QUEzQlY7QUE4Qk07RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBOUJSO0FBK0JRO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtFQUNBLHNCQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsbUNBQUE7RUFDQSxXQUFBO0FBN0JWO0FBZ0NNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBOUJSO0FBZ0NNO0VBQ0UseUNBQUE7RUFDQSwyREFBQTtBQTlCUjtBQStCUTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUE3QlY7QUFpQ0k7RUFDRSxhQUFBO0FBL0JOO0FBaUNJO0VBQ0UsU0FBQTtFQUNBLG9CQUFBO0FBL0JOO0FBaUNJO0VBQ0UsWUFBQTtFQUNBLHFCQUFBO0VBQ0EsbUNBQUE7RUFDQSxvQkFBQTtBQS9CTjtBQWtDTTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUFoQ1I7QUFtQ0k7RUFDRSx5Q0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EsMENBQUE7RUFDQSxzQkFBQTtFQUNBLGVBQUE7QUFqQ047QUFtQ1E7RUFDRSw0Q0FBQTtBQWpDVjtBQXFDTTs7RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBcENSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtFQUNBLDRDQUFBO0FBckNSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBckNSO0FBc0NRO0VBQ0UsOEJBQUE7QUFwQ1Y7QUF1Q007RUFHRSxtQkFBQTtFQUNBLDZCQUFBO0FBdkNSO0FBeUNNO0VBQ0UsdUNBQUE7RUFDQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLG9DQUFBO0VBQ0EsMkJBQUE7QUF2Q1I7QUF5Q007RUFDRTs7Ozs7O0dBQUE7RUFPQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7QUF2Q1I7QUF3Q1E7RUFDRSw0Q0FBQTtFQUNBLDJCQUFBO0FBdENWOztBQTZDQTtFQUNFLHVDQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0FBMUNGOztBQTZDQTtFQUNFO0lBQ0Usd0JBQUE7SUFDQSxhQUFBO0lBQ0EsbUJBQUE7SUFDQSxnQkFBQTtJQUNBLGtCQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7SUFDQSxpQkFBQTtJQUNBLFlBQUE7SUFDQSxPQUFBO0VBMUNGO0VBMkNFO0lBQ0UsZ0JBQUE7SUFDQSxVQUFBO0lBQ0Esa0JBQUE7SUFDQSxrQkFBQTtJQUNBLGFBQUE7SUFDQSxjQUFBO0lBQ0EsYUFBQTtFQXpDSjtFQTBDSTtJQUNFLHFCQUFBO0lBQ0EsVUFBQTtFQXhDTjtFQTBDTTtJQUNFLGlCQUFBO0VBeENSO0VBMkNJO0lBQ0UsYUFBQTtFQXpDTjtFQTBDTTtJQUNFLHFCQUFBO0VBeENSO0VBNENNO0lBQ0UsYUFBQTtJQUNBLGlCQUFBO0lBQ0Esc0JBQUE7SUFDQSxxQkFBQTtFQTFDUjtFQTJDUTtJQUNFLHVCQUFBO0VBekNWO0VBNkNRO0lBQ0UsV0FBQTtJQUNBLGVBQUE7SUFDQSxXQUFBO0lBQ0EsY0FBQTtFQTNDVjtFQStDUTtJQUNFLFdBQUE7SUFDQSxjQUFBO0lBQ0EsWUFBQTtJQUNBLFdBQUE7RUE3Q1Y7RUFpRFE7SUFDRSxXQUFBO0lBQ0EsY0FBQTtJQUNBLFlBQUE7SUFDQSxXQUFBO0VBL0NWO0VBbURRO0lBQ0UsV0FBQTtJQUNBLGNBQUE7SUFDQSxZQUFBO0lBQ0EsV0FBQTtFQWpEVjtFQXFESTtJQUNFLHFCQUFBO0lBQ0EsZ0JBQUE7RUFuRE47RUFxREk7SUFDRSxXQUFBO0lBQ0EsV0FBQTtJQUNBLGlCQUFBO0lBQ0Esa0JBQUE7SUFDQSxPQUFBO0lBQ0EsUUFBQTtJQUNBLDZCQUFBO0lBQ0EsUUFBQTtJQUNBLDBDQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7RUFuRE47RUF1REE7SUFDRSxRQUFBO0lBQ0Esb0JBQUE7SUFDQSxTQUFBO0VBckRGO0VBdURBO0lBQ0Usd0JBQUE7SUFDQSxzQkFBQTtJQUNBLG1DQUFBO0lBQ0Esb0JBQUE7SUFDQSw0QkFBQTtFQXJERjtFQXVEQTtJQUNFLGdCQUFBO0VBckRGO0VBd0RBO0lBQ0UsYUFBQTtFQXRERjtFQXlEQTtJQUNFLGdGQUNFO0VBeERKO0FBQ0Y7QUE2REE7RUFDRSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGNBQUE7RUFDQSxrQkFBQTtFQUNBLHVCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxtQkFBQTtBQTNERjs7QUE4REE7RUFDRSxrQkFBQTtFQUNBLGFBQUE7RUFDQSxhQUFBO0VBQ0Esc0NBQUE7RUFDQSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7RUFDQSxtQkFBQTtFQUVBLG9EQUFBO0VBQ0EsZ0JBQUE7QUE1REY7O0FBK0RBO0VBQ0UsYUFBQTtFQUNBLGNBQUE7QUE1REY7O0FBK0RBO0VBQ0UsOEJBQUE7RUFDQSxnQkFBQTtFQUNBLGlEQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0EsU0FBQTtFQUNBLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7QUE1REY7O0FBK0RBO0VBQ0Usa0JBQUE7RUFDQSxrQkFBQTtBQTVERjs7QUErREE7RUFDRSxVQUFBO0FBNURGOztBQStEQTtFQUNFLFlBQUE7QUE1REY7O0FBK0RBO0VBQ0UsbUJBQUE7RUFDQSxzQ0FBQTtFQUNBLGtDQUFBO0VBQ0EsYUFBQTtFQUNBLG1CQUFBO0VBQ0EsdUJBQUE7QUE1REY7O0FBK0RBO0VBQ0UsVUFBQTtFQUNBLGVBQUE7RUFDQSxzQkFBQTtBQTVERjs7QUFpRUk7O0VBRUUsYUFBQTtBQTlETjtBQWtFRTtFQUNFLGtCQUFBO0FBaEVKOztBQW9FQTtFQUNFLGtCQUFBO0VBQ0EsbUJBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsYUFBQTtFQUNBLCtCQUFBO0FBakVGOztBQW9FQTtFQUNFLG1DQUFBO0VBQ0EsaUJBQUE7RUFDQSxxQkFBQTtFQUNBLG1CQUFBO0FBakVGOztBQW9FQTtFQUNFLG1CQUFBO0VBQ0EsbUNBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsaUJBQUE7RUFDQSxnQkFBQTtBQWpFRjs7QUFvRUE7RUFDRSxrQkFBQTtBQWpFRjs7QUFxRUU7RUFJRSxrQkFBQTtBQXJFSjtBQXdFRTtFQUNFLFdBQUE7RUFDQSxZQUFBO0VBQ0EsOENBQUE7RUFDQSxjQUFBO0FBdEVKO0FBeUVFO0VBQ0Usb0RBQUE7RUFDQSxRQUFBO0VBQ0EsU0FBQTtFQUNBLGdDQUFBO0VBQ0EsY0FBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0FBdkVKO0FBMEVFO0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUF4RUo7QUEyRUU7RUFDRSxTQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7RUFDQSw4QkFBQTtFQUNBLG1CQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQXpFSjtBQTJFSTtFQUNFLFlBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QUF6RU47QUE0RUk7RUFDRSx3QkFBQTtBQTFFTjtBQThFRTtFQUNFLFlBQUE7RUFDQSxXQUFBO0VBQ0EsYUFBQTtFQUNBLFlBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsYUFBQTtFQUNBLHNCQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGNBQUE7RUFDQSxpQkFBQTtFQUNBLGdEQUFBO0FBNUVKO0FBK0VFO0VBRUUsa0JBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSxhQUFBO0VBQ0EsZUFBQTtBQTlFSjtBQWdGSTtFQUNFLDRDQUFBO0FBOUVOO0FBaUZJO0VBQ0UsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsZ0NBQUE7QUEvRU47QUFtRkU7RUFDRSxxREFBQTtBQWpGSjtBQW1GSTtFQUNFLFlBQUE7QUFqRk47QUFzRkk7RUFDRSxZQUFBO0FBcEZOOztBQXlGQSxlQUFBO0FBRUU7RUFDRSxlQUFBO0FBdkZKO0FBd0ZJO0VBQ0UsOEJBQUE7QUF0Rk47QUEwRkU7RUFDRSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSw4QkFBQTtFQUNBLGVBQUE7RUFDQSxvREFBQTtBQXhGSjtBQTJGRTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHc0REFBQTtFQUNBLHNCQUFBO0VBQ0EsNEJBQUE7RUFDQSwyQkFBQTtBQXpGSjtBQTRGRTtFQUNFLDhDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxzQkFBQTtFQUNBLGtCQUFBO0FBMUZKO0FBK0ZFOztFQUVFLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0FBN0ZKO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBOEZNO0VBSkY7O0lBS0ksV0FBQTtFQTFGTjtBQUNGO0FBNEZNO0VBUkY7O0lBU0ksWUFBQTtFQXhGTjtBQUNGO0FBMkZJOztFQUNFLFlBQUE7QUF4Rk47QUFnR0k7Ozs7RUFDRSxnQ0FBQTtBQTNGTjtBQTZGTTs7OztFQUNFLHNCQUFBO0FBeEZSO0FBMEZNO0VBTkY7Ozs7SUFPSSxnQkFBQTtFQXBGTjtBQUNGO0FBOEZNOzs7Ozs7OztFQUVFLGdCQUFBO0FBdEZSO0FBMkZJOzs7Ozs7RUFNRSxVQUFBO0VBQ0EsWUFBQTtBQXpGTjtBQTRGSTtFQUNFLG1CQUFBO0FBMUZOO0FBOEZFO0VBQ0Usc0JBQUE7QUE1Rko7O0FBZ0dBO0VBQ0UsWUFBQTtBQTdGRjs7QUErRkE7RUFDRSxpQkFBQTtBQTVGRjtBQTZGRTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQTNGSjs7QUFrR0k7RUFDRSxzQ0FBQTtFQUNBLFdBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtBQS9GTiIsInNvdXJjZXNDb250ZW50IjpbIkBpbXBvcnQgXCIuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvQHByb2plY3Qtc3VuYmlyZC9zYi1zdHlsZXMvYXNzZXRzL21peGlucy9taXhpbnNcIjtcblxuOjpuZy1kZWVwIDpyb290IHtcbiAgLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlOiAjNmQ3Mjc4O1xuICAtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkOiAjOTY5Njk2O1xuICAtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZDogIzU3NTc1NztcbiAgLS1xdW1sLWNvbG9yLXN1Y2Nlc3M6ICMwOGJjODI7XG4gIC0tcXVtbC1jb2xvci1kYW5nZXI6ICNmMTYzNWQ7XG4gIC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0OiAjMzMzO1xuICAtLXF1bWwtYnRuLWJvcmRlcjogI2NjYztcbiAgLS1xdW1sLWhlZGVyLXRleHQtY29sb3I6ICM2MjUwZjU7XG4gIC0tcXVtbC1oZWFkZXItYmctY29sb3I6ICNjMmMyYzI7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xuICAtLXF1bWwtem9vbS1idG4tdHh0OiAjZWVlO1xuICAtLXF1bWwtem9vbS1idG4taG92ZXI6ICNmMmYyZjI7XG4gIC0tcXVtbC1tYWluLWJnOiAjZmZmO1xuICAtLXF1bWwtYnRuLWNvbG9yOiAjZmZmO1xuICAtLXF1bWwtcXVlc3Rpb24tYmc6ICNmZmY7XG59XG5cbi5xdW1sLWhlYWRlciB7XG4gIGJhY2tncm91bmQ6IHZhcigtLXF1bWwtaGVhZGVyLWJnLWNvbG9yKTtcbiAgZGlzcGxheTogZmxvdy1yb290O1xuICBoZWlnaHQ6IDIuMjVyZW07XG4gIHBvc2l0aW9uOiBmaXhlZDtcbn1cblxuLnF1bWwtY29udGFpbmVyIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4ucXVtbC1sYW5kc2NhcGUge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xufVxuXG46Om5nLWRlZXAgLmNhcm91c2VsIHtcbiAgb3V0bGluZTogbm9uZTtcbn1cblxuLmNvbCB7XG4gIHBhZGRpbmctbGVmdDogMHB4O1xuICBwYWRkaW5nLXJpZ2h0OiAwcHg7XG59XG5cbi5xdW1sLWJ1dHRvbiB7XG4gIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAvKiBOYXZ5IEJsdWUgKi9cbiAgYm9yZGVyOiBub25lO1xuICBjb2xvcjogdmFyKC0tcXVtbC1idG4tY29sb3IpO1xuICBwYWRkaW5nOiAwLjI1cmVtO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgZm9udC1zaXplOiAxcmVtO1xuICBtYXJnaW46IDAuMTI1cmVtIDAuNXJlbSAwLjEyNXJlbSAwLjEyNXJlbTtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB3aWR0aDogM3JlbTtcbiAgaGVpZ2h0OiAyLjVyZW07XG4gIGJvcmRlci1yYWRpdXM6IDEwJTtcbn1cblxuLmxhbmRzY2FwZS1tb2RlIHtcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLW1haW4tYmcpO1xufVxuXG4ubGFuZHNjYXBlLWNvbnRlbnQge1xuICBwYWRkaW5nOiAyLjVyZW0gNHJlbSAwIDRyZW07XG4gIG92ZXJmbG93OiBhdXRvO1xuICBoZWlnaHQ6IDEwMCU7XG4gIHdpZHRoOiAxMDAlO1xuXG4gIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgICBwYWRkaW5nOiA1cmVtIDFyZW0gMCAxcmVtO1xuICAgIGhlaWdodDogY2FsYygxMDAlIC0gM3JlbSk7XG4gIH1cbn1cblxuLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgdG9wOiAzLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgei1pbmRleDogMTtcbiAgd2lkdGg6IDRyZW07XG59XG5cbi5sYW5zY2FwZS1tb2RlLWxlZnQgZGl2IHtcbiAgcGFkZGluZy1ib3R0b206IDEuNXJlbTtcbn1cblxuLmxhbmRzY2FwZS1jZW50ZXIge1xuICB3aWR0aDogMTAwJTtcbn1cblxuLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7IC8qIElFIGFuZCBFZGdlICovXG4gIHNjcm9sbGJhci13aWR0aDogbm9uZTsgLyogRmlyZWZveCAqL1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHBhZGRpbmc6IDAgMXJlbTtcbiAgcmlnaHQ6IDAuNXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgaGVpZ2h0OiBjYWxjKDEwMCUgLSA0cmVtKTtcbiAgb3ZlcmZsb3cteTogYXV0bztcbiAgdG9wOiAzLjVyZW07XG5cbiAgdWwge1xuICAgIGxpc3Qtc3R5bGU6IG5vbmU7XG4gICAgbWFyZ2luLXRvcDogMC41cmVtO1xuICAgIHBhZGRpbmc6IDA7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuICAgICY6OmJlZm9yZSB7XG4gICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgd2lkdGg6IDAuMDYyNXJlbTtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgIGxlZnQ6IDA7XG4gICAgICByaWdodDogMDtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjA0LCAyMDQsIDIwNCwgMC41KTtcbiAgICAgIHotaW5kZXg6IDE7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICB9XG4gICAgbGkge1xuICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgICAgei1pbmRleDogMjtcblxuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICAgIC5zaW5nbGVDb250ZW50Lm5vbkZlZWRiYWNrIHtcbiAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cbiAgICAgIGxpLmF0dC1jb2xvciB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiB7XG4gICAgICB1bCB7XG4gICAgICAgICYubm9uRmVlZGJhY2sge1xuICAgICAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgICBsaS5hdHQtY29sb3Ige1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICBsaSB7XG4gICAgICAgICAgJjpob3ZlcixcbiAgICAgICAgICAmOmZvY3VzLFxuICAgICAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICAgIHdpZHRoOiAxLjY1cmVtO1xuICAgICAgICAgICAgICBoZWlnaHQ6IDEuNjVyZW07XG4gICAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgICAgICAgcGFkZGluZzogMC4yNXJlbTtcbiAgICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgaGVpZ2h0OiAwLjZyZW07XG4gICAgICAgICAgd2lkdGg6IDAuM3JlbTtcbiAgICAgICAgICBib3JkZXItYm90dG9tOiAwLjEycmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlci1yaWdodDogMC4xMnJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgdG9wOiAwLjI1cmVtO1xuICAgICAgICAgIHJpZ2h0OiAtMC43cmVtO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Q6OmFmdGVyLFxuICAgICAgJi53cm9uZzo6YWZ0ZXIsXG4gICAgICAmLnBhcnRpYWw6OmFmdGVyIHtcbiAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICB0b3A6IDAuNTI1cmVtO1xuICAgICAgICByaWdodDogLTAuN3JlbTtcbiAgICAgICAgaGVpZ2h0OiAwLjM3NXJlbTtcbiAgICAgICAgd2lkdGg6IDAuMzc1cmVtO1xuICAgICAgICBib3JkZXItcmFkaXVzOiAwLjM3NXJlbTtcbiAgICAgIH1cbiAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tY29ycmVjdC1iZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgICYud3Jvbmcge1xuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgLS13cm9uZy1iZzogdmFyKC0tcXVtbC1jb2xvci1kYW5nZXIpO1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXdyb25nLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIC0tcGFydGlhbC1iZzogbGluZWFyLWdyYWRpZW50KFxuICAgICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDAlLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDUwJSxcbiAgICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgICAgcmdiYSgyNDksIDEyMiwgMTE2LCAxKSAxMDAlXG4gICAgICAgICAgKTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hdHRlbXB0ZWQsXG4gICAgICAmLnBhcnRpYWwge1xuICAgICAgICBsYWJlbCB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiBsYWJlbCB7XG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDAuMjVyZW07XG4gICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBoZWlnaHQ6IDEuMjVyZW07XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgIG1hcmdpbi1ib3R0b206IDIuMjVyZW07XG4gICAgICBjdXJzb3I6IHBvaW50ZXI7XG5cbiAgICAgICYucmVxdWlyZXNTdWJtaXQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hY3RpdmUsXG4gICAgICAmOmhvdmVyLFxuICAgICAgJjpmb2N1cyB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgICAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgICAgICB6LWluZGV4OiAtMTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5za2lwcGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXNraXBwZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICB9XG4gICAgICAmLnVuYXR0ZW1wdGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gICAgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIHtcbiAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgfVxuICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB+IHVsIHtcbiAgICAgIGhlaWdodDogMDtcbiAgICAgIHRyYW5zZm9ybTogc2NhbGVZKDApO1xuICAgIH1cbiAgICBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHRyYW5zZm9ybS1vcmlnaW46IHRvcDtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjJzIGVhc2Utb3V0O1xuICAgICAgdHJhbnNmb3JtOiBzY2FsZVkoMSk7XG4gICAgfVxuICAgIC5zZWN0aW9uIHtcbiAgICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXTpjaGVja2VkIH4gbGFiZWwge1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXF1bWwtcXVlc3Rpb24tYmcpO1xuICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgd2lkdGg6IDEuMjVyZW07XG4gICAgICBwYWRkaW5nOiAwLjI1cmVtO1xuICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHJnYmEoMjA0LCAyMDQsIDIwNCwgMSk7XG4gICAgICBtYXJnaW4tYm90dG9tOiAyLjI1cmVtO1xuICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyLFxuICAgICAgLmFjdGl2ZSxcbiAgICAgICYuYXR0LWNvbG9yIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cblxuICAgICAgJi5pbmZvLXBhZ2Uge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICB9XG4gICAgICAmLnNraXBwZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkKTtcbiAgICAgICAgJjpob3ZlciB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLnBhcnRpYWwsXG4gICAgICAmLndyb25nLFxuICAgICAgJi5jb3JyZWN0IHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYm9yZGVyOiAwcHggc29saWQgdHJhbnNwYXJlbnQ7XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Qge1xuICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLWNvcnJlY3QtYmcpO1xuICAgICAgfVxuICAgICAgJi53cm9uZyB7XG4gICAgICAgIC0td3JvbmctYmc6IHZhcigtLXF1bWwtY29sb3ItZGFuZ2VyKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td3JvbmctYmcpO1xuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgLS1wYXJ0aWFsLWJnOiBsaW5lYXItZ3JhZGllbnQoXG4gICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgIHJnYmEoNzEsIDE2NCwgMTI4LCAxKSAwJSxcbiAgICAgICAgICByZ2JhKDcxLCAxNjQsIDEyOCwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgMTAwJVxuICAgICAgICApO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgIH1cbiAgICAgICYudW5hdHRlbXB0ZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuXG4uY3VycmVudC1zbGlkZSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlKTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgZm9udC13ZWlnaHQ6IDkwMDtcbiAgbGV0dGVyLXNwYWNpbmc6IDA7XG59XG5cbkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgb3ZlcmZsb3cteDogYXV0bztcbiAgICBvdmVyZmxvdy15OiBoaWRkZW47XG4gICAgd2lkdGg6IDkwJTtcbiAgICBoZWlnaHQ6IDIuNXJlbTtcbiAgICBwYWRkaW5nOiAxcmVtIDAgMDtcbiAgICBtYXJnaW46IGF1dG87XG4gICAgbGVmdDogMDtcbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlOiBub25lO1xuICAgICAgcGFkZGluZzogMDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICBoZWlnaHQ6IDEuNXJlbTtcbiAgICAgIG1hcmdpbi10b3A6IDA7XG4gICAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgICAgbWFyZ2luLXJpZ2h0OiAyLjI1cmVtO1xuICAgICAgICB6LWluZGV4OiAxO1xuXG4gICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zaW5nbGVDb250ZW50IHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAgLnNob3dGZWVkQmFjay1wcm9ncmVzc0JhcjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zZWN0aW9uIHtcbiAgICAgICAgdWwge1xuICAgICAgICAgIHRvcDogLTEuNzVyZW07XG4gICAgICAgICAgcG9zaXRpb246IGluaGVyaXQ7XG4gICAgICAgICAgbWFyZ2luOiAwLjVyZW0gMi4yNXJlbTtcbiAgICAgICAgICBwYWRkaW5nLWxlZnQ6IDEuMjVyZW07XG4gICAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuODEyNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgICAgbGVmdDogMC42MjVyZW07XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuNTI1cmVtO1xuICAgICAgICAgICAgbGVmdDogMC41cmVtO1xuICAgICAgICAgICAgcmlnaHQ6IGF1dG87XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYud3Jvbmcge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLnBhcnRpYWwge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgLnNlY3Rpb24gbGFiZWwge1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIG1hcmdpbi1ib3R0b206IDA7XG4gICAgICB9XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgaGVpZ2h0OiAwLjA2MjVyZW07XG4gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgbGVmdDogMDtcbiAgICAgICAgdG9wOiA1MCU7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKDAsIC01MCUpO1xuICAgICAgICByaWdodDogMDtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMDQsIDIwNCwgMjA0LCAwLjUpO1xuICAgICAgICB6LWluZGV4OiAwO1xuICAgICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQgdWwgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIH4gdWwge1xuICAgIHdpZHRoOiAwO1xuICAgIHRyYW5zZm9ybTogc2NhbGVYKDApO1xuICAgIG1hcmdpbjogMDtcbiAgfVxuICAubGFuc2NhcGUtbW9kZS1yaWdodCB1bCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICB3aWR0aDogY2FsYygxMDAlIC0gNHJlbSk7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogbGVmdDtcbiAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4ycyBlYXNlLW91dDtcbiAgICB0cmFuc2Zvcm06IHNjYWxlWCgxKTtcbiAgICBtYXJnaW46IC0xLjI1cmVtIDNyZW0gMCA0cmVtO1xuICB9XG4gIC5sYW5kc2NhcGUtY2VudGVyIHtcbiAgICBtYXJnaW4tdG9wOiAycmVtO1xuICB9XG5cbiAgLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gICAgZGlzcGxheTogbm9uZTtcbiAgfVxuXG4gIC5sYW5kc2NhcGUtbW9kZSB7XG4gICAgZ3JpZC10ZW1wbGF0ZS1hcmVhczpcbiAgICAgIFwicmlnaHQgcmlnaHQgcmlnaHRcIlxuICAgICAgXCJjZW50ZXIgY2VudGVyIGNlbnRlclwiXG4gICAgICBcImxlZnQgbGVmdCBsZWZ0XCI7XG4gIH1cbn1cblxuLnF1bWwtdGltZXIge1xuICBwYWRkaW5nOiAwLjVyZW07XG59XG5cbi5xdW1sLWhlYWRlci10ZXh0IHtcbiAgbWFyZ2luOiAwLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gIG92ZXJmbG93OiBoaWRkZW47XG4gIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5xdW1sLWFycm93LWJ1dHRvbiB7XG4gIGJvcmRlci1yYWRpdXM6IDI4JTtcbiAgZm9udC1zaXplOiAwJTtcbiAgb3V0bGluZTogbm9uZTtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gIHBhZGRpbmc6IDAuNXJlbTtcbn1cblxuLmluZm8tcG9wdXAge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMTglO1xuICByaWdodDogMTAlO1xuICBmb250LXNpemU6IDAuODc1cmVtO1xuICAvLyBmb250LWZhbWlseTogbm90by1zYW5zOyAvL05PU09OQVJcbiAgYm94LXNoYWRvdzogMCAwLjEyNXJlbSAwLjg3NXJlbSAwIHJnYmEoMCwgMCwgMCwgMC4xKTtcbiAgcGFkZGluZzogMC43NXJlbTtcbn1cblxuLnF1bWwtbWVudSB7XG4gIHdpZHRoOiAxLjVyZW07XG4gIGhlaWdodDogMS41cmVtO1xufVxuXG4ucXVtbC1jYXJkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0td2hpdGUpO1xuICBwYWRkaW5nOiAxLjI1cmVtO1xuICBib3gtc2hhZG93OiAwIDAuMjVyZW0gMC41cmVtIDAgcmdiYSgwLCAwLCAwLCAwLjIpO1xuICB3aWR0aDogMjUlO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IDM3JTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICB0b3A6IDI1JTtcbiAgei1pbmRleDogMjtcbn1cblxuLnF1bWwtY2FyZC10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMS4yNXJlbTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4ucXVtbC1jYXJkLWJvZHkgLndyb25nIHtcbiAgY29sb3I6IHJlZDtcbn1cblxuLnF1bWwtY2FyZC1ib2R5IC5yaWdodCB7XG4gIGNvbG9yOiBncmVlbjtcbn1cblxuLnF1bWwtY2FyZC1idXR0b24tc2VjdGlvbiAuYnV0dG9uLWNvbnRhaW5lciBidXR0b24ge1xuICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgYm9yZGVyLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgb3V0bGluZTogbm9uZTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgcGFkZGluZzogMC4yNXJlbSAxLjVyZW07XG59XG5cbi5xdW1sLWNhcmQtYnV0dG9uLXNlY3Rpb24gLmJ1dHRvbi1jb250YWluZXIge1xuICB3aWR0aDogNDAlO1xuICBkaXNwbGF5OiBpbmxpbmU7XG4gIHBhZGRpbmctcmlnaHQ6IDAuNzVyZW07XG59XG5cbjo6bmctZGVlcCB7XG4gIC5jYXJvdXNlbC5zbGlkZSB7XG4gICAgYS5sZWZ0LmNhcm91c2VsLWNvbnRyb2wuY2Fyb3VzZWwtY29udHJvbC1wcmV2LFxuICAgIC5jYXJvdXNlbC1jb250cm9sLmNhcm91c2VsLWNvbnRyb2wtbmV4dCB7XG4gICAgICBkaXNwbGF5OiBub25lO1xuICAgIH1cbiAgfVxuXG4gIC5jYXJvdXNlbC1pdGVtIHtcbiAgICBwZXJzcGVjdGl2ZTogdW5zZXQ7XG4gIH1cbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgbWFyZ2luLXRvcDogLTIuNXJlbTtcbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCAud3JhcHBlciB7XG4gIGRpc3BsYXk6IGdyaWQ7XG4gIGdyaWQtdGVtcGxhdGUtY29sdW1uczogMWZyIDE1ZnI7XG59XG5cbi5wb3RyYWl0LWhlYWRlci10b3AgLnF1bWwtbWVudSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLWhlZGVyLXRleHQtY29sb3IpO1xuICBmb250LXNpemU6IDEuNXJlbTtcbiAgcGFkZGluZy1sZWZ0OiAxLjI1cmVtO1xuICBtYXJnaW4tdG9wOiAwLjI1cmVtO1xufVxuXG4ucG90cmFpdC1oZWFkZXItdG9wIC5xdW1sLWhlYWRlci10ZXh0IHtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtaGVkZXItdGV4dC1jb2xvcik7XG59XG5cbi5yb3cge1xuICBtYXJnaW4tcmlnaHQ6IDBweDtcbiAgbWFyZ2luLWxlZnQ6IDBweDtcbn1cblxuLnBvcnRyYWl0LWhlYWRlciB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbn1cblxuLmltYWdlLXZpZXdlciB7XG4gICZfX292ZXJsYXksXG4gICZfX2NvbnRhaW5lcixcbiAgJl9fY2xvc2UsXG4gICZfX3pvb20ge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgfVxuXG4gICZfX292ZXJsYXkge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHotaW5kZXg6IDExMTExO1xuICB9XG5cbiAgJl9fY29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHRvcDogNTAlO1xuICAgIGxlZnQ6IDUwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgtNTAlLCAtNTAlKTtcbiAgICB6LWluZGV4OiAxMTExMTtcbiAgICB3aWR0aDogODAlO1xuICAgIGhlaWdodDogODAlO1xuICB9XG5cbiAgJl9faW1nIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gIH1cblxuICAmX19jbG9zZSB7XG4gICAgdG9wOiAxcmVtO1xuICAgIHJpZ2h0OiAxcmVtO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgei1pbmRleDogOTk5OTk5O1xuICAgIGJhY2tncm91bmQ6IHJnYmEoMCwgMCwgMCwgMC41KTtcbiAgICBib3JkZXItcmFkaXVzOiAxMDAlO1xuICAgIHdpZHRoOiAzcmVtO1xuICAgIGhlaWdodDogM3JlbTtcbiAgICBwb3NpdGlvbjogaW5oZXJpdDtcblxuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyNzE1XCI7XG4gICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgZm9udC1zaXplOiAycmVtO1xuICAgIH1cblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAxKTtcbiAgICB9XG4gIH1cblxuICAmX196b29tIHtcbiAgICBib3R0b206IDFyZW07XG4gICAgcmlnaHQ6IDFyZW07XG4gICAgd2lkdGg6IDIuNXJlbTtcbiAgICBoZWlnaHQ6IGF1dG87XG4gICAgYm9yZGVyLXJhZGl1czogMC41cmVtO1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDk5OTk5O1xuICAgIHBvc2l0aW9uOiBpbmhlcml0O1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtem9vbS1idG4tdHh0KTtcbiAgfVxuXG4gICZfX3pvb21pbixcbiAgJl9fem9vbW91dCB7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGhlaWdodDogMi41cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB3aWR0aDogMi41cmVtO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC16b29tLWJ0bi1ob3Zlcik7XG4gICAgfVxuXG4gICAgJjo6YWZ0ZXIge1xuICAgICAgZm9udC1zaXplOiAxLjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICB0b3A6IDUwJTtcbiAgICAgIGxlZnQ6IDUwJTtcbiAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC01MCUsIC01MCUpO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21pbiB7XG4gICAgYm9yZGVyLWJvdHRvbTogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG5cbiAgICAmOjphZnRlciB7XG4gICAgICBjb250ZW50OiBcIlxcMDAyQlwiO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21vdXQge1xuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyMjEyXCI7XG4gICAgfVxuICB9XG59XG5cbi8qIGVkaXRvciBjc3MgKi9cbjo6bmctZGVlcCB7XG4gIHF1bWwtYW5zIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgc3ZnIGNpcmNsZSB7XG4gICAgICBmaWxsOiB2YXIoLS1xdW1sLXpvb20tYnRuLXR4dCk7XG4gICAgfVxuICB9XG5cbiAgLm1hZ25pZnktaWNvbiB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMDtcbiAgICB3aWR0aDogMS41cmVtO1xuICAgIGhlaWdodDogMS41cmVtO1xuICAgIGJvcmRlci10b3AtbGVmdC1yYWRpdXM6IDAuNXJlbTtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0KTtcbiAgfVxuXG4gIC5tYWduaWZ5LWljb246OmFmdGVyIHtcbiAgICBjb250ZW50OiBcIlwiO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBib3R0b206IDAuMTI1cmVtO1xuICAgIHJpZ2h0OiAwLjEyNXJlbTtcbiAgICB6LWluZGV4OiAxO1xuICAgIHdpZHRoOiAxcmVtO1xuICAgIGhlaWdodDogMXJlbTtcbiAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoXCJkYXRhOmltYWdlL3N2Zyt4bWwsJTNDJTNGeG1sIHZlcnNpb249JzEuMCclM0YlM0UlM0NzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluaycgeG1sbnM6c3ZnanM9J2h0dHA6Ly9zdmdqcy5jb20vc3ZnanMnIHZlcnNpb249JzEuMScgd2lkdGg9JzUxMicgaGVpZ2h0PSc1MTInIHg9JzAnIHk9JzAnIHZpZXdCb3g9JzAgMCAzNy4xNjYgMzcuMTY2JyBzdHlsZT0nZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyJyB4bWw6c3BhY2U9J3ByZXNlcnZlJyBjbGFzcz0nJyUzRSUzQ2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0NwYXRoIGQ9J00zNS44MjksMzIuMDQ1bC02LjgzMy02LjgzM2MtMC41MTMtMC41MTMtMS4xNjctMC43ODgtMS44MzYtMC44NTNjMi4wNi0yLjU2NywzLjI5OC01LjgxOSwzLjI5OC05LjM1OSBjMC04LjI3MS02LjcyOS0xNS0xNS0xNWMtOC4yNzEsMC0xNSw2LjcyOS0xNSwxNWMwLDguMjcxLDYuNzI5LDE1LDE1LDE1YzMuMTIxLDAsNi4wMjEtMC45Niw4LjQyNC0yLjU5OCBjMC4wMTgsMC43NDQsMC4zMDUsMS40ODIsMC44NzIsMi4wNTJsNi44MzMsNi44MzNjMC41ODUsMC41ODYsMS4zNTQsMC44NzksMi4xMjEsMC44NzlzMS41MzYtMC4yOTMsMi4xMjEtMC44NzkgQzM3LjAwMSwzNS4xMTYsMzcuMDAxLDMzLjIxNywzNS44MjksMzIuMDQ1eiBNMTUuNDU4LDI1Yy01LjUxNCwwLTEwLTQuNDg0LTEwLTEwYzAtNS41MTQsNC40ODYtMTAsMTAtMTBjNS41MTQsMCwxMCw0LjQ4NiwxMCwxMCBDMjUuNDU4LDIwLjUxNiwyMC45NzIsMjUsMTUuNDU4LDI1eiBNMjIuMzM0LDE1YzAsMS4xMDQtMC44OTYsMi0yLDJoLTIuNzV2Mi43NWMwLDEuMTA0LTAuODk2LDItMiwycy0yLTAuODk2LTItMlYxN2gtMi43NSBjLTEuMTA0LDAtMi0wLjg5Ni0yLTJzMC44OTYtMiwyLTJoMi43NXYtMi43NWMwLTEuMTA0LDAuODk2LTIsMi0yczIsMC44OTYsMiwyVjEzaDIuNzVDMjEuNDM4LDEzLDIyLjMzNCwxMy44OTUsMjIuMzM0LDE1eicgZmlsbD0nJTIzZmZmZmZmJyBkYXRhLW9yaWdpbmFsPSclMjMwMDAwMDAnIHN0eWxlPScnIGNsYXNzPScnLyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDL2clM0UlM0Mvc3ZnJTNFJTBBXCIpO1xuICAgIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gICAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7XG4gIH1cblxuICAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2Uge1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAvLyB3aWR0aDogNy41cmVtO1xuICAgIC8vIGhlaWdodDogNy41cmVtO1xuICB9XG5cbiAgLnNvbHV0aW9ucyAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2UsXG4gIC5pbWFnZS12aWV3ZXJfX292ZXJsYXkgLmltYWdlLXZpZXdlcl9fY29udGFpbmVyIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG5cbiAgICAucG9ydHJhaXQge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IDEwMCU7XG4gICAgfVxuXG4gICAgLm5ldXRyYWwge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICB9XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgfVxuICAgIH1cblxuICAgIC5sYW5kc2NhcGUge1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW1jcSxcbiAgLnF1bWwtc2EsXG4gIHF1bWwtc2EsXG4gIHF1bWwtbWNxLXNvbHV0aW9ucyB7XG4gICAgLm1jcS10aXRsZSB7XG4gICAgICBjb2xvcjogdmFyKC0tcXVtbC1tY3EtdGl0bGUtdHh0KTtcblxuICAgICAgcCB7XG4gICAgICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gICAgICB9XG4gICAgICBAbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gICAgICAgIG1hcmdpbi10b3A6IDFyZW07XG4gICAgICB9XG4gICAgfVxuXG4gICAgLnF1bWwtbWNxLS1xdWVzdGlvbiB7XG4gICAgICBwIHtcbiAgICAgICAgLy8gbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAucXVtbC1tY3EtLW9wdGlvbiB7XG4gICAgICAucXVtbC1tY3Etb3B0aW9uLWNhcmQgcDpmaXJzdC1jaGlsZCxcbiAgICAgIC5xdW1sLW1jcS1vcHRpb24tY2FyZCBwOmxhc3QtY2hpbGQge1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAwO1xuICAgICAgfVxuICAgIH1cbiAgfVxuICBxdW1sLW1jcS1zb2x1dGlvbnMge1xuICAgIGZpZ3VyZS5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1LFxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNTAsXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS03NSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLW9yaWdpbmFsIHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgLnNvbHV0aW9uLW9wdGlvbnMgcCB7XG4gICAgICBtYXJnaW4tYm90dG9tOiAxcmVtO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW9wdGlvbiAub3B0aW9uIHAge1xuICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gIH1cbn1cblxuLmVuZFBhZ2UtY29udGFpbmVyLWhlaWdodCB7XG4gIGhlaWdodDogMTAwJTtcbn1cbi5zY29yZWJvYXJkLXNlY3Rpb25zIHtcbiAgZGlzcGxheTogY29udGVudHM7XG4gIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgei1pbmRleDogMjtcbiAgfVxufVxuLmhvdmVyLWVmZmVjdCB7XG4gICY6aG92ZXIsXG4gICY6Zm9jdXMsXG4gICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAmOjphZnRlciB7XG4gICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgfVxuICB9XG59XG4gIl0sInNvdXJjZVJvb3QiOiIifQ== */", ":root {\n --quml-mcq-title-txt: #131415;\n}\n\n .startpage__instr-desc .mcq-title, .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc .fs-8, .startpage__instr-desc .fs-9, .startpage__instr-desc .fs-10, .startpage__instr-desc .fs-11, .startpage__instr-desc .fs-12, .startpage__instr-desc .fs-13, .startpage__instr-desc .fs-14, .startpage__instr-desc .fs-15, .startpage__instr-desc .fs-16, .startpage__instr-desc .fs-17, .startpage__instr-desc .fs-18, .startpage__instr-desc .fs-19, .startpage__instr-desc .fs-20, .startpage__instr-desc .fs-21, .startpage__instr-desc .fs-22, .startpage__instr-desc .fs-23, .startpage__instr-desc .fs-24, .startpage__instr-desc .fs-25, .startpage__instr-desc .fs-26, .startpage__instr-desc .fs-27, .startpage__instr-desc .fs-28, .startpage__instr-desc .fs-29, .startpage__instr-desc .fs-30, .startpage__instr-desc .fs-36, .quml-mcq .fs-8, .quml-mcq .fs-9, .quml-mcq .fs-10, .quml-mcq .fs-11, .quml-mcq .fs-12, .quml-mcq .fs-13, .quml-mcq .fs-14, .quml-mcq .fs-15, .quml-mcq .fs-16, .quml-mcq .fs-17, .quml-mcq .fs-18, .quml-mcq .fs-19, .quml-mcq .fs-20, .quml-mcq .fs-21, .quml-mcq .fs-22, .quml-mcq .fs-23, .quml-mcq .fs-24, .quml-mcq .fs-25, .quml-mcq .fs-26, .quml-mcq .fs-27, .quml-mcq .fs-28, .quml-mcq .fs-29, .quml-mcq .fs-30, .quml-mcq .fs-36, .quml-sa .fs-8, .quml-sa .fs-9, .quml-sa .fs-10, .quml-sa .fs-11, .quml-sa .fs-12, .quml-sa .fs-13, .quml-sa .fs-14, .quml-sa .fs-15, .quml-sa .fs-16, .quml-sa .fs-17, .quml-sa .fs-18, .quml-sa .fs-19, .quml-sa .fs-20, .quml-sa .fs-21, .quml-sa .fs-22, .quml-sa .fs-23, .quml-sa .fs-24, .quml-sa .fs-25, .quml-sa .fs-26, .quml-sa .fs-27, .quml-sa .fs-28, .quml-sa .fs-29, .quml-sa .fs-30, .quml-sa .fs-36, quml-sa .fs-8, quml-sa .fs-9, quml-sa .fs-10, quml-sa .fs-11, quml-sa .fs-12, quml-sa .fs-13, quml-sa .fs-14, quml-sa .fs-15, quml-sa .fs-16, quml-sa .fs-17, quml-sa .fs-18, quml-sa .fs-19, quml-sa .fs-20, quml-sa .fs-21, quml-sa .fs-22, quml-sa .fs-23, quml-sa .fs-24, quml-sa .fs-25, quml-sa .fs-26, quml-sa .fs-27, quml-sa .fs-28, quml-sa .fs-29, quml-sa .fs-30, quml-sa .fs-36, quml-mcq-solutions .fs-8, quml-mcq-solutions .fs-9, quml-mcq-solutions .fs-10, quml-mcq-solutions .fs-11, quml-mcq-solutions .fs-12, quml-mcq-solutions .fs-13, quml-mcq-solutions .fs-14, quml-mcq-solutions .fs-15, quml-mcq-solutions .fs-16, quml-mcq-solutions .fs-17, quml-mcq-solutions .fs-18, quml-mcq-solutions .fs-19, quml-mcq-solutions .fs-20, quml-mcq-solutions .fs-21, quml-mcq-solutions .fs-22, quml-mcq-solutions .fs-23, quml-mcq-solutions .fs-24, quml-mcq-solutions .fs-25, quml-mcq-solutions .fs-26, quml-mcq-solutions .fs-27, quml-mcq-solutions .fs-28, quml-mcq-solutions .fs-29, quml-mcq-solutions .fs-30, quml-mcq-solutions .fs-36 {\n line-height: normal;\n}\n .startpage__instr-desc .fs-8, .quml-mcq .fs-8, .quml-sa .fs-8, quml-sa .fs-8, quml-mcq-solutions .fs-8 {\n font-size: 0.5rem;\n}\n .startpage__instr-desc .fs-9, .quml-mcq .fs-9, .quml-sa .fs-9, quml-sa .fs-9, quml-mcq-solutions .fs-9 {\n font-size: 0.563rem;\n}\n .startpage__instr-desc .fs-10, .quml-mcq .fs-10, .quml-sa .fs-10, quml-sa .fs-10, quml-mcq-solutions .fs-10 {\n font-size: 0.625rem;\n}\n .startpage__instr-desc .fs-11, .quml-mcq .fs-11, .quml-sa .fs-11, quml-sa .fs-11, quml-mcq-solutions .fs-11 {\n font-size: 0.688rem;\n}\n .startpage__instr-desc .fs-12, .quml-mcq .fs-12, .quml-sa .fs-12, quml-sa .fs-12, quml-mcq-solutions .fs-12 {\n font-size: 0.75rem;\n}\n .startpage__instr-desc .fs-13, .quml-mcq .fs-13, .quml-sa .fs-13, quml-sa .fs-13, quml-mcq-solutions .fs-13 {\n font-size: 0.813rem;\n}\n .startpage__instr-desc .fs-14, .quml-mcq .fs-14, .quml-sa .fs-14, quml-sa .fs-14, quml-mcq-solutions .fs-14 {\n font-size: 0.875rem;\n}\n .startpage__instr-desc .fs-15, .quml-mcq .fs-15, .quml-sa .fs-15, quml-sa .fs-15, quml-mcq-solutions .fs-15 {\n font-size: 0.938rem;\n}\n .startpage__instr-desc .fs-16, .quml-mcq .fs-16, .quml-sa .fs-16, quml-sa .fs-16, quml-mcq-solutions .fs-16 {\n font-size: 1rem;\n}\n .startpage__instr-desc .fs-17, .quml-mcq .fs-17, .quml-sa .fs-17, quml-sa .fs-17, quml-mcq-solutions .fs-17 {\n font-size: 1.063rem;\n}\n .startpage__instr-desc .fs-18, .quml-mcq .fs-18, .quml-sa .fs-18, quml-sa .fs-18, quml-mcq-solutions .fs-18 {\n font-size: 1.125rem;\n}\n .startpage__instr-desc .fs-19, .quml-mcq .fs-19, .quml-sa .fs-19, quml-sa .fs-19, quml-mcq-solutions .fs-19 {\n font-size: 1.188rem;\n}\n .startpage__instr-desc .fs-20, .quml-mcq .fs-20, .quml-sa .fs-20, quml-sa .fs-20, quml-mcq-solutions .fs-20 {\n font-size: 1.25rem;\n}\n .startpage__instr-desc .fs-21, .quml-mcq .fs-21, .quml-sa .fs-21, quml-sa .fs-21, quml-mcq-solutions .fs-21 {\n font-size: 1.313rem;\n}\n .startpage__instr-desc .fs-22, .quml-mcq .fs-22, .quml-sa .fs-22, quml-sa .fs-22, quml-mcq-solutions .fs-22 {\n font-size: 1.375rem;\n}\n .startpage__instr-desc .fs-23, .quml-mcq .fs-23, .quml-sa .fs-23, quml-sa .fs-23, quml-mcq-solutions .fs-23 {\n font-size: 1.438rem;\n}\n .startpage__instr-desc .fs-24, .quml-mcq .fs-24, .quml-sa .fs-24, quml-sa .fs-24, quml-mcq-solutions .fs-24 {\n font-size: 1.5rem;\n}\n .startpage__instr-desc .fs-25, .quml-mcq .fs-25, .quml-sa .fs-25, quml-sa .fs-25, quml-mcq-solutions .fs-25 {\n font-size: 1.563rem;\n}\n .startpage__instr-desc .fs-26, .quml-mcq .fs-26, .quml-sa .fs-26, quml-sa .fs-26, quml-mcq-solutions .fs-26 {\n font-size: 1.625rem;\n}\n .startpage__instr-desc .fs-27, .quml-mcq .fs-27, .quml-sa .fs-27, quml-sa .fs-27, quml-mcq-solutions .fs-27 {\n font-size: 1.688rem;\n}\n .startpage__instr-desc .fs-28, .quml-mcq .fs-28, .quml-sa .fs-28, quml-sa .fs-28, quml-mcq-solutions .fs-28 {\n font-size: 1.75rem;\n}\n .startpage__instr-desc .fs-29, .quml-mcq .fs-29, .quml-sa .fs-29, quml-sa .fs-29, quml-mcq-solutions .fs-29 {\n font-size: 1.813rem;\n}\n .startpage__instr-desc .fs-30, .quml-mcq .fs-30, .quml-sa .fs-30, quml-sa .fs-30, quml-mcq-solutions .fs-30 {\n font-size: 1.875rem;\n}\n .startpage__instr-desc .fs-36, .quml-mcq .fs-36, .quml-sa .fs-36, quml-sa .fs-36, quml-mcq-solutions .fs-36 {\n font-size: 2.25rem;\n}\n .startpage__instr-desc .text-left, .quml-mcq .text-left, .quml-sa .text-left, quml-sa .text-left, quml-mcq-solutions .text-left {\n text-align: left;\n}\n .startpage__instr-desc .text-center, .quml-mcq .text-center, .quml-sa .text-center, quml-sa .text-center, quml-mcq-solutions .text-center {\n text-align: center;\n}\n .startpage__instr-desc .text-right, .quml-mcq .text-right, .quml-sa .text-right, quml-sa .text-right, quml-mcq-solutions .text-right {\n text-align: right;\n}\n .startpage__instr-desc .image-style-align-right, .quml-mcq .image-style-align-right, .quml-sa .image-style-align-right, quml-sa .image-style-align-right, quml-mcq-solutions .image-style-align-right {\n float: right;\n text-align: right;\n margin-left: 0.5rem;\n}\n .startpage__instr-desc .image-style-align-left, .quml-mcq .image-style-align-left, .quml-sa .image-style-align-left, quml-sa .image-style-align-left, quml-mcq-solutions .image-style-align-left {\n float: left;\n text-align: left;\n margin-right: 0.5rem;\n}\n .startpage__instr-desc .image, .startpage__instr-desc figure.image, .quml-mcq .image, .quml-mcq figure.image, .quml-sa .image, .quml-sa figure.image, quml-sa .image, quml-sa figure.image, quml-mcq-solutions .image, quml-mcq-solutions figure.image {\n display: table;\n clear: both;\n text-align: center;\n margin: 0.5rem auto;\n position: relative;\n}\n .startpage__instr-desc figure.image.resize-original, .startpage__instr-desc figure.image, .quml-mcq figure.image.resize-original, .quml-mcq figure.image, .quml-sa figure.image.resize-original, .quml-sa figure.image, quml-sa figure.image.resize-original, quml-sa figure.image, quml-mcq-solutions figure.image.resize-original, quml-mcq-solutions figure.image {\n width: auto;\n height: auto;\n overflow: visible;\n}\n .startpage__instr-desc figure.image img, .quml-mcq figure.image img, .quml-sa figure.image img, quml-sa figure.image img, quml-mcq-solutions figure.image img {\n width: auto;\n}\n .startpage__instr-desc figure.image.resize-original img, .quml-mcq figure.image.resize-original img, .quml-sa figure.image.resize-original img, quml-sa figure.image.resize-original img, quml-mcq-solutions figure.image.resize-original img {\n width: auto;\n height: auto;\n}\n .startpage__instr-desc .image img, .quml-mcq .image img, .quml-sa .image img, quml-sa .image img, quml-mcq-solutions .image img {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n min-width: 50px;\n}\n .startpage__instr-desc figure.image.resize-25, .quml-mcq figure.image.resize-25, .quml-sa figure.image.resize-25, quml-sa figure.image.resize-25, quml-mcq-solutions figure.image.resize-25 {\n width: 25%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-50, .quml-mcq figure.image.resize-50, .quml-sa figure.image.resize-50, quml-sa figure.image.resize-50, quml-mcq-solutions figure.image.resize-50 {\n width: 50%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-75, .quml-mcq figure.image.resize-75, .quml-sa figure.image.resize-75, quml-sa figure.image.resize-75, quml-mcq-solutions figure.image.resize-75 {\n width: 75%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-100, .quml-mcq figure.image.resize-100, .quml-sa figure.image.resize-100, quml-sa figure.image.resize-100, quml-mcq-solutions figure.image.resize-100 {\n width: 100%;\n height: auto;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n border-right: 0.0625rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table, .startpage__instr-desc figure.table table tr td, .startpage__instr-desc figure.table table tr th, .quml-mcq figure.table table, .quml-mcq figure.table table tr td, .quml-mcq figure.table table tr th, .quml-sa figure.table table, .quml-sa figure.table table tr td, .quml-sa figure.table table tr th, quml-sa figure.table table, quml-sa figure.table table tr td, quml-sa figure.table table tr th, quml-mcq-solutions figure.table table, quml-mcq-solutions figure.table table tr td, quml-mcq-solutions figure.table table tr th {\n border: 0.0625rem solid var(--black);\n border-collapse: collapse;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n width: 100%;\n background: var(--white);\n border: 0.0625rem solid var(--gray-100);\n box-shadow: none;\n border-radius: 0.25rem 0.25rem 0 0;\n text-align: left;\n color: var(--gray);\n border-collapse: separate;\n border-spacing: 0;\n table-layout: fixed;\n}\n .startpage__instr-desc figure.table table thead tr th, .quml-mcq figure.table table thead tr th, .quml-sa figure.table table thead tr th, quml-sa figure.table table thead tr th, quml-mcq-solutions figure.table table thead tr th {\n font-size: 0.875rem;\n padding: 1rem;\n background-color: var(--primary-100);\n position: relative;\n height: 2.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n font-weight: bold;\n color: var(--primary-color);\n text-transform: uppercase;\n}\n .startpage__instr-desc figure.table table thead tr th:first-child, .quml-mcq figure.table table thead tr th:first-child, .quml-sa figure.table table thead tr th:first-child, quml-sa figure.table table thead tr th:first-child, quml-mcq-solutions figure.table table thead tr th:first-child {\n border-top-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table thead tr th:last-child, .quml-mcq figure.table table thead tr th:last-child, .quml-sa figure.table table thead tr th:last-child, quml-sa figure.table table thead tr th:last-child, quml-mcq-solutions figure.table table thead tr th:last-child {\n border-top-right-radius: 0.25rem;\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr:nth-child(2n), .quml-mcq figure.table table tbody tr:nth-child(2n), .quml-sa figure.table table tbody tr:nth-child(2n), quml-sa figure.table table tbody tr:nth-child(2n), quml-mcq-solutions figure.table table tbody tr:nth-child(2n) {\n background-color: var(--gray-0);\n}\n .startpage__instr-desc figure.table table tbody tr:hover, .quml-mcq figure.table table tbody tr:hover, .quml-sa figure.table table tbody tr:hover, quml-sa figure.table table tbody tr:hover, quml-mcq-solutions figure.table table tbody tr:hover {\n background: var(--primary-0);\n color: rgba(var(--rc-rgba-gray), 0.95);\n cursor: pointer;\n}\n .startpage__instr-desc figure.table table tbody tr td, .quml-mcq figure.table table tbody tr td, .quml-sa figure.table table tbody tr td, quml-sa figure.table table tbody tr td, quml-mcq-solutions figure.table table tbody tr td {\n font-size: 0.875rem;\n padding: 1rem;\n color: var(--gray);\n height: 3.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n word-break: break-word;\n line-height: normal;\n}\n .startpage__instr-desc figure.table table tbody tr td:last-child, .quml-mcq figure.table table tbody tr td:last-child, .quml-sa figure.table table tbody tr td:last-child, quml-sa figure.table table tbody tr td:last-child, quml-mcq-solutions figure.table table tbody tr td:last-child {\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr td p, .quml-mcq figure.table table tbody tr td p, .quml-sa figure.table table tbody tr td p, quml-sa figure.table table tbody tr td p, quml-mcq-solutions figure.table table tbody tr td p {\n margin-bottom: 0px !important;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td, .quml-mcq figure.table table tbody tr:last-child td, .quml-sa figure.table table tbody tr:last-child td, quml-sa figure.table table tbody tr:last-child td, quml-mcq-solutions figure.table table tbody tr:last-child td {\n border-bottom: none;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:first-child, .quml-mcq figure.table table tbody tr:last-child td:first-child, .quml-sa figure.table table tbody tr:last-child td:first-child, quml-sa figure.table table tbody tr:last-child td:first-child, quml-mcq-solutions figure.table table tbody tr:last-child td:first-child {\n border-bottom-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:last-child, .quml-mcq figure.table table tbody tr:last-child td:last-child, .quml-sa figure.table table tbody tr:last-child td:last-child, quml-sa figure.table table tbody tr:last-child td:last-child, quml-mcq-solutions figure.table table tbody tr:last-child td:last-child {\n border-bottom-right-radius: 0.25rem;\n}\n .startpage__instr-desc ul, .startpage__instr-desc ol, .quml-mcq ul, .quml-mcq ol, .quml-sa ul, .quml-sa ol, quml-sa ul, quml-sa ol, quml-mcq-solutions ul, quml-mcq-solutions ol {\n margin-top: 0.5rem;\n}\n .startpage__instr-desc ul li, .startpage__instr-desc ol li, .quml-mcq ul li, .quml-mcq ol li, .quml-sa ul li, .quml-sa ol li, quml-sa ul li, quml-sa ol li, quml-mcq-solutions ul li, quml-mcq-solutions ol li {\n margin: 0.5rem;\n font-weight: normal;\n line-height: normal;\n}\n .startpage__instr-desc ul, .quml-mcq ul, .quml-sa ul, quml-sa ul, quml-mcq-solutions ul {\n list-style-type: disc;\n}\n .startpage__instr-desc h1, .startpage__instr-desc h2, .startpage__instr-desc h3, .startpage__instr-desc h4, .startpage__instr-desc h5, .startpage__instr-desc h6, .quml-mcq h1, .quml-mcq h2, .quml-mcq h3, .quml-mcq h4, .quml-mcq h5, .quml-mcq h6, .quml-sa h1, .quml-sa h2, .quml-sa h3, .quml-sa h4, .quml-sa h5, .quml-sa h6, quml-sa h1, quml-sa h2, quml-sa h3, quml-sa h4, quml-sa h5, quml-sa h6, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6 {\n color: var(--primary-color);\n line-height: normal;\n margin-bottom: 1rem;\n}\n .startpage__instr-desc p, .startpage__instr-desc span, .quml-mcq p, .quml-mcq span, .quml-sa p, .quml-sa span, quml-sa p, quml-sa span, quml-mcq-solutions p, quml-mcq-solutions span {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc p strong, .startpage__instr-desc p span strong, .quml-mcq p strong, .quml-mcq p span strong, .quml-sa p strong, .quml-sa p span strong, quml-sa p strong, quml-sa p span strong, quml-mcq-solutions p strong, quml-mcq-solutions p span strong {\n font-weight: bold;\n}\n .startpage__instr-desc p span u, .startpage__instr-desc p u, .quml-mcq p span u, .quml-mcq p u, .quml-sa p span u, .quml-sa p u, quml-sa p span u, quml-sa p u, quml-mcq-solutions p span u, quml-mcq-solutions p u {\n text-decoration: underline;\n}\n .startpage__instr-desc p span i, .startpage__instr-desc p i, .quml-mcq p span i, .quml-mcq p i, .quml-sa p span i, .quml-sa p i, quml-sa p span i, quml-sa p i, quml-mcq-solutions p span i, quml-mcq-solutions p i {\n font-style: italic;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3N0YXJ0cGFnZS9zYi1ja2VkaXRvci1zdHlsZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLDZCQUFBO0FBQ0Y7O0FBVUk7Ozs7O0VBQ0UsZ0NBQUE7QUFITjtBQU1JOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUF3QkUsbUJBQUE7QUE0Rk47QUF6Rkk7Ozs7O0VBQ0UsaUJBQUE7QUErRk47QUE1Rkk7Ozs7O0VBQ0UsbUJBQUE7QUFrR047QUEvRkk7Ozs7O0VBQ0UsbUJBQUE7QUFxR047QUFsR0k7Ozs7O0VBQ0UsbUJBQUE7QUF3R047QUFyR0k7Ozs7O0VBQ0Usa0JBQUE7QUEyR047QUF4R0k7Ozs7O0VBQ0UsbUJBQUE7QUE4R047QUEzR0k7Ozs7O0VBQ0UsbUJBQUE7QUFpSE47QUE5R0k7Ozs7O0VBQ0UsbUJBQUE7QUFvSE47QUFqSEk7Ozs7O0VBQ0UsZUFBQTtBQXVITjtBQXBISTs7Ozs7RUFDRSxtQkFBQTtBQTBITjtBQXZISTs7Ozs7RUFDRSxtQkFBQTtBQTZITjtBQTFISTs7Ozs7RUFDRSxtQkFBQTtBQWdJTjtBQTdISTs7Ozs7RUFDRSxrQkFBQTtBQW1JTjtBQWhJSTs7Ozs7RUFDRSxtQkFBQTtBQXNJTjtBQW5JSTs7Ozs7RUFDRSxtQkFBQTtBQXlJTjtBQXRJSTs7Ozs7RUFDRSxtQkFBQTtBQTRJTjtBQXpJSTs7Ozs7RUFDRSxpQkFBQTtBQStJTjtBQTVJSTs7Ozs7RUFDRSxtQkFBQTtBQWtKTjtBQS9JSTs7Ozs7RUFDRSxtQkFBQTtBQXFKTjtBQWxKSTs7Ozs7RUFDRSxtQkFBQTtBQXdKTjtBQXJKSTs7Ozs7RUFDRSxrQkFBQTtBQTJKTjtBQXhKSTs7Ozs7RUFDRSxtQkFBQTtBQThKTjtBQTNKSTs7Ozs7RUFDRSxtQkFBQTtBQWlLTjtBQTlKSTs7Ozs7RUFDRSxrQkFBQTtBQW9LTjtBQWpLSTs7Ozs7RUFDRSxnQkFBQTtBQXVLTjtBQXBLSTs7Ozs7RUFDRSxrQkFBQTtBQTBLTjtBQXZLSTs7Ozs7RUFDRSxpQkFBQTtBQTZLTjtBQTFLSTs7Ozs7RUFDRSxZQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQWdMTjtBQTdLSTs7Ozs7RUFDRSxXQUFBO0VBQ0EsZ0JBQUE7RUFDQSxvQkFBQTtBQW1MTjtBQWhMSTs7Ozs7Ozs7OztFQUVFLGNBQUE7RUFDQSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0FBMExOO0FBdkxJOzs7Ozs7Ozs7O0VBRUUsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQWlNTjtBQTlMSTs7Ozs7RUFDRSxXQUFBO0FBb01OO0FBak1JOzs7OztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBdU1OO0FBcE1JOzs7OztFQUNFLGNBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7QUEwTU47QUF2TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUE2TU47QUExTUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFnTk47QUE3TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFtTk47QUFoTkk7Ozs7O0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUFzTk47QUFuTkk7Ozs7O0VBQ0UsNkNBQUE7QUF5Tk47QUF0Tkk7Ozs7Ozs7Ozs7Ozs7OztFQUdFLG9DQUFBO0VBQ0EseUJBQUE7QUFvT047QUFqT0k7Ozs7O0VBQ0UsV0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUNBQUE7RUFDQSxnQkFBQTtFQUNBLGtDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtFQUNBLHlCQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQXVPTjtBQW5PVTs7Ozs7RUFVRSxtQkFBQTtFQUNBLGFBQUE7RUFDQSxvQ0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLFdBQUE7RUFDQSw4Q0FBQTtFQUNBLDZDQUFBO0VBQ0EsaUJBQUE7RUFDQSwyQkFBQTtFQUNBLHlCQUFBO0FBZ09aO0FBblBZOzs7OztFQUNFLCtCQUFBO0FBeVBkO0FBdFBZOzs7OztFQUNFLGdDQUFBO0VBQ0Esd0NBQUE7QUE0UGQ7QUF4T1U7Ozs7O0VBQ0UsK0JBQUE7QUE4T1o7QUEzT1U7Ozs7O0VBQ0UsNEJBQUE7RUFDQSxzQ0FBQTtFQUNBLGVBQUE7QUFpUFo7QUE5T1U7Ozs7O0VBQ0UsbUJBQUE7RUFDQSxhQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsV0FBQTtFQUNBLDhDQUFBO0VBQ0EsNkNBQUE7RUFDQSxzQkFBQTtFQUNBLG1CQUFBO0FBb1BaO0FBbFBZOzs7OztFQUNFLHdDQUFBO0FBd1BkO0FBclBZOzs7OztFQUNFLDZCQUFBO0FBMlBkO0FBdFBZOzs7OztFQUNFLG1CQUFBO0FBNFBkO0FBMVBjOzs7OztFQUNFLGtDQUFBO0FBZ1FoQjtBQTdQYzs7Ozs7RUFDRSxtQ0FBQTtBQW1RaEI7QUExUEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQW9RTjtBQWxRTTs7Ozs7Ozs7OztFQUNFLGNBQUE7RUFDQSxtQkFBQTtFQUNBLG1CQUFBO0FBNlFSO0FBelFJOzs7OztFQUNFLHFCQUFBO0FBK1FOO0FBNVFJOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFNRSwyQkFBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7QUFzU047QUFuU0k7Ozs7Ozs7Ozs7RUFFRSxnQ0FBQTtBQTZTTjtBQTFTSTs7Ozs7Ozs7OztFQUVFLGlCQUFBO0FBb1ROO0FBalRJOzs7Ozs7Ozs7O0VBRUUsMEJBQUE7QUEyVE47QUF4VEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQWtVTiIsInNvdXJjZXNDb250ZW50IjpbIjo6bmctZGVlcCA6cm9vdCB7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xufVxuXG5cbjo6bmctZGVlcCB7XG5cbiAgLnN0YXJ0cGFnZV9faW5zdHItZGVzYyxcbiAgLnF1bWwtbWNxLFxuICAucXVtbC1zYSxcbiAgcXVtbC1zYSxcbiAgcXVtbC1tY3Etc29sdXRpb25zIHtcbiAgICAubWNxLXRpdGxlIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIC5mcy04LFxuICAgIC5mcy05LFxuICAgIC5mcy0xMCxcbiAgICAuZnMtMTEsXG4gICAgLmZzLTEyLFxuICAgIC5mcy0xMyxcbiAgICAuZnMtMTQsXG4gICAgLmZzLTE1LFxuICAgIC5mcy0xNixcbiAgICAuZnMtMTcsXG4gICAgLmZzLTE4LFxuICAgIC5mcy0xOSxcbiAgICAuZnMtMjAsXG4gICAgLmZzLTIxLFxuICAgIC5mcy0yMixcbiAgICAuZnMtMjMsXG4gICAgLmZzLTI0LFxuICAgIC5mcy0yNSxcbiAgICAuZnMtMjYsXG4gICAgLmZzLTI3LFxuICAgIC5mcy0yOCxcbiAgICAuZnMtMjksXG4gICAgLmZzLTMwLFxuICAgIC5mcy0zNiB7XG4gICAgICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICAgIH1cblxuICAgIC5mcy04IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41cmVtO1xuICAgIH1cblxuICAgIC5mcy05IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41NjNyZW07XG4gICAgfVxuXG4gICAgLmZzLTEwIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42MjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTExIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42ODhyZW07XG4gICAgfVxuXG4gICAgLmZzLTEyIHtcbiAgICAgIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTMge1xuICAgICAgZm9udC1zaXplOiAwLjgxM3JlbTtcbiAgICB9XG5cbiAgICAuZnMtMTQge1xuICAgICAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTUge1xuICAgICAgZm9udC1zaXplOiAwLjkzOHJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTYge1xuICAgICAgZm9udC1zaXplOiAxcmVtO1xuICAgIH1cblxuICAgIC5mcy0xNyB7XG4gICAgICBmb250LXNpemU6IDEuMDYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0xOCB7XG4gICAgICBmb250LXNpemU6IDEuMTI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0xOSB7XG4gICAgICBmb250LXNpemU6IDEuMTg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yMCB7XG4gICAgICBmb250LXNpemU6IDEuMjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIxIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zMTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTIyIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIzIHtcbiAgICAgIGZvbnQtc2l6ZTogMS40MzhyZW07XG4gICAgfVxuXG4gICAgLmZzLTI0IHtcbiAgICAgIGZvbnQtc2l6ZTogMS41cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNSB7XG4gICAgICBmb250LXNpemU6IDEuNTYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0yNiB7XG4gICAgICBmb250LXNpemU6IDEuNjI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNyB7XG4gICAgICBmb250LXNpemU6IDEuNjg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yOCB7XG4gICAgICBmb250LXNpemU6IDEuNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTI5IHtcbiAgICAgIGZvbnQtc2l6ZTogMS44MTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTMwIHtcbiAgICAgIGZvbnQtc2l6ZTogMS44NzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTM2IHtcbiAgICAgIGZvbnQtc2l6ZTogMi4yNXJlbTtcbiAgICB9XG5cbiAgICAudGV4dC1sZWZ0IHtcbiAgICAgIHRleHQtYWxpZ246IGxlZnQ7XG4gICAgfVxuXG4gICAgLnRleHQtY2VudGVyIHtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB9XG5cbiAgICAudGV4dC1yaWdodCB7XG4gICAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICB9XG5cbiAgICAuaW1hZ2Utc3R5bGUtYWxpZ24tcmlnaHQge1xuICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgICBtYXJnaW4tbGVmdDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZS1zdHlsZS1hbGlnbi1sZWZ0IHtcbiAgICAgIGZsb2F0OiBsZWZ0O1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIG1hcmdpbi1yaWdodDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgZGlzcGxheTogdGFibGU7XG4gICAgICBjbGVhcjogYm90aDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIG1hcmdpbjogMC41cmVtIGF1dG87XG4gICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS1vcmlnaW5hbCxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgICBvdmVyZmxvdzogdmlzaWJsZTtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtb3JpZ2luYWwgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIC5pbWFnZSBpbWcge1xuICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIG1heC13aWR0aDogMTAwJTtcbiAgICAgIG1pbi13aWR0aDogNTBweDtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1IHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS01MCB7XG4gICAgICB3aWR0aDogNTAlO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNzUge1xuICAgICAgd2lkdGg6IDc1JTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCB7XG4gICAgICB3aWR0aDogMTAwJTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUudGFibGUgdGFibGUge1xuICAgICAgYm9yZGVyLXJpZ2h0OiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgIH1cblxuICAgIGZpZ3VyZS50YWJsZSB0YWJsZSxcbiAgICBmaWd1cmUudGFibGUgdGFibGUgdHIgdGQsXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHRyIHRoIHtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLWJsYWNrKTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgfVxuXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHtcbiAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgYm94LXNoYWRvdzogbm9uZTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IC4yNXJlbSAuMjVyZW0gMCAwO1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIGNvbG9yOiB2YXIoLS1ncmF5KTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG4gICAgICBib3JkZXItc3BhY2luZzogMDtcbiAgICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG5cbiAgICAgIHRoZWFkIHtcbiAgICAgICAgdHIge1xuICAgICAgICAgIHRoIHtcbiAgICAgICAgICAgICY6Zmlyc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAmOmxhc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLXJpZ2h0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgZm9udC1zaXplOiAuODc1cmVtO1xuICAgICAgICAgICAgcGFkZGluZzogMXJlbTtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktMTAwKTtcbiAgICAgICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgICAgIGhlaWdodDogMi41cmVtO1xuICAgICAgICAgICAgYm9yZGVyOjBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IC4wNjI1cmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIGJvcmRlci1yaWdodDogLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICB0Ym9keSB7XG4gICAgICAgIHRyIHtcbiAgICAgICAgICAmOm50aC1jaGlsZCgybikge1xuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tZ3JheS0wKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktMCk7XG4gICAgICAgICAgICBjb2xvcjogcmdiYSh2YXIoLS1yYy1yZ2JhLWdyYXkpLCAwLjk1KTtcbiAgICAgICAgICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICBmb250LXNpemU6IC44NzVyZW07XG4gICAgICAgICAgICBwYWRkaW5nOiAxcmVtO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLWdyYXkpO1xuICAgICAgICAgICAgaGVpZ2h0OiAzLjVyZW07XG4gICAgICAgICAgICBib3JkZXI6IDBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICBib3JkZXItcmlnaHQ6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICB3b3JkLWJyZWFrOiBicmVhay13b3JkO1xuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcblxuICAgICAgICAgICAgJjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcCB7XG4gICAgICAgICAgICAgIG1hcmdpbi1ib3R0b206IDBweCAhaW1wb3J0YW50O1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cblxuICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7XG5cbiAgICAgICAgICAgICAgJjpmaXJzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1yaWdodC1yYWRpdXM6IDAuMjVyZW07XG4gICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgIH1cblxuICAgIHVsLFxuICAgIG9sIHtcbiAgICAgIG1hcmdpbi10b3A6IDAuNXJlbTtcblxuICAgICAgbGkge1xuICAgICAgICBtYXJnaW46IDAuNXJlbTtcbiAgICAgICAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlLXR5cGU6IGRpc2M7XG4gICAgfVxuXG4gICAgaDEsXG4gICAgaDIsXG4gICAgaDMsXG4gICAgaDQsXG4gICAgaDUsXG4gICAgaDYge1xuICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIG1hcmdpbi1ib3R0b206IDFyZW07XG4gICAgfVxuXG4gICAgcCxcbiAgICBzcGFuIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIHAgc3Ryb25nLFxuICAgIHAgc3BhbiBzdHJvbmcge1xuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgfVxuXG4gICAgcCBzcGFuIHUsXG4gICAgcCB1IHtcbiAgICAgIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lO1xuICAgIH1cblxuICAgIHAgc3BhbiBpLFxuICAgIHAgaSB7XG4gICAgICBmb250LXN0eWxlOiBpdGFsaWM7XG4gICAgfVxuXG4gIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */"] + dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_25__.NgClass, _angular_common__WEBPACK_IMPORTED_MODULE_25__.NgForOf, _angular_common__WEBPACK_IMPORTED_MODULE_25__.NgIf, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_26__.SlideComponent, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_26__.CarouselComponent, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.ContenterrorComponent, _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__.McqComponent, _header_header_component__WEBPACK_IMPORTED_MODULE_5__.HeaderComponent, _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__.SaComponent, _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_7__.AnsComponent, _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__.StartpageComponent, _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__.AlertComponent, _mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_10__.McqSolutionsComponent, _mtf_mtf_component__WEBPACK_IMPORTED_MODULE_11__.MtfComponent], + styles: ["@charset \"UTF-8\";\n :root {\n --quml-scoreboard-sub-title: #6d7278;\n --quml-scoreboard-skipped: #969696;\n --quml-scoreboard-unattempted: #575757;\n --quml-color-success: #08bc82;\n --quml-color-danger: #f1635d;\n --quml-color-primary-contrast: #333;\n --quml-btn-border: #ccc;\n --quml-heder-text-color: #6250f5;\n --quml-header-bg-color: #c2c2c2;\n --quml-mcq-title-txt: #131415;\n --quml-zoom-btn-txt: #eee;\n --quml-zoom-btn-hover: #f2f2f2;\n --quml-main-bg: #fff;\n --quml-btn-color: #fff;\n --quml-question-bg: #fff;\n}\n\n.quml-header[_ngcontent-%COMP%] {\n background: var(--quml-header-bg-color);\n display: flow-root;\n height: 2.25rem;\n position: fixed;\n}\n\n.quml-container[_ngcontent-%COMP%] {\n overflow: hidden;\n width: 100%;\n height: 100%;\n position: relative;\n}\n\n.quml-landscape[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n\n .carousel {\n outline: none;\n}\n\n.col[_ngcontent-%COMP%] {\n padding-left: 0px;\n padding-right: 0px;\n}\n\n.quml-button[_ngcontent-%COMP%] {\n background-color: var(--primary-color);\n \n\n border: none;\n color: var(--quml-btn-color);\n padding: 0.25rem;\n text-align: center;\n text-decoration: none;\n font-size: 1rem;\n margin: 0.125rem 0.5rem 0.125rem 0.125rem;\n cursor: pointer;\n width: 3rem;\n height: 2.5rem;\n border-radius: 10%;\n}\n\n.landscape-mode[_ngcontent-%COMP%] {\n height: 100%;\n width: 100%;\n position: relative;\n background-color: var(--quml-main-bg);\n}\n\n.landscape-content[_ngcontent-%COMP%] {\n padding: 2.5rem 4rem 0 4rem;\n overflow: auto;\n height: 100%;\n width: 100%;\n}\n@media only screen and (max-width: 480px) {\n .landscape-content[_ngcontent-%COMP%] {\n padding: 5rem 1rem 0 1rem;\n height: calc(100% - 3rem);\n }\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] {\n position: absolute;\n left: 0;\n top: 3.5rem;\n text-align: center;\n z-index: 1;\n width: 4rem;\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] div[_ngcontent-%COMP%] {\n padding-bottom: 1.5rem;\n}\n\n.landscape-center[_ngcontent-%COMP%] {\n width: 100%;\n}\n\n.lanscape-mode-right[_ngcontent-%COMP%] {\n -ms-overflow-style: none; \n\n scrollbar-width: none; \n\n position: absolute;\n padding: 0 1rem;\n right: 0.5rem;\n color: var(--quml-scoreboard-unattempted);\n font-size: 0.75rem;\n height: calc(100% - 4rem);\n overflow-y: auto;\n top: 3.5rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n margin-top: 0.5rem;\n padding: 0;\n text-align: center;\n position: relative;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 0.0625rem;\n height: 100%;\n position: absolute;\n left: 0;\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 1;\n margin: 0 auto;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n width: 1.25rem;\n height: 1.25rem;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n display: inline-block;\n transform: rotate(45deg);\n height: 0.6rem;\n width: 0.3rem;\n border-bottom: 0.12rem solid var(--primary-color);\n border-right: 0.12rem solid var(--primary-color);\n position: absolute;\n top: 0.25rem;\n right: -0.7rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n position: absolute;\n top: 0.525rem;\n right: -0.7rem;\n height: 0.375rem;\n width: 0.375rem;\n border-radius: 0.375rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%] label[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n color: var(--white) !important;\n background: var(--primary-color);\n border: 0.03125rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 0.25rem;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n height: 1.65rem;\n border-radius: 0.25rem;\n position: absolute;\n width: 1.65rem;\n background: var(--quml-question-bg);\n z-index: -1;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] {\n display: none;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n height: 0;\n transform: scaleY(0);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n height: 100%;\n transform-origin: top;\n transition: transform 0.2s ease-out;\n transform: scaleY(1);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ label[_ngcontent-%COMP%] {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 50%;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border: 0.0625rem solid rgb(204, 204, 204);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.progressBar-border[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] .active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.att-color[_ngcontent-%COMP%] {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.info-page[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]:hover {\n color: var(--white) !important;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n color: var(--white);\n border: 0px solid transparent;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%] {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%] {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n\n.current-slide[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-sub-title);\n font-size: 0.875rem;\n font-weight: 900;\n letter-spacing: 0;\n}\n\n@media only screen and (max-width: 480px) {\n .lanscape-mode-right[_ngcontent-%COMP%] {\n background: var(--white);\n display: flex;\n align-items: center;\n overflow-x: auto;\n overflow-y: hidden;\n width: 90%;\n height: 2.5rem;\n padding: 1rem 0 0;\n margin: auto;\n left: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n padding: 0;\n text-align: center;\n position: relative;\n display: flex;\n height: 1.5rem;\n margin-top: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n z-index: 1;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 0px;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] {\n display: flex;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 2.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n top: -1.75rem;\n position: inherit;\n margin: 0.5rem 2.25rem;\n padding-left: 1.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n background: transparent;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.8125rem;\n right: auto;\n left: 0.625rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n margin-bottom: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 100%;\n height: 0.0625rem;\n position: absolute;\n left: 0;\n top: 50%;\n transform: translate(0, -50%);\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 0;\n margin: 0 auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n width: 0;\n transform: scaleX(0);\n margin: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n width: calc(100% - 4rem);\n transform-origin: left;\n transition: transform 0.2s ease-out;\n transform: scaleX(1);\n margin: -1.25rem 3rem 0 4rem;\n }\n .landscape-center[_ngcontent-%COMP%] {\n margin-top: 2rem;\n }\n .lanscape-mode-left[_ngcontent-%COMP%] {\n display: none;\n }\n .landscape-mode[_ngcontent-%COMP%] {\n grid-template-areas: \"right right right\" \"center center center\" \"left left left\";\n }\n}\n.quml-timer[_ngcontent-%COMP%] {\n padding: 0.5rem;\n}\n\n.quml-header-text[_ngcontent-%COMP%] {\n margin: 0.5rem;\n text-align: center;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n\n.quml-arrow-button[_ngcontent-%COMP%] {\n border-radius: 28%;\n font-size: 0%;\n outline: none;\n background-color: var(--primary-color);\n padding: 0.5rem;\n}\n\n.info-popup[_ngcontent-%COMP%] {\n position: absolute;\n top: 18%;\n right: 10%;\n font-size: 0.875rem;\n box-shadow: 0 0.125rem 0.875rem 0 rgba(0, 0, 0, 0.1);\n padding: 0.75rem;\n}\n\n.quml-menu[_ngcontent-%COMP%] {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n.quml-card[_ngcontent-%COMP%] {\n background-color: var(--white);\n padding: 1.25rem;\n box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);\n width: 25%;\n position: absolute;\n left: 37%;\n text-align: center;\n top: 25%;\n z-index: 2;\n}\n\n.quml-card-title[_ngcontent-%COMP%] {\n font-size: 1.25rem;\n text-align: center;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .wrong[_ngcontent-%COMP%] {\n color: red;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .right[_ngcontent-%COMP%] {\n color: green;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] button[_ngcontent-%COMP%] {\n color: var(--white);\n background-color: var(--primary-color);\n border-color: var(--primary-color);\n outline: none;\n font-size: 0.875rem;\n padding: 0.25rem 1.5rem;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] {\n width: 40%;\n display: inline;\n padding-right: 0.75rem;\n}\n\n .carousel.slide a.left.carousel-control.carousel-control-prev, .carousel.slide .carousel-control.carousel-control-next {\n display: none;\n}\n .carousel-item {\n perspective: unset;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] {\n visibility: hidden;\n margin-top: -2.5rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%] {\n display: grid;\n grid-template-columns: 1fr 15fr;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-menu[_ngcontent-%COMP%] {\n color: var(--quml-heder-text-color);\n font-size: 1.5rem;\n padding-left: 1.25rem;\n margin-top: 0.25rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-header-text[_ngcontent-%COMP%] {\n font-size: 0.875rem;\n color: var(--quml-heder-text-color);\n}\n\n.row[_ngcontent-%COMP%] {\n margin-right: 0px;\n margin-left: 0px;\n}\n\n.portrait-header[_ngcontent-%COMP%] {\n visibility: hidden;\n}\n\n.image-viewer__overlay[_ngcontent-%COMP%], .image-viewer__container[_ngcontent-%COMP%], .image-viewer__close[_ngcontent-%COMP%], .image-viewer__zoom[_ngcontent-%COMP%] {\n position: absolute;\n}\n.image-viewer__overlay[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n background: var(--quml-color-primary-contrast);\n z-index: 11111;\n}\n.image-viewer__container[_ngcontent-%COMP%] {\n background-color: var(--quml-color-primary-contrast);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 11111;\n width: 80%;\n height: 80%;\n}\n.image-viewer__img[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n.image-viewer__close[_ngcontent-%COMP%] {\n top: 1rem;\n right: 1rem;\n text-align: center;\n cursor: pointer;\n z-index: 999999;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 100%;\n width: 3rem;\n height: 3rem;\n position: inherit;\n}\n.image-viewer__close[_ngcontent-%COMP%]::after {\n content: \"\u2715\";\n color: var(--white);\n font-size: 2rem;\n}\n.image-viewer__close[_ngcontent-%COMP%]:hover {\n background: rgb(0, 0, 0);\n}\n.image-viewer__zoom[_ngcontent-%COMP%] {\n bottom: 1rem;\n right: 1rem;\n width: 2.5rem;\n height: auto;\n border-radius: 0.5rem;\n background: var(--white);\n display: flex;\n flex-direction: column;\n align-items: center;\n overflow: hidden;\n z-index: 99999;\n position: inherit;\n border: 0.0625rem solid var(--quml-zoom-btn-txt);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%], .image-viewer__zoomout[_ngcontent-%COMP%] {\n text-align: center;\n height: 2.5rem;\n position: relative;\n width: 2.5rem;\n cursor: pointer;\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]:hover, .image-viewer__zoomout[_ngcontent-%COMP%]:hover {\n background-color: var(--quml-zoom-btn-hover);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after, .image-viewer__zoomout[_ngcontent-%COMP%]::after {\n font-size: 1.5rem;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%] {\n border-bottom: 0.0625rem solid var(--quml-btn-border);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after {\n content: \"+\";\n}\n.image-viewer__zoomout[_ngcontent-%COMP%]::after {\n content: \"\u2212\";\n}\n\n\n\n quml-ans {\n cursor: pointer;\n}\n quml-ans svg circle {\n fill: var(--quml-zoom-btn-txt);\n}\n .magnify-icon {\n position: absolute;\n right: 0;\n bottom: 0;\n width: 1.5rem;\n height: 1.5rem;\n border-top-left-radius: 0.5rem;\n cursor: pointer;\n background-color: var(--quml-color-primary-contrast);\n}\n .magnify-icon::after {\n content: \"\";\n position: absolute;\n bottom: 0.125rem;\n right: 0.125rem;\n z-index: 1;\n width: 1rem;\n height: 1rem;\n background-image: url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n .solution-options figure.image {\n border: 0.0625rem solid var(--quml-btn-border);\n overflow: hidden;\n border-radius: 0.25rem;\n position: relative;\n}\n .solutions .solution-options figure.image, .image-viewer__overlay .image-viewer__container {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n .solutions .solution-options figure.image .portrait, .image-viewer__overlay .image-viewer__container .portrait {\n width: auto;\n height: 100%;\n}\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: auto;\n height: auto;\n}\n@media only screen and (max-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: 100%;\n }\n}\n@media only screen and (min-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n height: 100%;\n }\n}\n .solutions .solution-options figure.image .landscape, .image-viewer__overlay .image-viewer__container .landscape {\n height: auto;\n}\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .quml-mcq .mcq-title p, .quml-sa .mcq-title p, quml-sa .mcq-title p, quml-mcq-solutions .mcq-title p {\n word-break: break-word;\n}\n@media only screen and (max-width: 480px) {\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n margin-top: 1rem;\n }\n}\n .quml-mcq .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-mcq .quml-mcq--option .quml-mcq-option-card p:last-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:first-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:last-child {\n margin-bottom: 0;\n}\n quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-25, quml-mcq-solutions figure.image.resize-50, quml-mcq-solutions figure.image.resize-75, quml-mcq-solutions figure.image.resize-100, quml-mcq-solutions figure.image.resize-original {\n width: 25%;\n height: auto;\n}\n quml-mcq-solutions .solution-options p {\n margin-bottom: 1rem;\n}\n .quml-option .option p {\n word-break: break-word;\n}\n\n.endPage-container-height[_ngcontent-%COMP%] {\n height: 100%;\n}\n\n.scoreboard-sections[_ngcontent-%COMP%] {\n display: contents;\n}\n.scoreboard-sections[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n\n.hover-effect[_ngcontent-%COMP%]:hover::after, .hover-effect[_ngcontent-%COMP%]:focus::after, .hover-effect.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n\n.mtf[_ngcontent-%COMP%] {\n margin-top: 2rem;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3NlY3Rpb24tcGxheWVyL3NlY3Rpb24tcGxheWVyLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdCQUFnQjtBQUVoQjtFQUNFLG9DQUFBO0VBQ0Esa0NBQUE7RUFDQSxzQ0FBQTtFQUNBLDZCQUFBO0VBQ0EsNEJBQUE7RUFDQSxtQ0FBQTtFQUNBLHVCQUFBO0VBQ0EsZ0NBQUE7RUFDQSwrQkFBQTtFQUNBLDZCQUFBO0VBQ0EseUJBQUE7RUFDQSw4QkFBQTtFQUNBLG9CQUFBO0VBQ0Esc0JBQUE7RUFDQSx3QkFBQTtBQUFGOztBQUdBO0VBQ0UsdUNBQUE7RUFDQSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxlQUFBO0FBQUY7O0FBR0E7RUFDRSxnQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7QUFBRjs7QUFHQTtFQUNFLFdBQUE7RUFDQSxZQUFBO0FBQUY7O0FBR0E7RUFDRSxhQUFBO0FBQUY7O0FBR0E7RUFDRSxpQkFBQTtFQUNBLGtCQUFBO0FBQUY7O0FBR0E7RUFDRSxzQ0FBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsNEJBQUE7RUFDQSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EscUJBQUE7RUFDQSxlQUFBO0VBQ0EseUNBQUE7RUFDQSxlQUFBO0VBQ0EsV0FBQTtFQUNBLGNBQUE7RUFDQSxrQkFBQTtBQUFGOztBQUdBO0VBQ0UsWUFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtFQUNBLHFDQUFBO0FBQUY7O0FBR0E7RUFDRSwyQkFBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtBQUFGO0FBRUU7RUFORjtJQU9JLHlCQUFBO0lBQ0EseUJBQUE7RUFDRjtBQUNGOztBQUVBO0VBQ0Usa0JBQUE7RUFDQSxPQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7QUFDRjs7QUFFQTtFQUNFLHNCQUFBO0FBQ0Y7O0FBRUE7RUFDRSxXQUFBO0FBQ0Y7O0FBRUE7RUFDRSx3QkFBQSxFQUFBLGdCQUFBO0VBQ0EscUJBQUEsRUFBQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxlQUFBO0VBQ0EsYUFBQTtFQUNBLHlDQUFBO0VBQ0Esa0JBQUE7RUFDQSx5QkFBQTtFQUNBLGdCQUFBO0VBQ0EsV0FBQTtBQUNGO0FBQ0U7RUFDRSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7QUFDSjtBQUNJO0VBQ0UsV0FBQTtFQUNBLGdCQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0EsT0FBQTtFQUNBLFFBQUE7RUFDQSwwQ0FBQTtFQUNBLFVBQUE7RUFDQSxjQUFBO0FBQ047QUFDSTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQUNOO0FBQ007RUFDRSx5Q0FBQTtFQUNBLDJEQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLHdCQUFBO0FBQ1I7QUFBUTtFQUNFLDRDQUFBO0FBRVY7QUFHTTtFQUNFLHNDQUFBO0VBQ0EsMkJBQUE7QUFEUjtBQUdNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtBQURSO0FBT1U7RUFDRSxzQ0FBQTtFQUNBLDJCQUFBO0FBTFo7QUFPVTtFQUNFLG1CQUFBO0VBQ0EsZ0NBQUE7QUFMWjtBQVlZO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsY0FBQTtFQUNBLGVBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0Esa0JBQUE7QUFWZDtBQWlCUTtFQUNFLFdBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsY0FBQTtFQUNBLGFBQUE7RUFDQSxpREFBQTtFQUNBLGdEQUFBO0VBQ0Esa0JBQUE7RUFDQSxZQUFBO0VBQ0EsY0FBQTtBQWZWO0FBa0JNO0VBR0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSxnQkFBQTtFQUNBLGVBQUE7RUFDQSx1QkFBQTtBQWxCUjtBQXFCUTtFQUNFLHVDQUFBO0VBQ0EsNkJBQUE7QUFuQlY7QUF1QlE7RUFDRSxvQ0FBQTtFQUNBLDJCQUFBO0FBckJWO0FBeUJRO0VBQ0U7Ozs7OztHQUFBO0VBT0EsNkJBQUE7QUF2QlY7QUE0QlE7RUFDRSw4QkFBQTtFQUNBLGdDQUFBO0VBQ0EsNkNBQUE7QUExQlY7QUE4Qkk7RUFDRSx5Q0FBQTtFQUNBLHNCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EseUNBQUE7RUFDQSwyREFBQTtFQUNBLHNCQUFBO0VBQ0EsZUFBQTtBQTVCTjtBQThCTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7RUFDQSxrQkFBQTtFQUNBLHdCQUFBO0FBNUJSO0FBNkJRO0VBQ0UsNENBQUE7QUEzQlY7QUE4Qk07RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBOUJSO0FBK0JRO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtFQUNBLHNCQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsbUNBQUE7RUFDQSxXQUFBO0FBN0JWO0FBZ0NNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBOUJSO0FBZ0NNO0VBQ0UseUNBQUE7RUFDQSwyREFBQTtBQTlCUjtBQStCUTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUE3QlY7QUFpQ0k7RUFDRSxhQUFBO0FBL0JOO0FBaUNJO0VBQ0UsU0FBQTtFQUNBLG9CQUFBO0FBL0JOO0FBaUNJO0VBQ0UsWUFBQTtFQUNBLHFCQUFBO0VBQ0EsbUNBQUE7RUFDQSxvQkFBQTtBQS9CTjtBQWtDTTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUFoQ1I7QUFtQ0k7RUFDRSx5Q0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EsMENBQUE7RUFDQSxzQkFBQTtFQUNBLGVBQUE7QUFqQ047QUFtQ1E7RUFDRSw0Q0FBQTtBQWpDVjtBQXFDTTs7RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBcENSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtFQUNBLDRDQUFBO0FBckNSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBckNSO0FBc0NRO0VBQ0UsOEJBQUE7QUFwQ1Y7QUF1Q007RUFHRSxtQkFBQTtFQUNBLDZCQUFBO0FBdkNSO0FBeUNNO0VBQ0UsdUNBQUE7RUFDQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLG9DQUFBO0VBQ0EsMkJBQUE7QUF2Q1I7QUF5Q007RUFDRTs7Ozs7O0dBQUE7RUFPQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7QUF2Q1I7QUF3Q1E7RUFDRSw0Q0FBQTtFQUNBLDJCQUFBO0FBdENWOztBQTZDQTtFQUNFLHVDQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0FBMUNGOztBQTZDQTtFQUNFO0lBQ0Usd0JBQUE7SUFDQSxhQUFBO0lBQ0EsbUJBQUE7SUFDQSxnQkFBQTtJQUNBLGtCQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7SUFDQSxpQkFBQTtJQUNBLFlBQUE7SUFDQSxPQUFBO0VBMUNGO0VBMkNFO0lBQ0UsZ0JBQUE7SUFDQSxVQUFBO0lBQ0Esa0JBQUE7SUFDQSxrQkFBQTtJQUNBLGFBQUE7SUFDQSxjQUFBO0lBQ0EsYUFBQTtFQXpDSjtFQTBDSTtJQUNFLHFCQUFBO0lBQ0EsVUFBQTtFQXhDTjtFQTBDTTtJQUNFLGlCQUFBO0VBeENSO0VBMkNJO0lBQ0UsYUFBQTtFQXpDTjtFQTBDTTtJQUNFLHFCQUFBO0VBeENSO0VBNENNO0lBQ0UsYUFBQTtJQUNBLGlCQUFBO0lBQ0Esc0JBQUE7SUFDQSxxQkFBQTtFQTFDUjtFQTJDUTtJQUNFLHVCQUFBO0VBekNWO0VBNkNRO0lBQ0UsV0FBQTtJQUNBLGVBQUE7SUFDQSxXQUFBO0lBQ0EsY0FBQTtFQTNDVjtFQStDUTtJQUNFLFdBQUE7SUFDQSxjQUFBO0lBQ0EsWUFBQTtJQUNBLFdBQUE7RUE3Q1Y7RUFpRFE7SUFDRSxXQUFBO0lBQ0EsY0FBQTtJQUNBLFlBQUE7SUFDQSxXQUFBO0VBL0NWO0VBbURRO0lBQ0UsV0FBQTtJQUNBLGNBQUE7SUFDQSxZQUFBO0lBQ0EsV0FBQTtFQWpEVjtFQXFESTtJQUNFLHFCQUFBO0lBQ0EsZ0JBQUE7RUFuRE47RUFxREk7SUFDRSxXQUFBO0lBQ0EsV0FBQTtJQUNBLGlCQUFBO0lBQ0Esa0JBQUE7SUFDQSxPQUFBO0lBQ0EsUUFBQTtJQUNBLDZCQUFBO0lBQ0EsUUFBQTtJQUNBLDBDQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7RUFuRE47RUF1REE7SUFDRSxRQUFBO0lBQ0Esb0JBQUE7SUFDQSxTQUFBO0VBckRGO0VBdURBO0lBQ0Usd0JBQUE7SUFDQSxzQkFBQTtJQUNBLG1DQUFBO0lBQ0Esb0JBQUE7SUFDQSw0QkFBQTtFQXJERjtFQXVEQTtJQUNFLGdCQUFBO0VBckRGO0VBd0RBO0lBQ0UsYUFBQTtFQXRERjtFQXlEQTtJQUNFLGdGQUNFO0VBeERKO0FBQ0Y7QUE2REE7RUFDRSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGNBQUE7RUFDQSxrQkFBQTtFQUNBLHVCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxtQkFBQTtBQTNERjs7QUE4REE7RUFDRSxrQkFBQTtFQUNBLGFBQUE7RUFDQSxhQUFBO0VBQ0Esc0NBQUE7RUFDQSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7RUFDQSxtQkFBQTtFQUVBLG9EQUFBO0VBQ0EsZ0JBQUE7QUE1REY7O0FBK0RBO0VBQ0UsYUFBQTtFQUNBLGNBQUE7QUE1REY7O0FBK0RBO0VBQ0UsOEJBQUE7RUFDQSxnQkFBQTtFQUNBLGlEQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0EsU0FBQTtFQUNBLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7QUE1REY7O0FBK0RBO0VBQ0Usa0JBQUE7RUFDQSxrQkFBQTtBQTVERjs7QUErREE7RUFDRSxVQUFBO0FBNURGOztBQStEQTtFQUNFLFlBQUE7QUE1REY7O0FBK0RBO0VBQ0UsbUJBQUE7RUFDQSxzQ0FBQTtFQUNBLGtDQUFBO0VBQ0EsYUFBQTtFQUNBLG1CQUFBO0VBQ0EsdUJBQUE7QUE1REY7O0FBK0RBO0VBQ0UsVUFBQTtFQUNBLGVBQUE7RUFDQSxzQkFBQTtBQTVERjs7QUFpRUk7O0VBRUUsYUFBQTtBQTlETjtBQWtFRTtFQUNFLGtCQUFBO0FBaEVKOztBQW9FQTtFQUNFLGtCQUFBO0VBQ0EsbUJBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsYUFBQTtFQUNBLCtCQUFBO0FBakVGOztBQW9FQTtFQUNFLG1DQUFBO0VBQ0EsaUJBQUE7RUFDQSxxQkFBQTtFQUNBLG1CQUFBO0FBakVGOztBQW9FQTtFQUNFLG1CQUFBO0VBQ0EsbUNBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsaUJBQUE7RUFDQSxnQkFBQTtBQWpFRjs7QUFvRUE7RUFDRSxrQkFBQTtBQWpFRjs7QUFxRUU7RUFJRSxrQkFBQTtBQXJFSjtBQXdFRTtFQUNFLFdBQUE7RUFDQSxZQUFBO0VBQ0EsOENBQUE7RUFDQSxjQUFBO0FBdEVKO0FBeUVFO0VBQ0Usb0RBQUE7RUFDQSxRQUFBO0VBQ0EsU0FBQTtFQUNBLGdDQUFBO0VBQ0EsY0FBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0FBdkVKO0FBMEVFO0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUF4RUo7QUEyRUU7RUFDRSxTQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7RUFDQSw4QkFBQTtFQUNBLG1CQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQXpFSjtBQTJFSTtFQUNFLFlBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QUF6RU47QUE0RUk7RUFDRSx3QkFBQTtBQTFFTjtBQThFRTtFQUNFLFlBQUE7RUFDQSxXQUFBO0VBQ0EsYUFBQTtFQUNBLFlBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsYUFBQTtFQUNBLHNCQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGNBQUE7RUFDQSxpQkFBQTtFQUNBLGdEQUFBO0FBNUVKO0FBK0VFO0VBRUUsa0JBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSxhQUFBO0VBQ0EsZUFBQTtBQTlFSjtBQWdGSTtFQUNFLDRDQUFBO0FBOUVOO0FBaUZJO0VBQ0UsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsZ0NBQUE7QUEvRU47QUFtRkU7RUFDRSxxREFBQTtBQWpGSjtBQW1GSTtFQUNFLFlBQUE7QUFqRk47QUFzRkk7RUFDRSxZQUFBO0FBcEZOOztBQXlGQSxlQUFBO0FBRUU7RUFDRSxlQUFBO0FBdkZKO0FBd0ZJO0VBQ0UsOEJBQUE7QUF0Rk47QUEwRkU7RUFDRSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSw4QkFBQTtFQUNBLGVBQUE7RUFDQSxvREFBQTtBQXhGSjtBQTJGRTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHc0REFBQTtFQUNBLHNCQUFBO0VBQ0EsNEJBQUE7RUFDQSwyQkFBQTtBQXpGSjtBQTRGRTtFQUNFLDhDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxzQkFBQTtFQUNBLGtCQUFBO0FBMUZKO0FBK0ZFOztFQUVFLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0FBN0ZKO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBOEZNO0VBSkY7O0lBS0ksV0FBQTtFQTFGTjtBQUNGO0FBNEZNO0VBUkY7O0lBU0ksWUFBQTtFQXhGTjtBQUNGO0FBMkZJOztFQUNFLFlBQUE7QUF4Rk47QUFnR0k7Ozs7RUFDRSxnQ0FBQTtBQTNGTjtBQTZGTTs7OztFQUNFLHNCQUFBO0FBeEZSO0FBMEZNO0VBTkY7Ozs7SUFPSSxnQkFBQTtFQXBGTjtBQUNGO0FBOEZNOzs7Ozs7OztFQUVFLGdCQUFBO0FBdEZSO0FBMkZJOzs7Ozs7RUFNRSxVQUFBO0VBQ0EsWUFBQTtBQXpGTjtBQTRGSTtFQUNFLG1CQUFBO0FBMUZOO0FBOEZFO0VBQ0Usc0JBQUE7QUE1Rko7O0FBZ0dBO0VBQ0UsWUFBQTtBQTdGRjs7QUErRkE7RUFDRSxpQkFBQTtBQTVGRjtBQTZGRTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQTNGSjs7QUFrR0k7RUFDRSxzQ0FBQTtFQUNBLFdBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtBQS9GTjs7QUFvR0E7RUFDRSxnQkFBQTtBQWpHRiIsInNvdXJjZXNDb250ZW50IjpbIkBpbXBvcnQgXCIuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvQHByb2plY3Qtc3VuYmlyZC9zYi1zdHlsZXMvYXNzZXRzL21peGlucy9taXhpbnNcIjtcblxuOjpuZy1kZWVwIDpyb290IHtcbiAgLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlOiAjNmQ3Mjc4O1xuICAtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkOiAjOTY5Njk2O1xuICAtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZDogIzU3NTc1NztcbiAgLS1xdW1sLWNvbG9yLXN1Y2Nlc3M6ICMwOGJjODI7XG4gIC0tcXVtbC1jb2xvci1kYW5nZXI6ICNmMTYzNWQ7XG4gIC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0OiAjMzMzO1xuICAtLXF1bWwtYnRuLWJvcmRlcjogI2NjYztcbiAgLS1xdW1sLWhlZGVyLXRleHQtY29sb3I6ICM2MjUwZjU7XG4gIC0tcXVtbC1oZWFkZXItYmctY29sb3I6ICNjMmMyYzI7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xuICAtLXF1bWwtem9vbS1idG4tdHh0OiAjZWVlO1xuICAtLXF1bWwtem9vbS1idG4taG92ZXI6ICNmMmYyZjI7XG4gIC0tcXVtbC1tYWluLWJnOiAjZmZmO1xuICAtLXF1bWwtYnRuLWNvbG9yOiAjZmZmO1xuICAtLXF1bWwtcXVlc3Rpb24tYmc6ICNmZmY7XG59XG5cbi5xdW1sLWhlYWRlciB7XG4gIGJhY2tncm91bmQ6IHZhcigtLXF1bWwtaGVhZGVyLWJnLWNvbG9yKTtcbiAgZGlzcGxheTogZmxvdy1yb290O1xuICBoZWlnaHQ6IDIuMjVyZW07XG4gIHBvc2l0aW9uOiBmaXhlZDtcbn1cblxuLnF1bWwtY29udGFpbmVyIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4ucXVtbC1sYW5kc2NhcGUge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xufVxuXG46Om5nLWRlZXAgLmNhcm91c2VsIHtcbiAgb3V0bGluZTogbm9uZTtcbn1cblxuLmNvbCB7XG4gIHBhZGRpbmctbGVmdDogMHB4O1xuICBwYWRkaW5nLXJpZ2h0OiAwcHg7XG59XG5cbi5xdW1sLWJ1dHRvbiB7XG4gIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAvKiBOYXZ5IEJsdWUgKi9cbiAgYm9yZGVyOiBub25lO1xuICBjb2xvcjogdmFyKC0tcXVtbC1idG4tY29sb3IpO1xuICBwYWRkaW5nOiAwLjI1cmVtO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgZm9udC1zaXplOiAxcmVtO1xuICBtYXJnaW46IDAuMTI1cmVtIDAuNXJlbSAwLjEyNXJlbSAwLjEyNXJlbTtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB3aWR0aDogM3JlbTtcbiAgaGVpZ2h0OiAyLjVyZW07XG4gIGJvcmRlci1yYWRpdXM6IDEwJTtcbn1cblxuLmxhbmRzY2FwZS1tb2RlIHtcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLW1haW4tYmcpO1xufVxuXG4ubGFuZHNjYXBlLWNvbnRlbnQge1xuICBwYWRkaW5nOiAyLjVyZW0gNHJlbSAwIDRyZW07XG4gIG92ZXJmbG93OiBhdXRvO1xuICBoZWlnaHQ6IDEwMCU7XG4gIHdpZHRoOiAxMDAlO1xuXG4gIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgICBwYWRkaW5nOiA1cmVtIDFyZW0gMCAxcmVtO1xuICAgIGhlaWdodDogY2FsYygxMDAlIC0gM3JlbSk7XG4gIH1cbn1cblxuLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgdG9wOiAzLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgei1pbmRleDogMTtcbiAgd2lkdGg6IDRyZW07XG59XG5cbi5sYW5zY2FwZS1tb2RlLWxlZnQgZGl2IHtcbiAgcGFkZGluZy1ib3R0b206IDEuNXJlbTtcbn1cblxuLmxhbmRzY2FwZS1jZW50ZXIge1xuICB3aWR0aDogMTAwJTtcbn1cblxuLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7IC8qIElFIGFuZCBFZGdlICovXG4gIHNjcm9sbGJhci13aWR0aDogbm9uZTsgLyogRmlyZWZveCAqL1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHBhZGRpbmc6IDAgMXJlbTtcbiAgcmlnaHQ6IDAuNXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgaGVpZ2h0OiBjYWxjKDEwMCUgLSA0cmVtKTtcbiAgb3ZlcmZsb3cteTogYXV0bztcbiAgdG9wOiAzLjVyZW07XG5cbiAgdWwge1xuICAgIGxpc3Qtc3R5bGU6IG5vbmU7XG4gICAgbWFyZ2luLXRvcDogMC41cmVtO1xuICAgIHBhZGRpbmc6IDA7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuICAgICY6OmJlZm9yZSB7XG4gICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgd2lkdGg6IDAuMDYyNXJlbTtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgIGxlZnQ6IDA7XG4gICAgICByaWdodDogMDtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjA0LCAyMDQsIDIwNCwgMC41KTtcbiAgICAgIHotaW5kZXg6IDE7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICB9XG4gICAgbGkge1xuICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgICAgei1pbmRleDogMjtcblxuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICAgIC5zaW5nbGVDb250ZW50Lm5vbkZlZWRiYWNrIHtcbiAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cbiAgICAgIGxpLmF0dC1jb2xvciB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiB7XG4gICAgICB1bCB7XG4gICAgICAgICYubm9uRmVlZGJhY2sge1xuICAgICAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgICBsaS5hdHQtY29sb3Ige1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICBsaSB7XG4gICAgICAgICAgJjpob3ZlcixcbiAgICAgICAgICAmOmZvY3VzLFxuICAgICAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICAgIHdpZHRoOiAxLjY1cmVtO1xuICAgICAgICAgICAgICBoZWlnaHQ6IDEuNjVyZW07XG4gICAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgICAgICAgcGFkZGluZzogMC4yNXJlbTtcbiAgICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgaGVpZ2h0OiAwLjZyZW07XG4gICAgICAgICAgd2lkdGg6IDAuM3JlbTtcbiAgICAgICAgICBib3JkZXItYm90dG9tOiAwLjEycmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlci1yaWdodDogMC4xMnJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgdG9wOiAwLjI1cmVtO1xuICAgICAgICAgIHJpZ2h0OiAtMC43cmVtO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Q6OmFmdGVyLFxuICAgICAgJi53cm9uZzo6YWZ0ZXIsXG4gICAgICAmLnBhcnRpYWw6OmFmdGVyIHtcbiAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICB0b3A6IDAuNTI1cmVtO1xuICAgICAgICByaWdodDogLTAuN3JlbTtcbiAgICAgICAgaGVpZ2h0OiAwLjM3NXJlbTtcbiAgICAgICAgd2lkdGg6IDAuMzc1cmVtO1xuICAgICAgICBib3JkZXItcmFkaXVzOiAwLjM3NXJlbTtcbiAgICAgIH1cbiAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tY29ycmVjdC1iZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgICYud3Jvbmcge1xuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgLS13cm9uZy1iZzogdmFyKC0tcXVtbC1jb2xvci1kYW5nZXIpO1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXdyb25nLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIC0tcGFydGlhbC1iZzogbGluZWFyLWdyYWRpZW50KFxuICAgICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDAlLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDUwJSxcbiAgICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgICAgcmdiYSgyNDksIDEyMiwgMTE2LCAxKSAxMDAlXG4gICAgICAgICAgKTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hdHRlbXB0ZWQsXG4gICAgICAmLnBhcnRpYWwge1xuICAgICAgICBsYWJlbCB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiBsYWJlbCB7XG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDAuMjVyZW07XG4gICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBoZWlnaHQ6IDEuMjVyZW07XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgIG1hcmdpbi1ib3R0b206IDIuMjVyZW07XG4gICAgICBjdXJzb3I6IHBvaW50ZXI7XG5cbiAgICAgICYucmVxdWlyZXNTdWJtaXQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hY3RpdmUsXG4gICAgICAmOmhvdmVyLFxuICAgICAgJjpmb2N1cyB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgICAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgICAgICB6LWluZGV4OiAtMTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5za2lwcGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXNraXBwZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICB9XG4gICAgICAmLnVuYXR0ZW1wdGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gICAgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIHtcbiAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgfVxuICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB+IHVsIHtcbiAgICAgIGhlaWdodDogMDtcbiAgICAgIHRyYW5zZm9ybTogc2NhbGVZKDApO1xuICAgIH1cbiAgICBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHRyYW5zZm9ybS1vcmlnaW46IHRvcDtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjJzIGVhc2Utb3V0O1xuICAgICAgdHJhbnNmb3JtOiBzY2FsZVkoMSk7XG4gICAgfVxuICAgIC5zZWN0aW9uIHtcbiAgICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXTpjaGVja2VkIH4gbGFiZWwge1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXF1bWwtcXVlc3Rpb24tYmcpO1xuICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgd2lkdGg6IDEuMjVyZW07XG4gICAgICBwYWRkaW5nOiAwLjI1cmVtO1xuICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHJnYmEoMjA0LCAyMDQsIDIwNCwgMSk7XG4gICAgICBtYXJnaW4tYm90dG9tOiAyLjI1cmVtO1xuICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyLFxuICAgICAgLmFjdGl2ZSxcbiAgICAgICYuYXR0LWNvbG9yIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cblxuICAgICAgJi5pbmZvLXBhZ2Uge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICB9XG4gICAgICAmLnNraXBwZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkKTtcbiAgICAgICAgJjpob3ZlciB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLnBhcnRpYWwsXG4gICAgICAmLndyb25nLFxuICAgICAgJi5jb3JyZWN0IHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYm9yZGVyOiAwcHggc29saWQgdHJhbnNwYXJlbnQ7XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Qge1xuICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLWNvcnJlY3QtYmcpO1xuICAgICAgfVxuICAgICAgJi53cm9uZyB7XG4gICAgICAgIC0td3JvbmctYmc6IHZhcigtLXF1bWwtY29sb3ItZGFuZ2VyKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td3JvbmctYmcpO1xuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgLS1wYXJ0aWFsLWJnOiBsaW5lYXItZ3JhZGllbnQoXG4gICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgIHJnYmEoNzEsIDE2NCwgMTI4LCAxKSAwJSxcbiAgICAgICAgICByZ2JhKDcxLCAxNjQsIDEyOCwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgMTAwJVxuICAgICAgICApO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgIH1cbiAgICAgICYudW5hdHRlbXB0ZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuXG4uY3VycmVudC1zbGlkZSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlKTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgZm9udC13ZWlnaHQ6IDkwMDtcbiAgbGV0dGVyLXNwYWNpbmc6IDA7XG59XG5cbkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgb3ZlcmZsb3cteDogYXV0bztcbiAgICBvdmVyZmxvdy15OiBoaWRkZW47XG4gICAgd2lkdGg6IDkwJTtcbiAgICBoZWlnaHQ6IDIuNXJlbTtcbiAgICBwYWRkaW5nOiAxcmVtIDAgMDtcbiAgICBtYXJnaW46IGF1dG87XG4gICAgbGVmdDogMDtcbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlOiBub25lO1xuICAgICAgcGFkZGluZzogMDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICBoZWlnaHQ6IDEuNXJlbTtcbiAgICAgIG1hcmdpbi10b3A6IDA7XG4gICAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgICAgbWFyZ2luLXJpZ2h0OiAyLjI1cmVtO1xuICAgICAgICB6LWluZGV4OiAxO1xuXG4gICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zaW5nbGVDb250ZW50IHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAgLnNob3dGZWVkQmFjay1wcm9ncmVzc0JhcjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zZWN0aW9uIHtcbiAgICAgICAgdWwge1xuICAgICAgICAgIHRvcDogLTEuNzVyZW07XG4gICAgICAgICAgcG9zaXRpb246IGluaGVyaXQ7XG4gICAgICAgICAgbWFyZ2luOiAwLjVyZW0gMi4yNXJlbTtcbiAgICAgICAgICBwYWRkaW5nLWxlZnQ6IDEuMjVyZW07XG4gICAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuODEyNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgICAgbGVmdDogMC42MjVyZW07XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuNTI1cmVtO1xuICAgICAgICAgICAgbGVmdDogMC41cmVtO1xuICAgICAgICAgICAgcmlnaHQ6IGF1dG87XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYud3Jvbmcge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLnBhcnRpYWwge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgLnNlY3Rpb24gbGFiZWwge1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIG1hcmdpbi1ib3R0b206IDA7XG4gICAgICB9XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgaGVpZ2h0OiAwLjA2MjVyZW07XG4gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgbGVmdDogMDtcbiAgICAgICAgdG9wOiA1MCU7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKDAsIC01MCUpO1xuICAgICAgICByaWdodDogMDtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMDQsIDIwNCwgMjA0LCAwLjUpO1xuICAgICAgICB6LWluZGV4OiAwO1xuICAgICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQgdWwgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIH4gdWwge1xuICAgIHdpZHRoOiAwO1xuICAgIHRyYW5zZm9ybTogc2NhbGVYKDApO1xuICAgIG1hcmdpbjogMDtcbiAgfVxuICAubGFuc2NhcGUtbW9kZS1yaWdodCB1bCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICB3aWR0aDogY2FsYygxMDAlIC0gNHJlbSk7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogbGVmdDtcbiAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4ycyBlYXNlLW91dDtcbiAgICB0cmFuc2Zvcm06IHNjYWxlWCgxKTtcbiAgICBtYXJnaW46IC0xLjI1cmVtIDNyZW0gMCA0cmVtO1xuICB9XG4gIC5sYW5kc2NhcGUtY2VudGVyIHtcbiAgICBtYXJnaW4tdG9wOiAycmVtO1xuICB9XG5cbiAgLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gICAgZGlzcGxheTogbm9uZTtcbiAgfVxuXG4gIC5sYW5kc2NhcGUtbW9kZSB7XG4gICAgZ3JpZC10ZW1wbGF0ZS1hcmVhczpcbiAgICAgIFwicmlnaHQgcmlnaHQgcmlnaHRcIlxuICAgICAgXCJjZW50ZXIgY2VudGVyIGNlbnRlclwiXG4gICAgICBcImxlZnQgbGVmdCBsZWZ0XCI7XG4gIH1cbn1cblxuLnF1bWwtdGltZXIge1xuICBwYWRkaW5nOiAwLjVyZW07XG59XG5cbi5xdW1sLWhlYWRlci10ZXh0IHtcbiAgbWFyZ2luOiAwLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gIG92ZXJmbG93OiBoaWRkZW47XG4gIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5xdW1sLWFycm93LWJ1dHRvbiB7XG4gIGJvcmRlci1yYWRpdXM6IDI4JTtcbiAgZm9udC1zaXplOiAwJTtcbiAgb3V0bGluZTogbm9uZTtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gIHBhZGRpbmc6IDAuNXJlbTtcbn1cblxuLmluZm8tcG9wdXAge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMTglO1xuICByaWdodDogMTAlO1xuICBmb250LXNpemU6IDAuODc1cmVtO1xuICAvLyBmb250LWZhbWlseTogbm90by1zYW5zOyAvL05PU09OQVJcbiAgYm94LXNoYWRvdzogMCAwLjEyNXJlbSAwLjg3NXJlbSAwIHJnYmEoMCwgMCwgMCwgMC4xKTtcbiAgcGFkZGluZzogMC43NXJlbTtcbn1cblxuLnF1bWwtbWVudSB7XG4gIHdpZHRoOiAxLjVyZW07XG4gIGhlaWdodDogMS41cmVtO1xufVxuXG4ucXVtbC1jYXJkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0td2hpdGUpO1xuICBwYWRkaW5nOiAxLjI1cmVtO1xuICBib3gtc2hhZG93OiAwIDAuMjVyZW0gMC41cmVtIDAgcmdiYSgwLCAwLCAwLCAwLjIpO1xuICB3aWR0aDogMjUlO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IDM3JTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICB0b3A6IDI1JTtcbiAgei1pbmRleDogMjtcbn1cblxuLnF1bWwtY2FyZC10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMS4yNXJlbTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4ucXVtbC1jYXJkLWJvZHkgLndyb25nIHtcbiAgY29sb3I6IHJlZDtcbn1cblxuLnF1bWwtY2FyZC1ib2R5IC5yaWdodCB7XG4gIGNvbG9yOiBncmVlbjtcbn1cblxuLnF1bWwtY2FyZC1idXR0b24tc2VjdGlvbiAuYnV0dG9uLWNvbnRhaW5lciBidXR0b24ge1xuICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgYm9yZGVyLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgb3V0bGluZTogbm9uZTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgcGFkZGluZzogMC4yNXJlbSAxLjVyZW07XG59XG5cbi5xdW1sLWNhcmQtYnV0dG9uLXNlY3Rpb24gLmJ1dHRvbi1jb250YWluZXIge1xuICB3aWR0aDogNDAlO1xuICBkaXNwbGF5OiBpbmxpbmU7XG4gIHBhZGRpbmctcmlnaHQ6IDAuNzVyZW07XG59XG5cbjo6bmctZGVlcCB7XG4gIC5jYXJvdXNlbC5zbGlkZSB7XG4gICAgYS5sZWZ0LmNhcm91c2VsLWNvbnRyb2wuY2Fyb3VzZWwtY29udHJvbC1wcmV2LFxuICAgIC5jYXJvdXNlbC1jb250cm9sLmNhcm91c2VsLWNvbnRyb2wtbmV4dCB7XG4gICAgICBkaXNwbGF5OiBub25lO1xuICAgIH1cbiAgfVxuXG4gIC5jYXJvdXNlbC1pdGVtIHtcbiAgICBwZXJzcGVjdGl2ZTogdW5zZXQ7XG4gIH1cbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgbWFyZ2luLXRvcDogLTIuNXJlbTtcbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCAud3JhcHBlciB7XG4gIGRpc3BsYXk6IGdyaWQ7XG4gIGdyaWQtdGVtcGxhdGUtY29sdW1uczogMWZyIDE1ZnI7XG59XG5cbi5wb3RyYWl0LWhlYWRlci10b3AgLnF1bWwtbWVudSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLWhlZGVyLXRleHQtY29sb3IpO1xuICBmb250LXNpemU6IDEuNXJlbTtcbiAgcGFkZGluZy1sZWZ0OiAxLjI1cmVtO1xuICBtYXJnaW4tdG9wOiAwLjI1cmVtO1xufVxuXG4ucG90cmFpdC1oZWFkZXItdG9wIC5xdW1sLWhlYWRlci10ZXh0IHtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtaGVkZXItdGV4dC1jb2xvcik7XG59XG5cbi5yb3cge1xuICBtYXJnaW4tcmlnaHQ6IDBweDtcbiAgbWFyZ2luLWxlZnQ6IDBweDtcbn1cblxuLnBvcnRyYWl0LWhlYWRlciB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbn1cblxuLmltYWdlLXZpZXdlciB7XG4gICZfX292ZXJsYXksXG4gICZfX2NvbnRhaW5lcixcbiAgJl9fY2xvc2UsXG4gICZfX3pvb20ge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgfVxuXG4gICZfX292ZXJsYXkge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHotaW5kZXg6IDExMTExO1xuICB9XG5cbiAgJl9fY29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHRvcDogNTAlO1xuICAgIGxlZnQ6IDUwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgtNTAlLCAtNTAlKTtcbiAgICB6LWluZGV4OiAxMTExMTtcbiAgICB3aWR0aDogODAlO1xuICAgIGhlaWdodDogODAlO1xuICB9XG5cbiAgJl9faW1nIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gIH1cblxuICAmX19jbG9zZSB7XG4gICAgdG9wOiAxcmVtO1xuICAgIHJpZ2h0OiAxcmVtO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgei1pbmRleDogOTk5OTk5O1xuICAgIGJhY2tncm91bmQ6IHJnYmEoMCwgMCwgMCwgMC41KTtcbiAgICBib3JkZXItcmFkaXVzOiAxMDAlO1xuICAgIHdpZHRoOiAzcmVtO1xuICAgIGhlaWdodDogM3JlbTtcbiAgICBwb3NpdGlvbjogaW5oZXJpdDtcblxuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyNzE1XCI7XG4gICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgZm9udC1zaXplOiAycmVtO1xuICAgIH1cblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAxKTtcbiAgICB9XG4gIH1cblxuICAmX196b29tIHtcbiAgICBib3R0b206IDFyZW07XG4gICAgcmlnaHQ6IDFyZW07XG4gICAgd2lkdGg6IDIuNXJlbTtcbiAgICBoZWlnaHQ6IGF1dG87XG4gICAgYm9yZGVyLXJhZGl1czogMC41cmVtO1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDk5OTk5O1xuICAgIHBvc2l0aW9uOiBpbmhlcml0O1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtem9vbS1idG4tdHh0KTtcbiAgfVxuXG4gICZfX3pvb21pbixcbiAgJl9fem9vbW91dCB7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGhlaWdodDogMi41cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB3aWR0aDogMi41cmVtO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC16b29tLWJ0bi1ob3Zlcik7XG4gICAgfVxuXG4gICAgJjo6YWZ0ZXIge1xuICAgICAgZm9udC1zaXplOiAxLjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICB0b3A6IDUwJTtcbiAgICAgIGxlZnQ6IDUwJTtcbiAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC01MCUsIC01MCUpO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21pbiB7XG4gICAgYm9yZGVyLWJvdHRvbTogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG5cbiAgICAmOjphZnRlciB7XG4gICAgICBjb250ZW50OiBcIlxcMDAyQlwiO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21vdXQge1xuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyMjEyXCI7XG4gICAgfVxuICB9XG59XG5cbi8qIGVkaXRvciBjc3MgKi9cbjo6bmctZGVlcCB7XG4gIHF1bWwtYW5zIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgc3ZnIGNpcmNsZSB7XG4gICAgICBmaWxsOiB2YXIoLS1xdW1sLXpvb20tYnRuLXR4dCk7XG4gICAgfVxuICB9XG5cbiAgLm1hZ25pZnktaWNvbiB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMDtcbiAgICB3aWR0aDogMS41cmVtO1xuICAgIGhlaWdodDogMS41cmVtO1xuICAgIGJvcmRlci10b3AtbGVmdC1yYWRpdXM6IDAuNXJlbTtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0KTtcbiAgfVxuXG4gIC5tYWduaWZ5LWljb246OmFmdGVyIHtcbiAgICBjb250ZW50OiBcIlwiO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBib3R0b206IDAuMTI1cmVtO1xuICAgIHJpZ2h0OiAwLjEyNXJlbTtcbiAgICB6LWluZGV4OiAxO1xuICAgIHdpZHRoOiAxcmVtO1xuICAgIGhlaWdodDogMXJlbTtcbiAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoXCJkYXRhOmltYWdlL3N2Zyt4bWwsJTNDJTNGeG1sIHZlcnNpb249JzEuMCclM0YlM0UlM0NzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluaycgeG1sbnM6c3ZnanM9J2h0dHA6Ly9zdmdqcy5jb20vc3ZnanMnIHZlcnNpb249JzEuMScgd2lkdGg9JzUxMicgaGVpZ2h0PSc1MTInIHg9JzAnIHk9JzAnIHZpZXdCb3g9JzAgMCAzNy4xNjYgMzcuMTY2JyBzdHlsZT0nZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyJyB4bWw6c3BhY2U9J3ByZXNlcnZlJyBjbGFzcz0nJyUzRSUzQ2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0NwYXRoIGQ9J00zNS44MjksMzIuMDQ1bC02LjgzMy02LjgzM2MtMC41MTMtMC41MTMtMS4xNjctMC43ODgtMS44MzYtMC44NTNjMi4wNi0yLjU2NywzLjI5OC01LjgxOSwzLjI5OC05LjM1OSBjMC04LjI3MS02LjcyOS0xNS0xNS0xNWMtOC4yNzEsMC0xNSw2LjcyOS0xNSwxNWMwLDguMjcxLDYuNzI5LDE1LDE1LDE1YzMuMTIxLDAsNi4wMjEtMC45Niw4LjQyNC0yLjU5OCBjMC4wMTgsMC43NDQsMC4zMDUsMS40ODIsMC44NzIsMi4wNTJsNi44MzMsNi44MzNjMC41ODUsMC41ODYsMS4zNTQsMC44NzksMi4xMjEsMC44NzlzMS41MzYtMC4yOTMsMi4xMjEtMC44NzkgQzM3LjAwMSwzNS4xMTYsMzcuMDAxLDMzLjIxNywzNS44MjksMzIuMDQ1eiBNMTUuNDU4LDI1Yy01LjUxNCwwLTEwLTQuNDg0LTEwLTEwYzAtNS41MTQsNC40ODYtMTAsMTAtMTBjNS41MTQsMCwxMCw0LjQ4NiwxMCwxMCBDMjUuNDU4LDIwLjUxNiwyMC45NzIsMjUsMTUuNDU4LDI1eiBNMjIuMzM0LDE1YzAsMS4xMDQtMC44OTYsMi0yLDJoLTIuNzV2Mi43NWMwLDEuMTA0LTAuODk2LDItMiwycy0yLTAuODk2LTItMlYxN2gtMi43NSBjLTEuMTA0LDAtMi0wLjg5Ni0yLTJzMC44OTYtMiwyLTJoMi43NXYtMi43NWMwLTEuMTA0LDAuODk2LTIsMi0yczIsMC44OTYsMiwyVjEzaDIuNzVDMjEuNDM4LDEzLDIyLjMzNCwxMy44OTUsMjIuMzM0LDE1eicgZmlsbD0nJTIzZmZmZmZmJyBkYXRhLW9yaWdpbmFsPSclMjMwMDAwMDAnIHN0eWxlPScnIGNsYXNzPScnLyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDL2clM0UlM0Mvc3ZnJTNFJTBBXCIpO1xuICAgIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gICAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7XG4gIH1cblxuICAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2Uge1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAvLyB3aWR0aDogNy41cmVtO1xuICAgIC8vIGhlaWdodDogNy41cmVtO1xuICB9XG5cbiAgLnNvbHV0aW9ucyAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2UsXG4gIC5pbWFnZS12aWV3ZXJfX292ZXJsYXkgLmltYWdlLXZpZXdlcl9fY29udGFpbmVyIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG5cbiAgICAucG9ydHJhaXQge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IDEwMCU7XG4gICAgfVxuXG4gICAgLm5ldXRyYWwge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICB9XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgfVxuICAgIH1cblxuICAgIC5sYW5kc2NhcGUge1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW1jcSxcbiAgLnF1bWwtc2EsXG4gIHF1bWwtc2EsXG4gIHF1bWwtbWNxLXNvbHV0aW9ucyB7XG4gICAgLm1jcS10aXRsZSB7XG4gICAgICBjb2xvcjogdmFyKC0tcXVtbC1tY3EtdGl0bGUtdHh0KTtcblxuICAgICAgcCB7XG4gICAgICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gICAgICB9XG4gICAgICBAbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gICAgICAgIG1hcmdpbi10b3A6IDFyZW07XG4gICAgICB9XG4gICAgfVxuXG4gICAgLnF1bWwtbWNxLS1xdWVzdGlvbiB7XG4gICAgICBwIHtcbiAgICAgICAgLy8gbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAucXVtbC1tY3EtLW9wdGlvbiB7XG4gICAgICAucXVtbC1tY3Etb3B0aW9uLWNhcmQgcDpmaXJzdC1jaGlsZCxcbiAgICAgIC5xdW1sLW1jcS1vcHRpb24tY2FyZCBwOmxhc3QtY2hpbGQge1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAwO1xuICAgICAgfVxuICAgIH1cbiAgfVxuICBxdW1sLW1jcS1zb2x1dGlvbnMge1xuICAgIGZpZ3VyZS5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1LFxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNTAsXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS03NSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLW9yaWdpbmFsIHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgLnNvbHV0aW9uLW9wdGlvbnMgcCB7XG4gICAgICBtYXJnaW4tYm90dG9tOiAxcmVtO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW9wdGlvbiAub3B0aW9uIHAge1xuICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gIH1cbn1cblxuLmVuZFBhZ2UtY29udGFpbmVyLWhlaWdodCB7XG4gIGhlaWdodDogMTAwJTtcbn1cbi5zY29yZWJvYXJkLXNlY3Rpb25zIHtcbiAgZGlzcGxheTogY29udGVudHM7XG4gIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgei1pbmRleDogMjtcbiAgfVxufVxuLmhvdmVyLWVmZmVjdCB7XG4gICY6aG92ZXIsXG4gICY6Zm9jdXMsXG4gICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAmOjphZnRlciB7XG4gICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgfVxuICB9XG59XG5cbi5tdGYge1xuICBtYXJnaW4tdG9wOiAycmVtO1xufSJdLCJzb3VyY2VSb290IjoiIn0= */", ":root {\n --quml-mcq-title-txt: #131415;\n}\n\n .startpage__instr-desc .mcq-title, .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc .fs-8, .startpage__instr-desc .fs-9, .startpage__instr-desc .fs-10, .startpage__instr-desc .fs-11, .startpage__instr-desc .fs-12, .startpage__instr-desc .fs-13, .startpage__instr-desc .fs-14, .startpage__instr-desc .fs-15, .startpage__instr-desc .fs-16, .startpage__instr-desc .fs-17, .startpage__instr-desc .fs-18, .startpage__instr-desc .fs-19, .startpage__instr-desc .fs-20, .startpage__instr-desc .fs-21, .startpage__instr-desc .fs-22, .startpage__instr-desc .fs-23, .startpage__instr-desc .fs-24, .startpage__instr-desc .fs-25, .startpage__instr-desc .fs-26, .startpage__instr-desc .fs-27, .startpage__instr-desc .fs-28, .startpage__instr-desc .fs-29, .startpage__instr-desc .fs-30, .startpage__instr-desc .fs-36, .quml-mcq .fs-8, .quml-mcq .fs-9, .quml-mcq .fs-10, .quml-mcq .fs-11, .quml-mcq .fs-12, .quml-mcq .fs-13, .quml-mcq .fs-14, .quml-mcq .fs-15, .quml-mcq .fs-16, .quml-mcq .fs-17, .quml-mcq .fs-18, .quml-mcq .fs-19, .quml-mcq .fs-20, .quml-mcq .fs-21, .quml-mcq .fs-22, .quml-mcq .fs-23, .quml-mcq .fs-24, .quml-mcq .fs-25, .quml-mcq .fs-26, .quml-mcq .fs-27, .quml-mcq .fs-28, .quml-mcq .fs-29, .quml-mcq .fs-30, .quml-mcq .fs-36, .quml-sa .fs-8, .quml-sa .fs-9, .quml-sa .fs-10, .quml-sa .fs-11, .quml-sa .fs-12, .quml-sa .fs-13, .quml-sa .fs-14, .quml-sa .fs-15, .quml-sa .fs-16, .quml-sa .fs-17, .quml-sa .fs-18, .quml-sa .fs-19, .quml-sa .fs-20, .quml-sa .fs-21, .quml-sa .fs-22, .quml-sa .fs-23, .quml-sa .fs-24, .quml-sa .fs-25, .quml-sa .fs-26, .quml-sa .fs-27, .quml-sa .fs-28, .quml-sa .fs-29, .quml-sa .fs-30, .quml-sa .fs-36, quml-sa .fs-8, quml-sa .fs-9, quml-sa .fs-10, quml-sa .fs-11, quml-sa .fs-12, quml-sa .fs-13, quml-sa .fs-14, quml-sa .fs-15, quml-sa .fs-16, quml-sa .fs-17, quml-sa .fs-18, quml-sa .fs-19, quml-sa .fs-20, quml-sa .fs-21, quml-sa .fs-22, quml-sa .fs-23, quml-sa .fs-24, quml-sa .fs-25, quml-sa .fs-26, quml-sa .fs-27, quml-sa .fs-28, quml-sa .fs-29, quml-sa .fs-30, quml-sa .fs-36, quml-mcq-solutions .fs-8, quml-mcq-solutions .fs-9, quml-mcq-solutions .fs-10, quml-mcq-solutions .fs-11, quml-mcq-solutions .fs-12, quml-mcq-solutions .fs-13, quml-mcq-solutions .fs-14, quml-mcq-solutions .fs-15, quml-mcq-solutions .fs-16, quml-mcq-solutions .fs-17, quml-mcq-solutions .fs-18, quml-mcq-solutions .fs-19, quml-mcq-solutions .fs-20, quml-mcq-solutions .fs-21, quml-mcq-solutions .fs-22, quml-mcq-solutions .fs-23, quml-mcq-solutions .fs-24, quml-mcq-solutions .fs-25, quml-mcq-solutions .fs-26, quml-mcq-solutions .fs-27, quml-mcq-solutions .fs-28, quml-mcq-solutions .fs-29, quml-mcq-solutions .fs-30, quml-mcq-solutions .fs-36 {\n line-height: normal;\n}\n .startpage__instr-desc .fs-8, .quml-mcq .fs-8, .quml-sa .fs-8, quml-sa .fs-8, quml-mcq-solutions .fs-8 {\n font-size: 0.5rem;\n}\n .startpage__instr-desc .fs-9, .quml-mcq .fs-9, .quml-sa .fs-9, quml-sa .fs-9, quml-mcq-solutions .fs-9 {\n font-size: 0.563rem;\n}\n .startpage__instr-desc .fs-10, .quml-mcq .fs-10, .quml-sa .fs-10, quml-sa .fs-10, quml-mcq-solutions .fs-10 {\n font-size: 0.625rem;\n}\n .startpage__instr-desc .fs-11, .quml-mcq .fs-11, .quml-sa .fs-11, quml-sa .fs-11, quml-mcq-solutions .fs-11 {\n font-size: 0.688rem;\n}\n .startpage__instr-desc .fs-12, .quml-mcq .fs-12, .quml-sa .fs-12, quml-sa .fs-12, quml-mcq-solutions .fs-12 {\n font-size: 0.75rem;\n}\n .startpage__instr-desc .fs-13, .quml-mcq .fs-13, .quml-sa .fs-13, quml-sa .fs-13, quml-mcq-solutions .fs-13 {\n font-size: 0.813rem;\n}\n .startpage__instr-desc .fs-14, .quml-mcq .fs-14, .quml-sa .fs-14, quml-sa .fs-14, quml-mcq-solutions .fs-14 {\n font-size: 0.875rem;\n}\n .startpage__instr-desc .fs-15, .quml-mcq .fs-15, .quml-sa .fs-15, quml-sa .fs-15, quml-mcq-solutions .fs-15 {\n font-size: 0.938rem;\n}\n .startpage__instr-desc .fs-16, .quml-mcq .fs-16, .quml-sa .fs-16, quml-sa .fs-16, quml-mcq-solutions .fs-16 {\n font-size: 1rem;\n}\n .startpage__instr-desc .fs-17, .quml-mcq .fs-17, .quml-sa .fs-17, quml-sa .fs-17, quml-mcq-solutions .fs-17 {\n font-size: 1.063rem;\n}\n .startpage__instr-desc .fs-18, .quml-mcq .fs-18, .quml-sa .fs-18, quml-sa .fs-18, quml-mcq-solutions .fs-18 {\n font-size: 1.125rem;\n}\n .startpage__instr-desc .fs-19, .quml-mcq .fs-19, .quml-sa .fs-19, quml-sa .fs-19, quml-mcq-solutions .fs-19 {\n font-size: 1.188rem;\n}\n .startpage__instr-desc .fs-20, .quml-mcq .fs-20, .quml-sa .fs-20, quml-sa .fs-20, quml-mcq-solutions .fs-20 {\n font-size: 1.25rem;\n}\n .startpage__instr-desc .fs-21, .quml-mcq .fs-21, .quml-sa .fs-21, quml-sa .fs-21, quml-mcq-solutions .fs-21 {\n font-size: 1.313rem;\n}\n .startpage__instr-desc .fs-22, .quml-mcq .fs-22, .quml-sa .fs-22, quml-sa .fs-22, quml-mcq-solutions .fs-22 {\n font-size: 1.375rem;\n}\n .startpage__instr-desc .fs-23, .quml-mcq .fs-23, .quml-sa .fs-23, quml-sa .fs-23, quml-mcq-solutions .fs-23 {\n font-size: 1.438rem;\n}\n .startpage__instr-desc .fs-24, .quml-mcq .fs-24, .quml-sa .fs-24, quml-sa .fs-24, quml-mcq-solutions .fs-24 {\n font-size: 1.5rem;\n}\n .startpage__instr-desc .fs-25, .quml-mcq .fs-25, .quml-sa .fs-25, quml-sa .fs-25, quml-mcq-solutions .fs-25 {\n font-size: 1.563rem;\n}\n .startpage__instr-desc .fs-26, .quml-mcq .fs-26, .quml-sa .fs-26, quml-sa .fs-26, quml-mcq-solutions .fs-26 {\n font-size: 1.625rem;\n}\n .startpage__instr-desc .fs-27, .quml-mcq .fs-27, .quml-sa .fs-27, quml-sa .fs-27, quml-mcq-solutions .fs-27 {\n font-size: 1.688rem;\n}\n .startpage__instr-desc .fs-28, .quml-mcq .fs-28, .quml-sa .fs-28, quml-sa .fs-28, quml-mcq-solutions .fs-28 {\n font-size: 1.75rem;\n}\n .startpage__instr-desc .fs-29, .quml-mcq .fs-29, .quml-sa .fs-29, quml-sa .fs-29, quml-mcq-solutions .fs-29 {\n font-size: 1.813rem;\n}\n .startpage__instr-desc .fs-30, .quml-mcq .fs-30, .quml-sa .fs-30, quml-sa .fs-30, quml-mcq-solutions .fs-30 {\n font-size: 1.875rem;\n}\n .startpage__instr-desc .fs-36, .quml-mcq .fs-36, .quml-sa .fs-36, quml-sa .fs-36, quml-mcq-solutions .fs-36 {\n font-size: 2.25rem;\n}\n .startpage__instr-desc .text-left, .quml-mcq .text-left, .quml-sa .text-left, quml-sa .text-left, quml-mcq-solutions .text-left {\n text-align: left;\n}\n .startpage__instr-desc .text-center, .quml-mcq .text-center, .quml-sa .text-center, quml-sa .text-center, quml-mcq-solutions .text-center {\n text-align: center;\n}\n .startpage__instr-desc .text-right, .quml-mcq .text-right, .quml-sa .text-right, quml-sa .text-right, quml-mcq-solutions .text-right {\n text-align: right;\n}\n .startpage__instr-desc .image-style-align-right, .quml-mcq .image-style-align-right, .quml-sa .image-style-align-right, quml-sa .image-style-align-right, quml-mcq-solutions .image-style-align-right {\n float: right;\n text-align: right;\n margin-left: 0.5rem;\n}\n .startpage__instr-desc .image-style-align-left, .quml-mcq .image-style-align-left, .quml-sa .image-style-align-left, quml-sa .image-style-align-left, quml-mcq-solutions .image-style-align-left {\n float: left;\n text-align: left;\n margin-right: 0.5rem;\n}\n .startpage__instr-desc .image, .startpage__instr-desc figure.image, .quml-mcq .image, .quml-mcq figure.image, .quml-sa .image, .quml-sa figure.image, quml-sa .image, quml-sa figure.image, quml-mcq-solutions .image, quml-mcq-solutions figure.image {\n display: table;\n clear: both;\n text-align: center;\n margin: 0.5rem auto;\n position: relative;\n}\n .startpage__instr-desc figure.image.resize-original, .startpage__instr-desc figure.image, .quml-mcq figure.image.resize-original, .quml-mcq figure.image, .quml-sa figure.image.resize-original, .quml-sa figure.image, quml-sa figure.image.resize-original, quml-sa figure.image, quml-mcq-solutions figure.image.resize-original, quml-mcq-solutions figure.image {\n width: auto;\n height: auto;\n overflow: visible;\n}\n .startpage__instr-desc figure.image img, .quml-mcq figure.image img, .quml-sa figure.image img, quml-sa figure.image img, quml-mcq-solutions figure.image img {\n width: auto;\n}\n .startpage__instr-desc figure.image.resize-original img, .quml-mcq figure.image.resize-original img, .quml-sa figure.image.resize-original img, quml-sa figure.image.resize-original img, quml-mcq-solutions figure.image.resize-original img {\n width: auto;\n height: auto;\n}\n .startpage__instr-desc .image img, .quml-mcq .image img, .quml-sa .image img, quml-sa .image img, quml-mcq-solutions .image img {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n min-width: 50px;\n}\n .startpage__instr-desc figure.image.resize-25, .quml-mcq figure.image.resize-25, .quml-sa figure.image.resize-25, quml-sa figure.image.resize-25, quml-mcq-solutions figure.image.resize-25 {\n width: 25%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-50, .quml-mcq figure.image.resize-50, .quml-sa figure.image.resize-50, quml-sa figure.image.resize-50, quml-mcq-solutions figure.image.resize-50 {\n width: 50%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-75, .quml-mcq figure.image.resize-75, .quml-sa figure.image.resize-75, quml-sa figure.image.resize-75, quml-mcq-solutions figure.image.resize-75 {\n width: 75%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-100, .quml-mcq figure.image.resize-100, .quml-sa figure.image.resize-100, quml-sa figure.image.resize-100, quml-mcq-solutions figure.image.resize-100 {\n width: 100%;\n height: auto;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n border-right: 0.0625rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table, .startpage__instr-desc figure.table table tr td, .startpage__instr-desc figure.table table tr th, .quml-mcq figure.table table, .quml-mcq figure.table table tr td, .quml-mcq figure.table table tr th, .quml-sa figure.table table, .quml-sa figure.table table tr td, .quml-sa figure.table table tr th, quml-sa figure.table table, quml-sa figure.table table tr td, quml-sa figure.table table tr th, quml-mcq-solutions figure.table table, quml-mcq-solutions figure.table table tr td, quml-mcq-solutions figure.table table tr th {\n border: 0.0625rem solid var(--black);\n border-collapse: collapse;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n width: 100%;\n background: var(--white);\n border: 0.0625rem solid var(--gray-100);\n box-shadow: none;\n border-radius: 0.25rem 0.25rem 0 0;\n text-align: left;\n color: var(--gray);\n border-collapse: separate;\n border-spacing: 0;\n table-layout: fixed;\n}\n .startpage__instr-desc figure.table table thead tr th, .quml-mcq figure.table table thead tr th, .quml-sa figure.table table thead tr th, quml-sa figure.table table thead tr th, quml-mcq-solutions figure.table table thead tr th {\n font-size: 0.875rem;\n padding: 1rem;\n background-color: var(--primary-100);\n position: relative;\n height: 2.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n font-weight: bold;\n color: var(--primary-color);\n text-transform: uppercase;\n}\n .startpage__instr-desc figure.table table thead tr th:first-child, .quml-mcq figure.table table thead tr th:first-child, .quml-sa figure.table table thead tr th:first-child, quml-sa figure.table table thead tr th:first-child, quml-mcq-solutions figure.table table thead tr th:first-child {\n border-top-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table thead tr th:last-child, .quml-mcq figure.table table thead tr th:last-child, .quml-sa figure.table table thead tr th:last-child, quml-sa figure.table table thead tr th:last-child, quml-mcq-solutions figure.table table thead tr th:last-child {\n border-top-right-radius: 0.25rem;\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr:nth-child(2n), .quml-mcq figure.table table tbody tr:nth-child(2n), .quml-sa figure.table table tbody tr:nth-child(2n), quml-sa figure.table table tbody tr:nth-child(2n), quml-mcq-solutions figure.table table tbody tr:nth-child(2n) {\n background-color: var(--gray-0);\n}\n .startpage__instr-desc figure.table table tbody tr:hover, .quml-mcq figure.table table tbody tr:hover, .quml-sa figure.table table tbody tr:hover, quml-sa figure.table table tbody tr:hover, quml-mcq-solutions figure.table table tbody tr:hover {\n background: var(--primary-0);\n color: rgba(var(--rc-rgba-gray), 0.95);\n cursor: pointer;\n}\n .startpage__instr-desc figure.table table tbody tr td, .quml-mcq figure.table table tbody tr td, .quml-sa figure.table table tbody tr td, quml-sa figure.table table tbody tr td, quml-mcq-solutions figure.table table tbody tr td {\n font-size: 0.875rem;\n padding: 1rem;\n color: var(--gray);\n height: 3.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n word-break: break-word;\n line-height: normal;\n}\n .startpage__instr-desc figure.table table tbody tr td:last-child, .quml-mcq figure.table table tbody tr td:last-child, .quml-sa figure.table table tbody tr td:last-child, quml-sa figure.table table tbody tr td:last-child, quml-mcq-solutions figure.table table tbody tr td:last-child {\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr td p, .quml-mcq figure.table table tbody tr td p, .quml-sa figure.table table tbody tr td p, quml-sa figure.table table tbody tr td p, quml-mcq-solutions figure.table table tbody tr td p {\n margin-bottom: 0px !important;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td, .quml-mcq figure.table table tbody tr:last-child td, .quml-sa figure.table table tbody tr:last-child td, quml-sa figure.table table tbody tr:last-child td, quml-mcq-solutions figure.table table tbody tr:last-child td {\n border-bottom: none;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:first-child, .quml-mcq figure.table table tbody tr:last-child td:first-child, .quml-sa figure.table table tbody tr:last-child td:first-child, quml-sa figure.table table tbody tr:last-child td:first-child, quml-mcq-solutions figure.table table tbody tr:last-child td:first-child {\n border-bottom-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:last-child, .quml-mcq figure.table table tbody tr:last-child td:last-child, .quml-sa figure.table table tbody tr:last-child td:last-child, quml-sa figure.table table tbody tr:last-child td:last-child, quml-mcq-solutions figure.table table tbody tr:last-child td:last-child {\n border-bottom-right-radius: 0.25rem;\n}\n .startpage__instr-desc ul, .startpage__instr-desc ol, .quml-mcq ul, .quml-mcq ol, .quml-sa ul, .quml-sa ol, quml-sa ul, quml-sa ol, quml-mcq-solutions ul, quml-mcq-solutions ol {\n margin-top: 0.5rem;\n}\n .startpage__instr-desc ul li, .startpage__instr-desc ol li, .quml-mcq ul li, .quml-mcq ol li, .quml-sa ul li, .quml-sa ol li, quml-sa ul li, quml-sa ol li, quml-mcq-solutions ul li, quml-mcq-solutions ol li {\n margin: 0.5rem;\n font-weight: normal;\n line-height: normal;\n}\n .startpage__instr-desc ul, .quml-mcq ul, .quml-sa ul, quml-sa ul, quml-mcq-solutions ul {\n list-style-type: disc;\n}\n .startpage__instr-desc h1, .startpage__instr-desc h2, .startpage__instr-desc h3, .startpage__instr-desc h4, .startpage__instr-desc h5, .startpage__instr-desc h6, .quml-mcq h1, .quml-mcq h2, .quml-mcq h3, .quml-mcq h4, .quml-mcq h5, .quml-mcq h6, .quml-sa h1, .quml-sa h2, .quml-sa h3, .quml-sa h4, .quml-sa h5, .quml-sa h6, quml-sa h1, quml-sa h2, quml-sa h3, quml-sa h4, quml-sa h5, quml-sa h6, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6 {\n color: var(--primary-color);\n line-height: normal;\n margin-bottom: 1rem;\n}\n .startpage__instr-desc p, .startpage__instr-desc span, .quml-mcq p, .quml-mcq span, .quml-sa p, .quml-sa span, quml-sa p, quml-sa span, quml-mcq-solutions p, quml-mcq-solutions span {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc p strong, .startpage__instr-desc p span strong, .quml-mcq p strong, .quml-mcq p span strong, .quml-sa p strong, .quml-sa p span strong, quml-sa p strong, quml-sa p span strong, quml-mcq-solutions p strong, quml-mcq-solutions p span strong {\n font-weight: bold;\n}\n .startpage__instr-desc p span u, .startpage__instr-desc p u, .quml-mcq p span u, .quml-mcq p u, .quml-sa p span u, .quml-sa p u, quml-sa p span u, quml-sa p u, quml-mcq-solutions p span u, quml-mcq-solutions p u {\n text-decoration: underline;\n}\n .startpage__instr-desc p span i, .startpage__instr-desc p i, .quml-mcq p span i, .quml-mcq p i, .quml-sa p span i, .quml-sa p i, quml-sa p span i, quml-sa p i, quml-mcq-solutions p span i, quml-mcq-solutions p i {\n font-style: italic;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3N0YXJ0cGFnZS9zYi1ja2VkaXRvci1zdHlsZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLDZCQUFBO0FBQ0Y7O0FBVUk7Ozs7O0VBQ0UsZ0NBQUE7QUFITjtBQU1JOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUF3QkUsbUJBQUE7QUE0Rk47QUF6Rkk7Ozs7O0VBQ0UsaUJBQUE7QUErRk47QUE1Rkk7Ozs7O0VBQ0UsbUJBQUE7QUFrR047QUEvRkk7Ozs7O0VBQ0UsbUJBQUE7QUFxR047QUFsR0k7Ozs7O0VBQ0UsbUJBQUE7QUF3R047QUFyR0k7Ozs7O0VBQ0Usa0JBQUE7QUEyR047QUF4R0k7Ozs7O0VBQ0UsbUJBQUE7QUE4R047QUEzR0k7Ozs7O0VBQ0UsbUJBQUE7QUFpSE47QUE5R0k7Ozs7O0VBQ0UsbUJBQUE7QUFvSE47QUFqSEk7Ozs7O0VBQ0UsZUFBQTtBQXVITjtBQXBISTs7Ozs7RUFDRSxtQkFBQTtBQTBITjtBQXZISTs7Ozs7RUFDRSxtQkFBQTtBQTZITjtBQTFISTs7Ozs7RUFDRSxtQkFBQTtBQWdJTjtBQTdISTs7Ozs7RUFDRSxrQkFBQTtBQW1JTjtBQWhJSTs7Ozs7RUFDRSxtQkFBQTtBQXNJTjtBQW5JSTs7Ozs7RUFDRSxtQkFBQTtBQXlJTjtBQXRJSTs7Ozs7RUFDRSxtQkFBQTtBQTRJTjtBQXpJSTs7Ozs7RUFDRSxpQkFBQTtBQStJTjtBQTVJSTs7Ozs7RUFDRSxtQkFBQTtBQWtKTjtBQS9JSTs7Ozs7RUFDRSxtQkFBQTtBQXFKTjtBQWxKSTs7Ozs7RUFDRSxtQkFBQTtBQXdKTjtBQXJKSTs7Ozs7RUFDRSxrQkFBQTtBQTJKTjtBQXhKSTs7Ozs7RUFDRSxtQkFBQTtBQThKTjtBQTNKSTs7Ozs7RUFDRSxtQkFBQTtBQWlLTjtBQTlKSTs7Ozs7RUFDRSxrQkFBQTtBQW9LTjtBQWpLSTs7Ozs7RUFDRSxnQkFBQTtBQXVLTjtBQXBLSTs7Ozs7RUFDRSxrQkFBQTtBQTBLTjtBQXZLSTs7Ozs7RUFDRSxpQkFBQTtBQTZLTjtBQTFLSTs7Ozs7RUFDRSxZQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQWdMTjtBQTdLSTs7Ozs7RUFDRSxXQUFBO0VBQ0EsZ0JBQUE7RUFDQSxvQkFBQTtBQW1MTjtBQWhMSTs7Ozs7Ozs7OztFQUVFLGNBQUE7RUFDQSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0FBMExOO0FBdkxJOzs7Ozs7Ozs7O0VBRUUsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQWlNTjtBQTlMSTs7Ozs7RUFDRSxXQUFBO0FBb01OO0FBak1JOzs7OztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBdU1OO0FBcE1JOzs7OztFQUNFLGNBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7QUEwTU47QUF2TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUE2TU47QUExTUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFnTk47QUE3TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFtTk47QUFoTkk7Ozs7O0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUFzTk47QUFuTkk7Ozs7O0VBQ0UsNkNBQUE7QUF5Tk47QUF0Tkk7Ozs7Ozs7Ozs7Ozs7OztFQUdFLG9DQUFBO0VBQ0EseUJBQUE7QUFvT047QUFqT0k7Ozs7O0VBQ0UsV0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUNBQUE7RUFDQSxnQkFBQTtFQUNBLGtDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtFQUNBLHlCQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQXVPTjtBQW5PVTs7Ozs7RUFVRSxtQkFBQTtFQUNBLGFBQUE7RUFDQSxvQ0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLFdBQUE7RUFDQSw4Q0FBQTtFQUNBLDZDQUFBO0VBQ0EsaUJBQUE7RUFDQSwyQkFBQTtFQUNBLHlCQUFBO0FBZ09aO0FBblBZOzs7OztFQUNFLCtCQUFBO0FBeVBkO0FBdFBZOzs7OztFQUNFLGdDQUFBO0VBQ0Esd0NBQUE7QUE0UGQ7QUF4T1U7Ozs7O0VBQ0UsK0JBQUE7QUE4T1o7QUEzT1U7Ozs7O0VBQ0UsNEJBQUE7RUFDQSxzQ0FBQTtFQUNBLGVBQUE7QUFpUFo7QUE5T1U7Ozs7O0VBQ0UsbUJBQUE7RUFDQSxhQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsV0FBQTtFQUNBLDhDQUFBO0VBQ0EsNkNBQUE7RUFDQSxzQkFBQTtFQUNBLG1CQUFBO0FBb1BaO0FBbFBZOzs7OztFQUNFLHdDQUFBO0FBd1BkO0FBclBZOzs7OztFQUNFLDZCQUFBO0FBMlBkO0FBdFBZOzs7OztFQUNFLG1CQUFBO0FBNFBkO0FBMVBjOzs7OztFQUNFLGtDQUFBO0FBZ1FoQjtBQTdQYzs7Ozs7RUFDRSxtQ0FBQTtBQW1RaEI7QUExUEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQW9RTjtBQWxRTTs7Ozs7Ozs7OztFQUNFLGNBQUE7RUFDQSxtQkFBQTtFQUNBLG1CQUFBO0FBNlFSO0FBelFJOzs7OztFQUNFLHFCQUFBO0FBK1FOO0FBNVFJOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFNRSwyQkFBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7QUFzU047QUFuU0k7Ozs7Ozs7Ozs7RUFFRSxnQ0FBQTtBQTZTTjtBQTFTSTs7Ozs7Ozs7OztFQUVFLGlCQUFBO0FBb1ROO0FBalRJOzs7Ozs7Ozs7O0VBRUUsMEJBQUE7QUEyVE47QUF4VEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQWtVTiIsInNvdXJjZXNDb250ZW50IjpbIjo6bmctZGVlcCA6cm9vdCB7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xufVxuXG5cbjo6bmctZGVlcCB7XG5cbiAgLnN0YXJ0cGFnZV9faW5zdHItZGVzYyxcbiAgLnF1bWwtbWNxLFxuICAucXVtbC1zYSxcbiAgcXVtbC1zYSxcbiAgcXVtbC1tY3Etc29sdXRpb25zIHtcbiAgICAubWNxLXRpdGxlIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIC5mcy04LFxuICAgIC5mcy05LFxuICAgIC5mcy0xMCxcbiAgICAuZnMtMTEsXG4gICAgLmZzLTEyLFxuICAgIC5mcy0xMyxcbiAgICAuZnMtMTQsXG4gICAgLmZzLTE1LFxuICAgIC5mcy0xNixcbiAgICAuZnMtMTcsXG4gICAgLmZzLTE4LFxuICAgIC5mcy0xOSxcbiAgICAuZnMtMjAsXG4gICAgLmZzLTIxLFxuICAgIC5mcy0yMixcbiAgICAuZnMtMjMsXG4gICAgLmZzLTI0LFxuICAgIC5mcy0yNSxcbiAgICAuZnMtMjYsXG4gICAgLmZzLTI3LFxuICAgIC5mcy0yOCxcbiAgICAuZnMtMjksXG4gICAgLmZzLTMwLFxuICAgIC5mcy0zNiB7XG4gICAgICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICAgIH1cblxuICAgIC5mcy04IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41cmVtO1xuICAgIH1cblxuICAgIC5mcy05IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41NjNyZW07XG4gICAgfVxuXG4gICAgLmZzLTEwIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42MjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTExIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42ODhyZW07XG4gICAgfVxuXG4gICAgLmZzLTEyIHtcbiAgICAgIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTMge1xuICAgICAgZm9udC1zaXplOiAwLjgxM3JlbTtcbiAgICB9XG5cbiAgICAuZnMtMTQge1xuICAgICAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTUge1xuICAgICAgZm9udC1zaXplOiAwLjkzOHJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTYge1xuICAgICAgZm9udC1zaXplOiAxcmVtO1xuICAgIH1cblxuICAgIC5mcy0xNyB7XG4gICAgICBmb250LXNpemU6IDEuMDYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0xOCB7XG4gICAgICBmb250LXNpemU6IDEuMTI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0xOSB7XG4gICAgICBmb250LXNpemU6IDEuMTg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yMCB7XG4gICAgICBmb250LXNpemU6IDEuMjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIxIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zMTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTIyIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIzIHtcbiAgICAgIGZvbnQtc2l6ZTogMS40MzhyZW07XG4gICAgfVxuXG4gICAgLmZzLTI0IHtcbiAgICAgIGZvbnQtc2l6ZTogMS41cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNSB7XG4gICAgICBmb250LXNpemU6IDEuNTYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0yNiB7XG4gICAgICBmb250LXNpemU6IDEuNjI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNyB7XG4gICAgICBmb250LXNpemU6IDEuNjg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yOCB7XG4gICAgICBmb250LXNpemU6IDEuNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTI5IHtcbiAgICAgIGZvbnQtc2l6ZTogMS44MTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTMwIHtcbiAgICAgIGZvbnQtc2l6ZTogMS44NzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTM2IHtcbiAgICAgIGZvbnQtc2l6ZTogMi4yNXJlbTtcbiAgICB9XG5cbiAgICAudGV4dC1sZWZ0IHtcbiAgICAgIHRleHQtYWxpZ246IGxlZnQ7XG4gICAgfVxuXG4gICAgLnRleHQtY2VudGVyIHtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB9XG5cbiAgICAudGV4dC1yaWdodCB7XG4gICAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICB9XG5cbiAgICAuaW1hZ2Utc3R5bGUtYWxpZ24tcmlnaHQge1xuICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgICBtYXJnaW4tbGVmdDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZS1zdHlsZS1hbGlnbi1sZWZ0IHtcbiAgICAgIGZsb2F0OiBsZWZ0O1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIG1hcmdpbi1yaWdodDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgZGlzcGxheTogdGFibGU7XG4gICAgICBjbGVhcjogYm90aDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIG1hcmdpbjogMC41cmVtIGF1dG87XG4gICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS1vcmlnaW5hbCxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgICBvdmVyZmxvdzogdmlzaWJsZTtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtb3JpZ2luYWwgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIC5pbWFnZSBpbWcge1xuICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIG1heC13aWR0aDogMTAwJTtcbiAgICAgIG1pbi13aWR0aDogNTBweDtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1IHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS01MCB7XG4gICAgICB3aWR0aDogNTAlO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNzUge1xuICAgICAgd2lkdGg6IDc1JTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCB7XG4gICAgICB3aWR0aDogMTAwJTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUudGFibGUgdGFibGUge1xuICAgICAgYm9yZGVyLXJpZ2h0OiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgIH1cblxuICAgIGZpZ3VyZS50YWJsZSB0YWJsZSxcbiAgICBmaWd1cmUudGFibGUgdGFibGUgdHIgdGQsXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHRyIHRoIHtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLWJsYWNrKTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgfVxuXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHtcbiAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgYm94LXNoYWRvdzogbm9uZTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IC4yNXJlbSAuMjVyZW0gMCAwO1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIGNvbG9yOiB2YXIoLS1ncmF5KTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG4gICAgICBib3JkZXItc3BhY2luZzogMDtcbiAgICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG5cbiAgICAgIHRoZWFkIHtcbiAgICAgICAgdHIge1xuICAgICAgICAgIHRoIHtcbiAgICAgICAgICAgICY6Zmlyc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAmOmxhc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLXJpZ2h0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgZm9udC1zaXplOiAuODc1cmVtO1xuICAgICAgICAgICAgcGFkZGluZzogMXJlbTtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktMTAwKTtcbiAgICAgICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgICAgIGhlaWdodDogMi41cmVtO1xuICAgICAgICAgICAgYm9yZGVyOjBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IC4wNjI1cmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIGJvcmRlci1yaWdodDogLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICB0Ym9keSB7XG4gICAgICAgIHRyIHtcbiAgICAgICAgICAmOm50aC1jaGlsZCgybikge1xuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tZ3JheS0wKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktMCk7XG4gICAgICAgICAgICBjb2xvcjogcmdiYSh2YXIoLS1yYy1yZ2JhLWdyYXkpLCAwLjk1KTtcbiAgICAgICAgICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICBmb250LXNpemU6IC44NzVyZW07XG4gICAgICAgICAgICBwYWRkaW5nOiAxcmVtO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLWdyYXkpO1xuICAgICAgICAgICAgaGVpZ2h0OiAzLjVyZW07XG4gICAgICAgICAgICBib3JkZXI6IDBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICBib3JkZXItcmlnaHQ6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICB3b3JkLWJyZWFrOiBicmVhay13b3JkO1xuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcblxuICAgICAgICAgICAgJjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcCB7XG4gICAgICAgICAgICAgIG1hcmdpbi1ib3R0b206IDBweCAhaW1wb3J0YW50O1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cblxuICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7XG5cbiAgICAgICAgICAgICAgJjpmaXJzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1yaWdodC1yYWRpdXM6IDAuMjVyZW07XG4gICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgIH1cblxuICAgIHVsLFxuICAgIG9sIHtcbiAgICAgIG1hcmdpbi10b3A6IDAuNXJlbTtcblxuICAgICAgbGkge1xuICAgICAgICBtYXJnaW46IDAuNXJlbTtcbiAgICAgICAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlLXR5cGU6IGRpc2M7XG4gICAgfVxuXG4gICAgaDEsXG4gICAgaDIsXG4gICAgaDMsXG4gICAgaDQsXG4gICAgaDUsXG4gICAgaDYge1xuICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIG1hcmdpbi1ib3R0b206IDFyZW07XG4gICAgfVxuXG4gICAgcCxcbiAgICBzcGFuIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIHAgc3Ryb25nLFxuICAgIHAgc3BhbiBzdHJvbmcge1xuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgfVxuXG4gICAgcCBzcGFuIHUsXG4gICAgcCB1IHtcbiAgICAgIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lO1xuICAgIH1cblxuICAgIHAgc3BhbiBpLFxuICAgIHAgaSB7XG4gICAgICBmb250LXN0eWxlOiBpdGFsaWM7XG4gICAgfVxuXG4gIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */"] }); } @@ -92530,26 +104356,26 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ TransformationService: () => (/* binding */ TransformationService) /* harmony export */ }); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash-es */ 6705); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 6687); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 9412); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 4509); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 7570); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 9362); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! lodash-es */ 7861); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 4164); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 5751); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 6328); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 5935); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 7386); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 4011); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 5509); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 1745); -/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! uuid */ 4289); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash-es */ 86705); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 26687); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 39412); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 14509); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 17570); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 39362); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! lodash-es */ 37861); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 5509); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 24164); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 55751); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 66328); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 45935); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 87386); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 94011); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 61745); +/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! uuid */ 94289); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/core */ 61699); @@ -92648,7 +104474,7 @@ class TransformationService { getTransformedQuestionMetadata(data) { if (lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](data, 'questions')) { lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](data.questions, question => { - if (!lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](question, 'qumlVersion') || question.qumlVersion != 1.1) { + if ((!lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](question, 'qumlVersion') || question.qumlVersion != 1.1) && lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](['MCQ', 'MMCQ', 'SA'], question.qType)) { question = this.processResponseDeclaration(question); question = this.processInteractions(question); question = this.processSolutions(question); @@ -92667,7 +104493,7 @@ class TransformationService { } processResponseDeclaration(data) { let outcomeDeclaration = {}; - if (lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](data.primaryCategory), 'subjective question')) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](data.primaryCategory), 'subjective question')) { data = this.processSubjectiveResponseDeclaration(data); } else { let responseDeclaration = data.responseDeclaration; @@ -92683,7 +104509,7 @@ class TransformationService { outcomeDeclaration['maxScore'] = maxScore; const correctResp = responseData.correctResponse || {}; delete correctResp.outcomes; - if (lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'type')) === 'integer' && lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'cardinality')) === 'single') { + if (lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'type')) === 'integer' && lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'cardinality')) === 'single') { const correctKey = correctResp.value; correctResp.value = parseInt(correctKey, 10); } @@ -92745,8 +104571,8 @@ class TransformationService { } processSolutions(data) { const solutions = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'solutions', []); - if (!lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](solutions) && lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](solutions)) { - const updatedSolutions = lodash_es__WEBPACK_IMPORTED_MODULE_13__["default"](solutions, (result, solution) => { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](solutions) && lodash_es__WEBPACK_IMPORTED_MODULE_13__["default"](solutions)) { + const updatedSolutions = lodash_es__WEBPACK_IMPORTED_MODULE_14__["default"](solutions, (result, solution) => { result[lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](solution, 'id')] = this.getSolutionString(solution, lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'media', [])); return result; }, {}); @@ -92765,7 +104591,7 @@ class TransformationService { case 'video': { const value = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'value', ''); - const mediaData = lodash_es__WEBPACK_IMPORTED_MODULE_14__["default"](media, item => lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](value, lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](item, 'id', ''))); + const mediaData = lodash_es__WEBPACK_IMPORTED_MODULE_15__["default"](media, item => lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](value, lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](item, 'id', ''))); if (mediaData) { const src = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mediaData, 'src', ''); const thumbnail = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mediaData, 'thumbnail', ''); @@ -92790,8 +104616,8 @@ class TransformationService { let updatedHints = {}; if (!lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](hints)) { lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](hints, hint => { - lodash_es__WEBPACK_IMPORTED_MODULE_15__["default"](updatedHints, { - [(0,uuid__WEBPACK_IMPORTED_MODULE_16__["default"])()]: hint + lodash_es__WEBPACK_IMPORTED_MODULE_16__["default"](updatedHints, { + [(0,uuid__WEBPACK_IMPORTED_MODULE_17__["default"])()]: hint }); }); lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](data, 'hints', updatedHints); @@ -92800,7 +104626,7 @@ class TransformationService { } getAnswer(data) { const interactions = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'interactions', {}); - if (!lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'primaryCategory'), 'Subjective Question') && !lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](interactions)) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'primaryCategory'), 'Subjective Question') && !lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](interactions)) { const responseData = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'responseDeclaration.response1', {}); const options = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](interactions, 'response1.options', {}); let formatedAnswer = ''; @@ -92814,7 +104640,7 @@ class TransformationService { let singleAns = '
answer_html
'; const answerList = []; lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](options, option => { - if (lodash_es__WEBPACK_IMPORTED_MODULE_17__["default"](correctResp, option.value)) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](correctResp, option.value)) { const replAns = lodash_es__WEBPACK_IMPORTED_MODULE_18__["default"](singleAns, 'answer_html', lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](option, 'label')); answerList.push(replAns); } @@ -92838,7 +104664,7 @@ class TransformationService { /***/ }), -/***/ 3464: +/***/ 23464: /*!*********************************************************************************!*\ !*** ./projects/quml-library/src/lib/services/viewer-service/viewer-service.ts ***! \*********************************************************************************/ @@ -92848,21 +104674,21 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ViewerService: () => (/* binding */ ViewerService) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../telemetry-constants */ 1679); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 8717); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 2984); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 5772); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 7386); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../telemetry-constants */ 71679); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 48717); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 32984); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 25772); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 87386); /* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 5509); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs */ 2130); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var _quml_library_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../quml-library.service */ 1073); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../util-service */ 4384); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs */ 92130); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var _quml_library_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../quml-library.service */ 81073); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../util-service */ 54384); /* harmony import */ var _quml_question_cursor_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../quml-question-cursor.service */ 5336); /* harmony import */ var _transformation_service_transformation_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../transformation-service/transformation.service */ 8396); @@ -93196,7 +105022,7 @@ class ViewerService { /***/ }), -/***/ 444: +/***/ 60444: /*!************************************************************************!*\ !*** ./projects/quml-library/src/lib/startpage/startpage.component.ts ***! \************************************************************************/ @@ -93206,12 +105032,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ StartpageComponent: () => (/* binding */ StartpageComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../icon/timer/timer.component */ 2162); -/* harmony import */ var _icon_content_content_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/content/content.component */ 5019); -/* harmony import */ var _icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../icon/startpagestaricon/startpagestaricon.component */ 2205); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../icon/timer/timer.component */ 52162); +/* harmony import */ var _icon_content_content_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/content/content.component */ 85019); +/* harmony import */ var _icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../icon/startpagestaricon/startpagestaricon.component */ 72205); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -93333,7 +105159,7 @@ class StartpageComponent { /***/ }), -/***/ 1679: +/***/ 71679: /*!**************************************************************!*\ !*** ./projects/quml-library/src/lib/telemetry-constants.ts ***! \**************************************************************/ @@ -93382,6 +105208,7 @@ var eventName; eventName["deviceRotationClicked"] = "DEVICE_ROTATION_CLICKED"; eventName["progressIndicatorPopupClosed"] = "PROGRESS_INDICATOR_POPUP_CLOSED"; eventName["progressIndicatorPopupOpened"] = "PROGRESS_INDICATOR_POPUP_OPENED"; + eventName["optionsReordered"] = "OPTIONS_REORDERED"; })(eventName || (eventName = {})); var TelemetryType; (function (TelemetryType) { @@ -93400,12 +105227,14 @@ var Cardinality; var QuestionType; (function (QuestionType) { QuestionType["mcq"] = "MCQ"; + QuestionType["mmcq"] = "MMCQ"; QuestionType["sa"] = "SA"; + QuestionType["mtf"] = "MTF"; })(QuestionType || (QuestionType = {})); /***/ }), -/***/ 4384: +/***/ 54384: /*!*******************************************************!*\ !*** ./projects/quml-library/src/lib/util-service.ts ***! \*******************************************************/ @@ -93415,15 +105244,17 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ UtilService: () => (/* binding */ UtilService) /* harmony export */ }); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash-es */ 2502); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 6687); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 4164); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 5509); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 9990); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./player-constants */ 8831); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 42502); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 26687); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 24164); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 5509); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 39990); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./player-constants */ 28831); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./telemetry-constants */ 71679); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/core */ 61699); + @@ -93449,6 +105280,19 @@ class UtilService { }); return key; } + getSingleSelectScore(option, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { + let key = this.getKeyValue(Object.keys(responseDeclaration)); + const correctOptionValue = Number(responseDeclaration[key].correctResponse.value); + const selectedOptionValue = option?.value; + if (selectedOptionValue === correctOptionValue) { + if (isShuffleQuestions) { + return _player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE; + } + return outcomeDeclaration.maxScore.defaultValue ? outcomeDeclaration.maxScore.defaultValue : _player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE; + } else { + return 0; + } + } getMultiselectScore(options, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { let key = this.getKeyValue(Object.keys(responseDeclaration)); const selectedOptionValue = options.map(option => option.value); @@ -93456,32 +105300,80 @@ class UtilService { let mapping = responseDeclaration[key]['mapping']; if (isShuffleQuestions) { score = _player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE; - const scoreForEachMapping = lodash_es__WEBPACK_IMPORTED_MODULE_1__["default"](1 / mapping.length, 2); - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](mapping, map => { + const scoreForEachMapping = lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](_player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE / mapping.length, 2); + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mapping, map => { map.score = scoreForEachMapping; }); } else { - score = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](outcomeDeclaration, 'maxScore.defaultValue'); + score = lodash_es__WEBPACK_IMPORTED_MODULE_4__["default"](outcomeDeclaration, 'maxScore.defaultValue'); } let correctValues = responseDeclaration[key].correctResponse.value.map(ele => Number(ele)); - if (lodash_es__WEBPACK_IMPORTED_MODULE_4__["default"](correctValues.sort(), selectedOptionValue.sort())) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](correctValues.sort(), selectedOptionValue.sort())) { return score; - } else if (!lodash_es__WEBPACK_IMPORTED_MODULE_4__["default"](correctValues.sort(), selectedOptionValue.sort())) { + } else if (!lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](correctValues.sort(), selectedOptionValue.sort())) { let sum = 0; - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](mapping, (map, index) => { - if (lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](selectedOptionValue, map.value)) { + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mapping, (map, index) => { + if (lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](selectedOptionValue, map.value)) { sum += map?.score ? map.score : 0; } }); return sum; } } + getMTFScore(rearrangedOptions, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { + let key = this.getKeyValue(Object.keys(responseDeclaration)); + const correctResponse = responseDeclaration[key]['correctResponse']['value']; + const mapping = responseDeclaration[key]['mapping']; + if (isShuffleQuestions) { + const scoreForEachMapping = lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](_player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE / mapping.length, 2); + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mapping, map => { + map.score = scoreForEachMapping; + }); + } + const currentResponse = rearrangedOptions.right.map(rightItem => { + const leftIndex = rearrangedOptions.left.findIndex(leftItem => leftItem.value === rightItem.value); + return { + left: leftIndex, + right: rearrangedOptions.right.indexOf(rightItem) + }; + }); + let totalScore = 0; + currentResponse.forEach(currentPair => { + const correctPair = correctResponse.find(correct => correct.left === currentPair.left && correct.right.includes(currentPair.right)); + if (correctPair) { + const scoreMapping = mapping.find(map => map.value.left === currentPair.left && map.value.right === currentPair.right); + if (scoreMapping) { + totalScore += scoreMapping?.score ? scoreMapping?.score : 0; + } + } + }); + return totalScore; + } hasDuplicates(selectedOptions, option) { let duplicate = selectedOptions.find(o => { return o.value === option.value; }); return duplicate; } + getEDataItem(questionData, key) { + const getParams = questionData => { + const questionType = questionData.qType.toUpperCase(); + if ((questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__.QuestionType.mcq || questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__.QuestionType.mtf) && questionData?.interactions[key]?.options) { + return questionData?.interactions[key].options; + } else { + return []; + } + }; + const edataItem = { + 'id': questionData.identifier, + 'title': questionData.name, + 'desc': questionData.description, + 'type': questionData.qType.toLowerCase(), + 'maxscore': key.length === 0 ? 0 : questionData.outcomeDeclaration.maxScore.defaultValue || 0, + 'params': getParams(questionData) + }; + return edataItem; + } getQuestionType(questions, currentIndex) { let index = currentIndex - 1 === -1 ? 0 : currentIndex - 1; return questions[index]['qType']; @@ -93514,19 +105406,19 @@ class UtilService { // fetches the element using its tag video and sets the value of the “src” attribute of source element and poster attribute. updateSourceOfVideoElement(baseUrl, media, identifier) { const elements = Array.from(document.getElementsByTagName('video')); - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](elements, element => { + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](elements, element => { const videoId = element.getAttribute('data-asset-variable'); if (!videoId) { return; } - const asset = lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](media, ['id', videoId]); + const asset = lodash_es__WEBPACK_IMPORTED_MODULE_7__["default"](media, ['id', videoId]); const posterSrc = element.getAttribute('poster'); - if (!lodash_es__WEBPACK_IMPORTED_MODULE_7__["default"](asset) && posterSrc) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_8__["default"](asset) && posterSrc) { element['poster'] = baseUrl ? `${baseUrl}/${identifier}/${posterSrc}` : asset[0].baseUrl + posterSrc; } - if (!lodash_es__WEBPACK_IMPORTED_MODULE_7__["default"](asset)) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_8__["default"](asset)) { const sourceElement = Array.from(element.getElementsByTagName('source')); - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](sourceElement, element => { + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](sourceElement, element => { const sourceSrc = element.getAttribute('src'); element['src'] = baseUrl ? `${baseUrl}/${identifier}/${sourceSrc}` : asset[0].baseUrl + sourceSrc; }); @@ -93536,7 +105428,7 @@ class UtilService { static #_ = this.ɵfac = function UtilService_Factory(t) { return new (t || UtilService)(); }; - static #_2 = this.ɵprov = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_8__["ɵɵdefineInjectable"]({ + static #_2 = this.ɵprov = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_9__["ɵɵdefineInjectable"]({ token: UtilService, factory: UtilService.ɵfac, providedIn: 'root' @@ -93545,7 +105437,7 @@ class UtilService { /***/ }), -/***/ 8849: +/***/ 88849: /*!*******************************************************!*\ !*** ./projects/quml-player-wc/src/app/app.module.ts ***! \*******************************************************/ @@ -93555,50 +105447,58 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AppModule: () => (/* binding */ AppModule) /* harmony export */ }); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _angular_elements__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! @angular/elements */ 7164); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 3873); -/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 2459); -/* harmony import */ var _quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../quml-library/src/lib/main-player/main-player.component */ 2306); -/* harmony import */ var _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-library.component */ 2792); -/* harmony import */ var _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq/mcq.component */ 6633); -/* harmony import */ var _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../quml-library/src/lib/header/header.component */ 3893); -/* harmony import */ var _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../quml-library/src/lib/sa/sa.component */ 5502); -/* harmony import */ var _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-question/mcq-question.component */ 4443); -/* harmony import */ var _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-option/mcq-option.component */ 1879); -/* harmony import */ var _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-popup/quml-popup.component */ 7921); -/* harmony import */ var _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-image-option/mcq-image-option.component */ 305); -/* harmony import */ var _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/zoom-in/zoom-in.component */ 9736); -/* harmony import */ var _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/star/star.component */ 413); -/* harmony import */ var _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous/previous.component */ 664); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_elements__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! @angular/elements */ 17164); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 83873); +/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 42459); +/* harmony import */ var _quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../quml-library/src/lib/main-player/main-player.component */ 72306); +/* harmony import */ var _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-library.component */ 92792); +/* harmony import */ var _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq/mcq.component */ 16633); +/* harmony import */ var _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../quml-library/src/lib/header/header.component */ 23893); +/* harmony import */ var _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../quml-library/src/lib/sa/sa.component */ 45502); +/* harmony import */ var _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-question/mcq-question.component */ 64443); +/* harmony import */ var _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-option/mcq-option.component */ 51879); +/* harmony import */ var _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-popup/quml-popup.component */ 77921); +/* harmony import */ var _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-image-option/mcq-image-option.component */ 50305); +/* harmony import */ var _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/zoom-in/zoom-in.component */ 99736); +/* harmony import */ var _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/star/star.component */ 40413); +/* harmony import */ var _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous/previous.component */ 50664); /* harmony import */ var _quml_library_src_lib_icon_next_next_component__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/next/next.component */ 5269); -/* harmony import */ var _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous-active/previous-active.component */ 9178); -/* harmony import */ var _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/bookmark/bookmark.component */ 467); -/* harmony import */ var _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/hint/hint.component */ 4696); +/* harmony import */ var _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous-active/previous-active.component */ 49178); +/* harmony import */ var _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/bookmark/bookmark.component */ 90467); +/* harmony import */ var _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/hint/hint.component */ 64696); /* harmony import */ var _quml_library_src_lib_icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/ans/ans.component */ 8188); -/* harmony import */ var _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/share/share.component */ 4819); -/* harmony import */ var _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/correct/correct.component */ 189); -/* harmony import */ var _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../../quml-library/src/lib/scoreboard/scoreboard.component */ 9186); -/* harmony import */ var _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../../../quml-library/src/lib/startpage/startpage.component */ 444); -/* harmony import */ var _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/timer/timer.component */ 2162); -/* harmony import */ var _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/content/content.component */ 5019); -/* harmony import */ var _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/startpagestaricon/startpagestaricon.component */ 2205); -/* harmony import */ var _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/next-active/next-active.component */ 3651); -/* harmony import */ var _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../../../quml-library/src/lib/alert/alert.component */ 7207); -/* harmony import */ var _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/close/close.component */ 5922); +/* harmony import */ var _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/share/share.component */ 34819); +/* harmony import */ var _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/correct/correct.component */ 30189); +/* harmony import */ var _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../../quml-library/src/lib/scoreboard/scoreboard.component */ 19186); +/* harmony import */ var _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../../../quml-library/src/lib/startpage/startpage.component */ 60444); +/* harmony import */ var _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/timer/timer.component */ 52162); +/* harmony import */ var _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/content/content.component */ 85019); +/* harmony import */ var _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/startpagestaricon/startpagestaricon.component */ 72205); +/* harmony import */ var _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/next-active/next-active.component */ 33651); +/* harmony import */ var _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../../../quml-library/src/lib/alert/alert.component */ 57207); +/* harmony import */ var _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/close/close.component */ 55922); /* harmony import */ var _quml_library_src_lib_mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-solutions/mcq-solutions.component */ 3506); -/* harmony import */ var _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/durationtimer/durationtimer.component */ 9905); -/* harmony import */ var _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/audio/audio.component */ 1228); +/* harmony import */ var _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/durationtimer/durationtimer.component */ 29905); +/* harmony import */ var _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/audio/audio.component */ 11228); /* harmony import */ var _quml_library_src_lib_icon_wrong_wrong_component__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/wrong/wrong.component */ 8905); -/* harmony import */ var _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/menu/menu.component */ 2075); -/* harmony import */ var _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../../../quml-library/src/lib/pipes/safe-html/safe-html.pipe */ 5989); -/* harmony import */ var _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../../../quml-library/src/lib/section-player/section-player.component */ 4970); +/* harmony import */ var _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/menu/menu.component */ 82075); +/* harmony import */ var _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../../../quml-library/src/lib/pipes/safe-html/safe-html.pipe */ 75989); +/* harmony import */ var _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../../../quml-library/src/lib/section-player/section-player.component */ 14970); /* harmony import */ var _quml_library_src_lib_quml_question_cursor_service__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-question-cursor.service */ 5336); -/* harmony import */ var _question_cursor_implementation_service__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./question-cursor-implementation.service */ 1952); -/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! @angular/common/http */ 4860); -/* harmony import */ var _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../../../quml-library/src/lib/progress-indicators/progress-indicators.component */ 1267); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _question_cursor_implementation_service__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./question-cursor-implementation.service */ 21952); +/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! @angular/common/http */ 54860); +/* harmony import */ var _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../../../quml-library/src/lib/progress-indicators/progress-indicators.component */ 51267); +/* harmony import */ var _quml_library_src_lib_mtf_mtf_component__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../../../quml-library/src/lib/mtf/mtf.component */ 30960); +/* harmony import */ var _quml_library_src_lib_mtf_mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../../../quml-library/src/lib/mtf/mtf-options/mtf-options.component */ 71568); +/* harmony import */ var _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! @angular/cdk/drag-drop */ 17792); +/* harmony import */ var _quml_library_src_lib_mtf_check_figure_directive__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../../../quml-library/src/lib/mtf/check-figure.directive */ 88921); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! @angular/core */ 61699); + + + + @@ -93649,40 +105549,40 @@ class AppModule { this.injector = injector; } ngDoBootstrap() { - const customElement = (0,_angular_elements__WEBPACK_IMPORTED_MODULE_37__.createCustomElement)(_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, { + const customElement = (0,_angular_elements__WEBPACK_IMPORTED_MODULE_40__.createCustomElement)(_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, { injector: this.injector }); customElements.define('sunbird-quml-player', customElement); } static #_ = this.ɵfac = function AppModule_Factory(t) { - return new (t || AppModule)(_angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_38__.Injector)); + return new (t || AppModule)(_angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_41__.Injector)); }; - static #_2 = this.ɵmod = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵdefineNgModule"]({ + static #_2 = this.ɵmod = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵdefineNgModule"]({ type: AppModule }); - static #_3 = this.ɵinj = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵdefineInjector"]({ + static #_3 = this.ɵinj = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵdefineInjector"]({ providers: [{ provide: _quml_library_src_lib_quml_question_cursor_service__WEBPACK_IMPORTED_MODULE_34__.QuestionCursor, useClass: _question_cursor_implementation_service__WEBPACK_IMPORTED_MODULE_35__.QuestionCursorImplementationService }, { - provide: _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__.PLAYER_CONFIG, + provide: _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__.PLAYER_CONFIG, useValue: { contentCompatibilityLevel: 6 } }], - imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_40__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_41__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_42__.CarouselModule.forRoot(), _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_43__.HttpClientModule] + imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_43__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_44__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_45__.CarouselModule.forRoot(), _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_46__.HttpClientModule, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_47__.DragDropModule] }); } (function () { - (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵsetNgModuleScope"](AppModule, { - declarations: [_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__.QumlLibraryComponent, _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__.McqComponent, _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__.HeaderComponent, _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__.SaComponent, _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__.McqQuestionComponent, _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__.McqOptionComponent, _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__.QumlPopupComponent, _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__.McqImageOptionComponent, _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__.ZoomInComponent, _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__.StarComponent, _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__.PreviousComponent, _quml_library_src_lib_icon_next_next_component__WEBPACK_IMPORTED_MODULE_12__.NextComponent, _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__.PreviousActiveComponent, _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__.BookmarkComponent, _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__.HintComponent, _quml_library_src_lib_icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_16__.AnsComponent, _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__.ShareComponent, _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__.CorrectComponent, _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__.ScoreboardComponent, _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__.StartpageComponent, _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__.TimerComponent, _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__.ContentComponent, _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__.StartpagestariconComponent, _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__.NextActiveComponent, _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__.AlertComponent, _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__.CloseComponent, _quml_library_src_lib_mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_27__.McqSolutionsComponent, _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__.DurationtimerComponent, _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__.AudioComponent, _quml_library_src_lib_icon_wrong_wrong_component__WEBPACK_IMPORTED_MODULE_30__.WrongComponent, _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__.MenuComponent, _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__.SafeHtmlPipe, _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__.SectionPlayerComponent, _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__.ProgressIndicatorsComponent], - imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_40__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_41__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_42__.CarouselModule, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_43__.HttpClientModule] + (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵsetNgModuleScope"](AppModule, { + declarations: [_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__.QumlLibraryComponent, _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__.McqComponent, _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__.HeaderComponent, _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__.SaComponent, _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__.McqQuestionComponent, _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__.McqOptionComponent, _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__.QumlPopupComponent, _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__.McqImageOptionComponent, _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__.ZoomInComponent, _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__.StarComponent, _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__.PreviousComponent, _quml_library_src_lib_icon_next_next_component__WEBPACK_IMPORTED_MODULE_12__.NextComponent, _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__.PreviousActiveComponent, _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__.BookmarkComponent, _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__.HintComponent, _quml_library_src_lib_icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_16__.AnsComponent, _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__.ShareComponent, _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__.CorrectComponent, _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__.ScoreboardComponent, _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__.StartpageComponent, _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__.TimerComponent, _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__.ContentComponent, _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__.StartpagestariconComponent, _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__.NextActiveComponent, _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__.AlertComponent, _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__.CloseComponent, _quml_library_src_lib_mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_27__.McqSolutionsComponent, _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__.DurationtimerComponent, _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__.AudioComponent, _quml_library_src_lib_icon_wrong_wrong_component__WEBPACK_IMPORTED_MODULE_30__.WrongComponent, _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__.MenuComponent, _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__.SafeHtmlPipe, _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__.SectionPlayerComponent, _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__.ProgressIndicatorsComponent, _quml_library_src_lib_mtf_mtf_component__WEBPACK_IMPORTED_MODULE_37__.MtfComponent, _quml_library_src_lib_mtf_mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_38__.MtfOptionsComponent, _quml_library_src_lib_mtf_check_figure_directive__WEBPACK_IMPORTED_MODULE_39__.CheckFigureDirective], + imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_43__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_44__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_45__.CarouselModule, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_46__.HttpClientModule, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_47__.DragDropModule] }); })(); /***/ }), -/***/ 1952: +/***/ 21952: /*!***********************************************************************************!*\ !*** ./projects/quml-player-wc/src/app/question-cursor-implementation.service.ts ***! \***********************************************************************************/ @@ -93693,12 +105593,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ QuestionCursorImplementationService: () => (/* binding */ QuestionCursorImplementationService) /* harmony export */ }); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 3994); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs/operators */ 7422); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 7965); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common/http */ 4860); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 33994); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 87965); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common/http */ 54860); @@ -93790,7 +105690,7 @@ class QuestionCursorImplementationService { /***/ }), -/***/ 1950: +/***/ 51950: /*!*****************************************************************!*\ !*** ./projects/quml-player-wc/src/environments/environment.ts ***! \*****************************************************************/ @@ -93824,11 +105724,11 @@ const environment = { /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _app_app_module__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./app/app.module */ 8849); -/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./environments/environment */ 1950); -/* harmony import */ var reflect_metadata__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reflect-metadata */ 7550); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _app_app_module__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./app/app.module */ 88849); +/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./environments/environment */ 51950); +/* harmony import */ var reflect_metadata__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reflect-metadata */ 87550); /* harmony import */ var reflect_metadata__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(reflect_metadata__WEBPACK_IMPORTED_MODULE_2__); diff --git a/web-component/package.json b/web-component/package.json index f886e696..8a09ed5e 100644 --- a/web-component/package.json +++ b/web-component/package.json @@ -1,6 +1,6 @@ { "name": "@tekdi/sunbird-quml-player-web-component", - "version": "4.0.0", + "version": "5.0.0-beta.0", "description": "The web component package for the sunbird QuML player", "main": "sunbird-quml-player.js", "scripts": { diff --git a/web-component/styles.css b/web-component/styles.css index c16b4445..94355893 100644 --- a/web-component/styles.css +++ b/web-component/styles.css @@ -5390,7 +5390,7 @@ html, body { /*!*********************************************************************************************************************************************************************************************************************************************!*\ !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/katex/dist/katex.min.css?ngGlobalStyle ***! \*********************************************************************************************************************************************************************************************************************************************/ -@font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url('KaTeX_AMS-Regular.woff2') format("woff2"),url('KaTeX_AMS-Regular.woff') format("woff"),url('KaTeX_AMS-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url('KaTeX_Caligraphic-Bold.woff2') format("woff2"),url('KaTeX_Caligraphic-Bold.woff') format("woff"),url('KaTeX_Caligraphic-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url('KaTeX_Caligraphic-Regular.woff2') format("woff2"),url('KaTeX_Caligraphic-Regular.woff') format("woff"),url('KaTeX_Caligraphic-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url('KaTeX_Fraktur-Bold.woff2') format("woff2"),url('KaTeX_Fraktur-Bold.woff') format("woff"),url('KaTeX_Fraktur-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url('KaTeX_Fraktur-Regular.woff2') format("woff2"),url('KaTeX_Fraktur-Regular.woff') format("woff"),url('KaTeX_Fraktur-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url('KaTeX_Main-Bold.woff2') format("woff2"),url('KaTeX_Main-Bold.woff') format("woff"),url('KaTeX_Main-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url('KaTeX_Main-BoldItalic.woff2') format("woff2"),url('KaTeX_Main-BoldItalic.woff') format("woff"),url('KaTeX_Main-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url('KaTeX_Main-Italic.woff2') format("woff2"),url('KaTeX_Main-Italic.woff') format("woff"),url('KaTeX_Main-Italic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url('KaTeX_Main-Regular.woff2') format("woff2"),url('KaTeX_Main-Regular.woff') format("woff"),url('KaTeX_Main-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url('KaTeX_Math-BoldItalic.woff2') format("woff2"),url('KaTeX_Math-BoldItalic.woff') format("woff"),url('KaTeX_Math-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url('KaTeX_Math-Italic.woff2') format("woff2"),url('KaTeX_Math-Italic.woff') format("woff"),url('KaTeX_Math-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url('KaTeX_SansSerif-Bold.woff2') format("woff2"),url('KaTeX_SansSerif-Bold.woff') format("woff"),url('KaTeX_SansSerif-Bold.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url('KaTeX_SansSerif-Italic.woff2') format("woff2"),url('KaTeX_SansSerif-Italic.woff') format("woff"),url('KaTeX_SansSerif-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url('KaTeX_SansSerif-Regular.woff2') format("woff2"),url('KaTeX_SansSerif-Regular.woff') format("woff"),url('KaTeX_SansSerif-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url('KaTeX_Script-Regular.woff2') format("woff2"),url('KaTeX_Script-Regular.woff') format("woff"),url('KaTeX_Script-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url('KaTeX_Size1-Regular.woff2') format("woff2"),url('KaTeX_Size1-Regular.woff') format("woff"),url('KaTeX_Size1-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url('KaTeX_Size2-Regular.woff2') format("woff2"),url('KaTeX_Size2-Regular.woff') format("woff"),url('KaTeX_Size2-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url('KaTeX_Size3-Regular.woff2') format("woff2"),url('KaTeX_Size3-Regular.woff') format("woff"),url('KaTeX_Size3-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url('KaTeX_Size4-Regular.woff2') format("woff2"),url('KaTeX_Size4-Regular.woff') format("woff"),url('KaTeX_Size4-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url('KaTeX_Typewriter-Regular.woff2') format("woff2"),url('KaTeX_Typewriter-Regular.woff') format("woff"),url('KaTeX_Typewriter-Regular.ttf') format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.11"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.2777777778em;margin-right:-.5555555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.1666666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.6666666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.4566666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.1466666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.7142857143em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.8571428571em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.1428571429em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.2857142857em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.4285714286em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.7142857143em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.0571428571em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.4685714286em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.9628571429em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.5542857143em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.7777777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.8888888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.1111111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.3333333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.3044444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.7644444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.5833333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.6666666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.7283333333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.0733333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.4166666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.4861111111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.5555555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.4402777778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.7277777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.2893518519em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.3472222222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.4050925926em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.462962963em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.5208333333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.6944444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.8333333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.2002314815em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.4398148148em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.2410800386em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.2892960463em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.337512054em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.3857280617em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.4339440694em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.4821600771em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.5785920926em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.6943105111em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.8331726133em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.1996142719em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.2009646302em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.2411575563em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.2813504823em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.3215434084em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.3617363344em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.4019292605em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.4823151125em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.578778135em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.6945337621em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.8336012862em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo} +@font-face{font-family:KaTeX_AMS;font-style:normal;font-weight:400;src:url('KaTeX_AMS-Regular.woff2') format("woff2"),url('KaTeX_AMS-Regular.woff') format("woff"),url('KaTeX_AMS-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:700;src:url('KaTeX_Caligraphic-Bold.woff2') format("woff2"),url('KaTeX_Caligraphic-Bold.woff') format("woff"),url('KaTeX_Caligraphic-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Caligraphic;font-style:normal;font-weight:400;src:url('KaTeX_Caligraphic-Regular.woff2') format("woff2"),url('KaTeX_Caligraphic-Regular.woff') format("woff"),url('KaTeX_Caligraphic-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:700;src:url('KaTeX_Fraktur-Bold.woff2') format("woff2"),url('KaTeX_Fraktur-Bold.woff') format("woff"),url('KaTeX_Fraktur-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Fraktur;font-style:normal;font-weight:400;src:url('KaTeX_Fraktur-Regular.woff2') format("woff2"),url('KaTeX_Fraktur-Regular.woff') format("woff"),url('KaTeX_Fraktur-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:700;src:url('KaTeX_Main-Bold.woff2') format("woff2"),url('KaTeX_Main-Bold.woff') format("woff"),url('KaTeX_Main-Bold.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:700;src:url('KaTeX_Main-BoldItalic.woff2') format("woff2"),url('KaTeX_Main-BoldItalic.woff') format("woff"),url('KaTeX_Main-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:italic;font-weight:400;src:url('KaTeX_Main-Italic.woff2') format("woff2"),url('KaTeX_Main-Italic.woff') format("woff"),url('KaTeX_Main-Italic.ttf') format("truetype")}@font-face{font-family:KaTeX_Main;font-style:normal;font-weight:400;src:url('KaTeX_Main-Regular.woff2') format("woff2"),url('KaTeX_Main-Regular.woff') format("woff"),url('KaTeX_Main-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:700;src:url('KaTeX_Math-BoldItalic.woff2') format("woff2"),url('KaTeX_Math-BoldItalic.woff') format("woff"),url('KaTeX_Math-BoldItalic.ttf') format("truetype")}@font-face{font-family:KaTeX_Math;font-style:italic;font-weight:400;src:url('KaTeX_Math-Italic.woff2') format("woff2"),url('KaTeX_Math-Italic.woff') format("woff"),url('KaTeX_Math-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:700;src:url('KaTeX_SansSerif-Bold.woff2') format("woff2"),url('KaTeX_SansSerif-Bold.woff') format("woff"),url('KaTeX_SansSerif-Bold.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:italic;font-weight:400;src:url('KaTeX_SansSerif-Italic.woff2') format("woff2"),url('KaTeX_SansSerif-Italic.woff') format("woff"),url('KaTeX_SansSerif-Italic.ttf') format("truetype")}@font-face{font-family:"KaTeX_SansSerif";font-style:normal;font-weight:400;src:url('KaTeX_SansSerif-Regular.woff2') format("woff2"),url('KaTeX_SansSerif-Regular.woff') format("woff"),url('KaTeX_SansSerif-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Script;font-style:normal;font-weight:400;src:url('KaTeX_Script-Regular.woff2') format("woff2"),url('KaTeX_Script-Regular.woff') format("woff"),url('KaTeX_Script-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size1;font-style:normal;font-weight:400;src:url('KaTeX_Size1-Regular.woff2') format("woff2"),url('KaTeX_Size1-Regular.woff') format("woff"),url('KaTeX_Size1-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size2;font-style:normal;font-weight:400;src:url('KaTeX_Size2-Regular.woff2') format("woff2"),url('KaTeX_Size2-Regular.woff') format("woff"),url('KaTeX_Size2-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size3;font-style:normal;font-weight:400;src:url('KaTeX_Size3-Regular.woff2') format("woff2"),url('KaTeX_Size3-Regular.woff') format("woff"),url('KaTeX_Size3-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Size4;font-style:normal;font-weight:400;src:url('KaTeX_Size4-Regular.woff2') format("woff2"),url('KaTeX_Size4-Regular.woff') format("woff"),url('KaTeX_Size4-Regular.ttf') format("truetype")}@font-face{font-family:KaTeX_Typewriter;font-style:normal;font-weight:400;src:url('KaTeX_Typewriter-Regular.woff2') format("woff2"),url('KaTeX_Typewriter-Regular.woff') format("woff"),url('KaTeX_Typewriter-Regular.ttf') format("truetype")}.katex{font:normal 1.21em KaTeX_Main,Times New Roman,serif;line-height:1.2;text-indent:0;text-rendering:auto}.katex *{-ms-high-contrast-adjust:none!important;border-color:currentColor}.katex .katex-version:after{content:"0.16.10"}.katex .katex-mathml{clip:rect(1px,1px,1px,1px);border:0;height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.katex .katex-html>.newline{display:block}.katex .base{position:relative;white-space:nowrap;width:min-content}.katex .base,.katex .strut{display:inline-block}.katex .textbf{font-weight:700}.katex .textit{font-style:italic}.katex .textrm{font-family:KaTeX_Main}.katex .textsf{font-family:KaTeX_SansSerif}.katex .texttt{font-family:KaTeX_Typewriter}.katex .mathnormal{font-family:KaTeX_Math;font-style:italic}.katex .mathit{font-family:KaTeX_Main;font-style:italic}.katex .mathrm{font-style:normal}.katex .mathbf{font-family:KaTeX_Main;font-weight:700}.katex .boldsymbol{font-family:KaTeX_Math;font-style:italic;font-weight:700}.katex .amsrm,.katex .mathbb,.katex .textbb{font-family:KaTeX_AMS}.katex .mathcal{font-family:KaTeX_Caligraphic}.katex .mathfrak,.katex .textfrak{font-family:KaTeX_Fraktur}.katex .mathboldfrak,.katex .textboldfrak{font-family:KaTeX_Fraktur;font-weight:700}.katex .mathtt{font-family:KaTeX_Typewriter}.katex .mathscr,.katex .textscr{font-family:KaTeX_Script}.katex .mathsf,.katex .textsf{font-family:KaTeX_SansSerif}.katex .mathboldsf,.katex .textboldsf{font-family:KaTeX_SansSerif;font-weight:700}.katex .mathitsf,.katex .textitsf{font-family:KaTeX_SansSerif;font-style:italic}.katex .mainrm{font-family:KaTeX_Main;font-style:normal}.katex .vlist-t{border-collapse:collapse;display:inline-table;table-layout:fixed}.katex .vlist-r{display:table-row}.katex .vlist{display:table-cell;position:relative;vertical-align:bottom}.katex .vlist>span{display:block;height:0;position:relative}.katex .vlist>span>span{display:inline-block}.katex .vlist>span>.pstrut{overflow:hidden;width:0}.katex .vlist-t2{margin-right:-2px}.katex .vlist-s{display:table-cell;font-size:1px;min-width:2px;vertical-align:bottom;width:2px}.katex .vbox{align-items:baseline;display:inline-flex;flex-direction:column}.katex .hbox{width:100%}.katex .hbox,.katex .thinbox{display:inline-flex;flex-direction:row}.katex .thinbox{max-width:0;width:0}.katex .msupsub{text-align:left}.katex .mfrac>span>span{text-align:center}.katex .mfrac .frac-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline,.katex .hline,.katex .mfrac .frac-line,.katex .overline .overline-line,.katex .rule,.katex .underline .underline-line{min-height:1px}.katex .mspace{display:inline-block}.katex .clap,.katex .llap,.katex .rlap{position:relative;width:0}.katex .clap>.inner,.katex .llap>.inner,.katex .rlap>.inner{position:absolute}.katex .clap>.fix,.katex .llap>.fix,.katex .rlap>.fix{display:inline-block}.katex .llap>.inner{right:0}.katex .clap>.inner,.katex .rlap>.inner{left:0}.katex .clap>.inner>span{margin-left:-50%;margin-right:50%}.katex .rule{border:0 solid;display:inline-block;position:relative}.katex .hline,.katex .overline .overline-line,.katex .underline .underline-line{border-bottom-style:solid;display:inline-block;width:100%}.katex .hdashline{border-bottom-style:dashed;display:inline-block;width:100%}.katex .sqrt>.root{margin-left:.27777778em;margin-right:-.55555556em}.katex .fontsize-ensurer.reset-size1.size1,.katex .sizing.reset-size1.size1{font-size:1em}.katex .fontsize-ensurer.reset-size1.size2,.katex .sizing.reset-size1.size2{font-size:1.2em}.katex .fontsize-ensurer.reset-size1.size3,.katex .sizing.reset-size1.size3{font-size:1.4em}.katex .fontsize-ensurer.reset-size1.size4,.katex .sizing.reset-size1.size4{font-size:1.6em}.katex .fontsize-ensurer.reset-size1.size5,.katex .sizing.reset-size1.size5{font-size:1.8em}.katex .fontsize-ensurer.reset-size1.size6,.katex .sizing.reset-size1.size6{font-size:2em}.katex .fontsize-ensurer.reset-size1.size7,.katex .sizing.reset-size1.size7{font-size:2.4em}.katex .fontsize-ensurer.reset-size1.size8,.katex .sizing.reset-size1.size8{font-size:2.88em}.katex .fontsize-ensurer.reset-size1.size9,.katex .sizing.reset-size1.size9{font-size:3.456em}.katex .fontsize-ensurer.reset-size1.size10,.katex .sizing.reset-size1.size10{font-size:4.148em}.katex .fontsize-ensurer.reset-size1.size11,.katex .sizing.reset-size1.size11{font-size:4.976em}.katex .fontsize-ensurer.reset-size2.size1,.katex .sizing.reset-size2.size1{font-size:.83333333em}.katex .fontsize-ensurer.reset-size2.size2,.katex .sizing.reset-size2.size2{font-size:1em}.katex .fontsize-ensurer.reset-size2.size3,.katex .sizing.reset-size2.size3{font-size:1.16666667em}.katex .fontsize-ensurer.reset-size2.size4,.katex .sizing.reset-size2.size4{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size2.size5,.katex .sizing.reset-size2.size5{font-size:1.5em}.katex .fontsize-ensurer.reset-size2.size6,.katex .sizing.reset-size2.size6{font-size:1.66666667em}.katex .fontsize-ensurer.reset-size2.size7,.katex .sizing.reset-size2.size7{font-size:2em}.katex .fontsize-ensurer.reset-size2.size8,.katex .sizing.reset-size2.size8{font-size:2.4em}.katex .fontsize-ensurer.reset-size2.size9,.katex .sizing.reset-size2.size9{font-size:2.88em}.katex .fontsize-ensurer.reset-size2.size10,.katex .sizing.reset-size2.size10{font-size:3.45666667em}.katex .fontsize-ensurer.reset-size2.size11,.katex .sizing.reset-size2.size11{font-size:4.14666667em}.katex .fontsize-ensurer.reset-size3.size1,.katex .sizing.reset-size3.size1{font-size:.71428571em}.katex .fontsize-ensurer.reset-size3.size2,.katex .sizing.reset-size3.size2{font-size:.85714286em}.katex .fontsize-ensurer.reset-size3.size3,.katex .sizing.reset-size3.size3{font-size:1em}.katex .fontsize-ensurer.reset-size3.size4,.katex .sizing.reset-size3.size4{font-size:1.14285714em}.katex .fontsize-ensurer.reset-size3.size5,.katex .sizing.reset-size3.size5{font-size:1.28571429em}.katex .fontsize-ensurer.reset-size3.size6,.katex .sizing.reset-size3.size6{font-size:1.42857143em}.katex .fontsize-ensurer.reset-size3.size7,.katex .sizing.reset-size3.size7{font-size:1.71428571em}.katex .fontsize-ensurer.reset-size3.size8,.katex .sizing.reset-size3.size8{font-size:2.05714286em}.katex .fontsize-ensurer.reset-size3.size9,.katex .sizing.reset-size3.size9{font-size:2.46857143em}.katex .fontsize-ensurer.reset-size3.size10,.katex .sizing.reset-size3.size10{font-size:2.96285714em}.katex .fontsize-ensurer.reset-size3.size11,.katex .sizing.reset-size3.size11{font-size:3.55428571em}.katex .fontsize-ensurer.reset-size4.size1,.katex .sizing.reset-size4.size1{font-size:.625em}.katex .fontsize-ensurer.reset-size4.size2,.katex .sizing.reset-size4.size2{font-size:.75em}.katex .fontsize-ensurer.reset-size4.size3,.katex .sizing.reset-size4.size3{font-size:.875em}.katex .fontsize-ensurer.reset-size4.size4,.katex .sizing.reset-size4.size4{font-size:1em}.katex .fontsize-ensurer.reset-size4.size5,.katex .sizing.reset-size4.size5{font-size:1.125em}.katex .fontsize-ensurer.reset-size4.size6,.katex .sizing.reset-size4.size6{font-size:1.25em}.katex .fontsize-ensurer.reset-size4.size7,.katex .sizing.reset-size4.size7{font-size:1.5em}.katex .fontsize-ensurer.reset-size4.size8,.katex .sizing.reset-size4.size8{font-size:1.8em}.katex .fontsize-ensurer.reset-size4.size9,.katex .sizing.reset-size4.size9{font-size:2.16em}.katex .fontsize-ensurer.reset-size4.size10,.katex .sizing.reset-size4.size10{font-size:2.5925em}.katex .fontsize-ensurer.reset-size4.size11,.katex .sizing.reset-size4.size11{font-size:3.11em}.katex .fontsize-ensurer.reset-size5.size1,.katex .sizing.reset-size5.size1{font-size:.55555556em}.katex .fontsize-ensurer.reset-size5.size2,.katex .sizing.reset-size5.size2{font-size:.66666667em}.katex .fontsize-ensurer.reset-size5.size3,.katex .sizing.reset-size5.size3{font-size:.77777778em}.katex .fontsize-ensurer.reset-size5.size4,.katex .sizing.reset-size5.size4{font-size:.88888889em}.katex .fontsize-ensurer.reset-size5.size5,.katex .sizing.reset-size5.size5{font-size:1em}.katex .fontsize-ensurer.reset-size5.size6,.katex .sizing.reset-size5.size6{font-size:1.11111111em}.katex .fontsize-ensurer.reset-size5.size7,.katex .sizing.reset-size5.size7{font-size:1.33333333em}.katex .fontsize-ensurer.reset-size5.size8,.katex .sizing.reset-size5.size8{font-size:1.6em}.katex .fontsize-ensurer.reset-size5.size9,.katex .sizing.reset-size5.size9{font-size:1.92em}.katex .fontsize-ensurer.reset-size5.size10,.katex .sizing.reset-size5.size10{font-size:2.30444444em}.katex .fontsize-ensurer.reset-size5.size11,.katex .sizing.reset-size5.size11{font-size:2.76444444em}.katex .fontsize-ensurer.reset-size6.size1,.katex .sizing.reset-size6.size1{font-size:.5em}.katex .fontsize-ensurer.reset-size6.size2,.katex .sizing.reset-size6.size2{font-size:.6em}.katex .fontsize-ensurer.reset-size6.size3,.katex .sizing.reset-size6.size3{font-size:.7em}.katex .fontsize-ensurer.reset-size6.size4,.katex .sizing.reset-size6.size4{font-size:.8em}.katex .fontsize-ensurer.reset-size6.size5,.katex .sizing.reset-size6.size5{font-size:.9em}.katex .fontsize-ensurer.reset-size6.size6,.katex .sizing.reset-size6.size6{font-size:1em}.katex .fontsize-ensurer.reset-size6.size7,.katex .sizing.reset-size6.size7{font-size:1.2em}.katex .fontsize-ensurer.reset-size6.size8,.katex .sizing.reset-size6.size8{font-size:1.44em}.katex .fontsize-ensurer.reset-size6.size9,.katex .sizing.reset-size6.size9{font-size:1.728em}.katex .fontsize-ensurer.reset-size6.size10,.katex .sizing.reset-size6.size10{font-size:2.074em}.katex .fontsize-ensurer.reset-size6.size11,.katex .sizing.reset-size6.size11{font-size:2.488em}.katex .fontsize-ensurer.reset-size7.size1,.katex .sizing.reset-size7.size1{font-size:.41666667em}.katex .fontsize-ensurer.reset-size7.size2,.katex .sizing.reset-size7.size2{font-size:.5em}.katex .fontsize-ensurer.reset-size7.size3,.katex .sizing.reset-size7.size3{font-size:.58333333em}.katex .fontsize-ensurer.reset-size7.size4,.katex .sizing.reset-size7.size4{font-size:.66666667em}.katex .fontsize-ensurer.reset-size7.size5,.katex .sizing.reset-size7.size5{font-size:.75em}.katex .fontsize-ensurer.reset-size7.size6,.katex .sizing.reset-size7.size6{font-size:.83333333em}.katex .fontsize-ensurer.reset-size7.size7,.katex .sizing.reset-size7.size7{font-size:1em}.katex .fontsize-ensurer.reset-size7.size8,.katex .sizing.reset-size7.size8{font-size:1.2em}.katex .fontsize-ensurer.reset-size7.size9,.katex .sizing.reset-size7.size9{font-size:1.44em}.katex .fontsize-ensurer.reset-size7.size10,.katex .sizing.reset-size7.size10{font-size:1.72833333em}.katex .fontsize-ensurer.reset-size7.size11,.katex .sizing.reset-size7.size11{font-size:2.07333333em}.katex .fontsize-ensurer.reset-size8.size1,.katex .sizing.reset-size8.size1{font-size:.34722222em}.katex .fontsize-ensurer.reset-size8.size2,.katex .sizing.reset-size8.size2{font-size:.41666667em}.katex .fontsize-ensurer.reset-size8.size3,.katex .sizing.reset-size8.size3{font-size:.48611111em}.katex .fontsize-ensurer.reset-size8.size4,.katex .sizing.reset-size8.size4{font-size:.55555556em}.katex .fontsize-ensurer.reset-size8.size5,.katex .sizing.reset-size8.size5{font-size:.625em}.katex .fontsize-ensurer.reset-size8.size6,.katex .sizing.reset-size8.size6{font-size:.69444444em}.katex .fontsize-ensurer.reset-size8.size7,.katex .sizing.reset-size8.size7{font-size:.83333333em}.katex .fontsize-ensurer.reset-size8.size8,.katex .sizing.reset-size8.size8{font-size:1em}.katex .fontsize-ensurer.reset-size8.size9,.katex .sizing.reset-size8.size9{font-size:1.2em}.katex .fontsize-ensurer.reset-size8.size10,.katex .sizing.reset-size8.size10{font-size:1.44027778em}.katex .fontsize-ensurer.reset-size8.size11,.katex .sizing.reset-size8.size11{font-size:1.72777778em}.katex .fontsize-ensurer.reset-size9.size1,.katex .sizing.reset-size9.size1{font-size:.28935185em}.katex .fontsize-ensurer.reset-size9.size2,.katex .sizing.reset-size9.size2{font-size:.34722222em}.katex .fontsize-ensurer.reset-size9.size3,.katex .sizing.reset-size9.size3{font-size:.40509259em}.katex .fontsize-ensurer.reset-size9.size4,.katex .sizing.reset-size9.size4{font-size:.46296296em}.katex .fontsize-ensurer.reset-size9.size5,.katex .sizing.reset-size9.size5{font-size:.52083333em}.katex .fontsize-ensurer.reset-size9.size6,.katex .sizing.reset-size9.size6{font-size:.5787037em}.katex .fontsize-ensurer.reset-size9.size7,.katex .sizing.reset-size9.size7{font-size:.69444444em}.katex .fontsize-ensurer.reset-size9.size8,.katex .sizing.reset-size9.size8{font-size:.83333333em}.katex .fontsize-ensurer.reset-size9.size9,.katex .sizing.reset-size9.size9{font-size:1em}.katex .fontsize-ensurer.reset-size9.size10,.katex .sizing.reset-size9.size10{font-size:1.20023148em}.katex .fontsize-ensurer.reset-size9.size11,.katex .sizing.reset-size9.size11{font-size:1.43981481em}.katex .fontsize-ensurer.reset-size10.size1,.katex .sizing.reset-size10.size1{font-size:.24108004em}.katex .fontsize-ensurer.reset-size10.size2,.katex .sizing.reset-size10.size2{font-size:.28929605em}.katex .fontsize-ensurer.reset-size10.size3,.katex .sizing.reset-size10.size3{font-size:.33751205em}.katex .fontsize-ensurer.reset-size10.size4,.katex .sizing.reset-size10.size4{font-size:.38572806em}.katex .fontsize-ensurer.reset-size10.size5,.katex .sizing.reset-size10.size5{font-size:.43394407em}.katex .fontsize-ensurer.reset-size10.size6,.katex .sizing.reset-size10.size6{font-size:.48216008em}.katex .fontsize-ensurer.reset-size10.size7,.katex .sizing.reset-size10.size7{font-size:.57859209em}.katex .fontsize-ensurer.reset-size10.size8,.katex .sizing.reset-size10.size8{font-size:.69431051em}.katex .fontsize-ensurer.reset-size10.size9,.katex .sizing.reset-size10.size9{font-size:.83317261em}.katex .fontsize-ensurer.reset-size10.size10,.katex .sizing.reset-size10.size10{font-size:1em}.katex .fontsize-ensurer.reset-size10.size11,.katex .sizing.reset-size10.size11{font-size:1.19961427em}.katex .fontsize-ensurer.reset-size11.size1,.katex .sizing.reset-size11.size1{font-size:.20096463em}.katex .fontsize-ensurer.reset-size11.size2,.katex .sizing.reset-size11.size2{font-size:.24115756em}.katex .fontsize-ensurer.reset-size11.size3,.katex .sizing.reset-size11.size3{font-size:.28135048em}.katex .fontsize-ensurer.reset-size11.size4,.katex .sizing.reset-size11.size4{font-size:.32154341em}.katex .fontsize-ensurer.reset-size11.size5,.katex .sizing.reset-size11.size5{font-size:.36173633em}.katex .fontsize-ensurer.reset-size11.size6,.katex .sizing.reset-size11.size6{font-size:.40192926em}.katex .fontsize-ensurer.reset-size11.size7,.katex .sizing.reset-size11.size7{font-size:.48231511em}.katex .fontsize-ensurer.reset-size11.size8,.katex .sizing.reset-size11.size8{font-size:.57877814em}.katex .fontsize-ensurer.reset-size11.size9,.katex .sizing.reset-size11.size9{font-size:.69453376em}.katex .fontsize-ensurer.reset-size11.size10,.katex .sizing.reset-size11.size10{font-size:.83360129em}.katex .fontsize-ensurer.reset-size11.size11,.katex .sizing.reset-size11.size11{font-size:1em}.katex .delimsizing.size1{font-family:KaTeX_Size1}.katex .delimsizing.size2{font-family:KaTeX_Size2}.katex .delimsizing.size3{font-family:KaTeX_Size3}.katex .delimsizing.size4{font-family:KaTeX_Size4}.katex .delimsizing.mult .delim-size1>span{font-family:KaTeX_Size1}.katex .delimsizing.mult .delim-size4>span{font-family:KaTeX_Size4}.katex .nulldelimiter{display:inline-block;width:.12em}.katex .delimcenter,.katex .op-symbol{position:relative}.katex .op-symbol.small-op{font-family:KaTeX_Size1}.katex .op-symbol.large-op{font-family:KaTeX_Size2}.katex .accent>.vlist-t,.katex .op-limits>.vlist-t{text-align:center}.katex .accent .accent-body{position:relative}.katex .accent .accent-body:not(.accent-full){width:0}.katex .overlay{display:block}.katex .mtable .vertical-separator{display:inline-block;min-width:1px}.katex .mtable .arraycolsep{display:inline-block}.katex .mtable .col-align-c>.vlist-t{text-align:center}.katex .mtable .col-align-l>.vlist-t{text-align:left}.katex .mtable .col-align-r>.vlist-t{text-align:right}.katex .svg-align{text-align:left}.katex svg{fill:currentColor;stroke:currentColor;fill-rule:nonzero;fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;display:block;height:inherit;position:absolute;width:100%}.katex svg path{stroke:none}.katex img{border-style:none;max-height:none;max-width:none;min-height:0;min-width:0}.katex .stretchy{display:block;overflow:hidden;position:relative;width:100%}.katex .stretchy:after,.katex .stretchy:before{content:""}.katex .hide-tail{overflow:hidden;position:relative;width:100%}.katex .halfarrow-left{left:0;overflow:hidden;position:absolute;width:50.2%}.katex .halfarrow-right{overflow:hidden;position:absolute;right:0;width:50.2%}.katex .brace-left{left:0;overflow:hidden;position:absolute;width:25.1%}.katex .brace-center{left:25%;overflow:hidden;position:absolute;width:50%}.katex .brace-right{overflow:hidden;position:absolute;right:0;width:25.1%}.katex .x-arrow-pad{padding:0 .5em}.katex .cd-arrow-pad{padding:0 .55556em 0 .27778em}.katex .mover,.katex .munder,.katex .x-arrow{text-align:center}.katex .boxpad{padding:0 .3em}.katex .fbox,.katex .fcolorbox{border:.04em solid;box-sizing:border-box}.katex .cancel-pad{padding:0 .2em}.katex .cancel-lap{margin-left:-.2em;margin-right:-.2em}.katex .sout{border-bottom-style:solid;border-bottom-width:.08em}.katex .angl{border-right:.049em solid;border-top:.049em solid;box-sizing:border-box;margin-right:.03889em}.katex .anglpad{padding:0 .03889em}.katex .eqn-num:before{content:"(" counter(katexEqnNo) ")";counter-increment:katexEqnNo}.katex .mml-eqn-num:before{content:"(" counter(mmlEqnNo) ")";counter-increment:mmlEqnNo}.katex .mtr-glue{width:50%}.katex .cd-vert-arrow{display:inline-block;position:relative}.katex .cd-label-left{display:inline-block;position:absolute;right:calc(50% + .3em);text-align:left}.katex .cd-label-right{display:inline-block;left:calc(50% + .3em);position:absolute;text-align:right}.katex-display{display:block;margin:1em 0;text-align:center}.katex-display>.katex{display:block;text-align:center;white-space:nowrap}.katex-display>.katex>.katex-html{display:block;position:relative}.katex-display>.katex>.katex-html>.tag{position:absolute;right:0}.katex-display.leqno>.katex>.katex-html>.tag{left:0;right:auto}.katex-display.fleqn>.katex{padding-left:2em;text-align:left}body{counter-reset:katexEqnNo mmlEqnNo} /*# sourceMappingURL=styles.css.map*/ \ No newline at end of file diff --git a/web-component/sunbird-quml-player.js b/web-component/sunbird-quml-player.js index fdb24172..342605dc 100644 --- a/web-component/sunbird-quml-player.js +++ b/web-component/sunbird-quml-player.js @@ -175,7 +175,7 @@ //# sourceMappingURL=runtime.js.map (self["webpackChunkquml_player_wc"] = self["webpackChunkquml_player_wc"] || []).push([["polyfills"],{ -/***/ 2326: +/***/ 42326: /*!**************************************************!*\ !*** ./projects/quml-player-wc/src/polyfills.ts ***! \**************************************************/ @@ -183,9 +183,9 @@ "use strict"; __webpack_require__.r(__webpack_exports__); -/* harmony import */ var zone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zone.js */ 6657); +/* harmony import */ var zone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! zone.js */ 76657); /* harmony import */ var zone_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(zone_js__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var document_register_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! document-register-element */ 3615); +/* harmony import */ var document_register_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! document-register-element */ 13615); /* harmony import */ var document_register_element__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(document_register_element__WEBPACK_IMPORTED_MODULE_1__); /** * This file includes polyfills needed by Angular and is loaded before the app. @@ -239,7 +239,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3615: +/***/ 13615: /*!***********************************************************************************!*\ !*** ./node_modules/document-register-element/build/document-register-element.js ***! \***********************************************************************************/ @@ -844,7 +844,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6657: +/***/ 76657: /*!***********************************************!*\ !*** ./node_modules/zone.js/fesm2015/zone.js ***! \***********************************************/ @@ -1906,7 +1906,6 @@ Zone.__load_patch('ZoneAwarePromise', (global, Zone, api) => { // Do not return value or you will break the Promise spec. }; } - const once = function () { let wasCalled = false; return function wrapper(wrappedFunction) { @@ -3472,7 +3471,6 @@ Zone.__load_patch('XHR', (global, Zone) => { }); } }); - Zone.__load_patch('geolocation', global => { /// GEO_LOCATION if (global['navigator'] && global['navigator'].geolocation) { @@ -3512,14 +3510,14 @@ Zone.__load_patch('queueMicrotask', (global, Zone, api) => { }, /******/ __webpack_require__ => { // webpackRuntimeModules /******/ var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId)) -/******/ var __webpack_exports__ = (__webpack_exec__(2326)); +/******/ var __webpack_exports__ = (__webpack_exec__(42326)); /******/ } ]); //# sourceMappingURL=polyfills.js.map /*! jQuery v3.7.1 | (c) OpenJS Foundation and other contributors | jquery.org/license */ !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(ie,e){"use strict";var oe=[],r=Object.getPrototypeOf,ae=oe.slice,g=oe.flat?function(e){return oe.flat.call(e)}:function(e){return oe.concat.apply([],e)},s=oe.push,se=oe.indexOf,n={},i=n.toString,ue=n.hasOwnProperty,o=ue.toString,a=o.call(Object),le={},v=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},y=function(e){return null!=e&&e===e.window},C=ie.document,u={type:!0,src:!0,nonce:!0,noModule:!0};function m(e,t,n){var r,i,o=(n=n||C).createElement("script");if(o.text=e,t)for(r in u)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[i.call(e)]||"object":typeof e}var t="3.7.1",l=/HTML$/i,ce=function(e,t){return new ce.fn.init(e,t)};function c(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"==typeof t&&0+~]|"+ge+")"+ge+"*"),x=new RegExp(ge+"|>"),j=new RegExp(g),A=new RegExp("^"+t+"$"),D={ID:new RegExp("^#("+t+")"),CLASS:new RegExp("^\\.("+t+")"),TAG:new RegExp("^("+t+"|[*])"),ATTR:new RegExp("^"+p),PSEUDO:new RegExp("^"+g),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+ge+"*(even|odd|(([+-]|)(\\d*)n|)"+ge+"*(?:([+-]|)"+ge+"*(\\d+)|))"+ge+"*\\)|)","i"),bool:new RegExp("^(?:"+f+")$","i"),needsContext:new RegExp("^"+ge+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+ge+"*((?:-\\d)?\\d*)"+ge+"*\\)|)(?=[^-]|$)","i")},N=/^(?:input|select|textarea|button)$/i,q=/^h\d$/i,L=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,H=/[+~]/,O=new RegExp("\\\\[\\da-fA-F]{1,6}"+ge+"?|\\\\([^\\r\\n\\f])","g"),P=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},M=function(){V()},R=J(function(e){return!0===e.disabled&&fe(e,"fieldset")},{dir:"parentNode",next:"legend"});try{k.apply(oe=ae.call(ye.childNodes),ye.childNodes),oe[ye.childNodes.length].nodeType}catch(e){k={apply:function(e,t){me.apply(e,ae.call(t))},call:function(e){me.apply(e,ae.call(arguments,1))}}}function I(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(V(e),e=e||T,C)){if(11!==p&&(u=L.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return k.call(n,a),n}else if(f&&(a=f.getElementById(i))&&I.contains(e,a)&&a.id===i)return k.call(n,a),n}else{if(u[2])return k.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&e.getElementsByClassName)return k.apply(n,e.getElementsByClassName(i)),n}if(!(h[t+" "]||d&&d.test(t))){if(c=t,f=e,1===p&&(x.test(t)||m.test(t))){(f=H.test(t)&&U(e.parentNode)||e)==e&&le.scope||((s=e.getAttribute("id"))?s=ce.escapeSelector(s):e.setAttribute("id",s=S)),o=(l=Y(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+Q(l[o]);c=l.join(",")}try{return k.apply(n,f.querySelectorAll(c)),n}catch(e){h(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return re(t.replace(ve,"$1"),e,n,r)}function W(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function F(e){return e[S]=!0,e}function $(e){var t=T.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function B(t){return function(e){return fe(e,"input")&&e.type===t}}function _(t){return function(e){return(fe(e,"input")||fe(e,"button"))&&e.type===t}}function z(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&R(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function X(a){return F(function(o){return o=+o,F(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function U(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}function V(e){var t,n=e?e.ownerDocument||e:ye;return n!=T&&9===n.nodeType&&n.documentElement&&(r=(T=n).documentElement,C=!ce.isXMLDoc(T),i=r.matches||r.webkitMatchesSelector||r.msMatchesSelector,r.msMatchesSelector&&ye!=T&&(t=T.defaultView)&&t.top!==t&&t.addEventListener("unload",M),le.getById=$(function(e){return r.appendChild(e).id=ce.expando,!T.getElementsByName||!T.getElementsByName(ce.expando).length}),le.disconnectedMatch=$(function(e){return i.call(e,"*")}),le.scope=$(function(){return T.querySelectorAll(":scope")}),le.cssHas=$(function(){try{return T.querySelector(":has(*,:jqfake)"),!1}catch(e){return!0}}),le.getById?(b.filter.ID=function(e){var t=e.replace(O,P);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(O,P);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&C){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):t.querySelectorAll(e)},b.find.CLASS=function(e,t){if("undefined"!=typeof t.getElementsByClassName&&C)return t.getElementsByClassName(e)},d=[],$(function(e){var t;r.appendChild(e).innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+ge+"*(?:value|"+f+")"),e.querySelectorAll("[id~="+S+"-]").length||d.push("~="),e.querySelectorAll("a#"+S+"+*").length||d.push(".#.+[+~]"),e.querySelectorAll(":checked").length||d.push(":checked"),(t=T.createElement("input")).setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),r.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&d.push(":enabled",":disabled"),(t=T.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||d.push("\\["+ge+"*name"+ge+"*="+ge+"*(?:''|\"\")")}),le.cssHas||d.push(":has"),d=d.length&&new RegExp(d.join("|")),l=function(e,t){if(e===t)return a=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!le.sortDetached&&t.compareDocumentPosition(e)===n?e===T||e.ownerDocument==ye&&I.contains(ye,e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(O,P),e[3]=(e[3]||e[4]||e[5]||"").replace(O,P),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||I.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&I.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return D.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&j.test(n)&&(t=Y(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(O,P).toLowerCase();return"*"===e?function(){return!0}:function(e){return fe(e,t)}},CLASS:function(e){var t=s[e+" "];return t||(t=new RegExp("(^|"+ge+")"+e+"("+ge+"|$)"))&&s(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=I.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function T(e,n,r){return v(n)?ce.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?ce.grep(e,function(e){return e===n!==r}):"string"!=typeof n?ce.grep(e,function(e){return-1)[^>]*|#([\w-]+))$/;(ce.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||k,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:S.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof ce?t[0]:t,ce.merge(this,ce.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:C,!0)),w.test(r[1])&&ce.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=C.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(ce):ce.makeArray(e,this)}).prototype=ce.fn,k=ce(C);var E=/^(?:parents|prev(?:Until|All))/,j={children:!0,contents:!0,next:!0,prev:!0};function A(e,t){while((e=e[t])&&1!==e.nodeType);return e}ce.fn.extend({has:function(e){var t=ce(e,this),n=t.length;return this.filter(function(){for(var e=0;e\x20\t\r\n\f]*)/i,Ce=/^$|^module$|\/(?:java|ecma)script/i;xe=C.createDocumentFragment().appendChild(C.createElement("div")),(be=C.createElement("input")).setAttribute("type","radio"),be.setAttribute("checked","checked"),be.setAttribute("name","t"),xe.appendChild(be),le.checkClone=xe.cloneNode(!0).cloneNode(!0).lastChild.checked,xe.innerHTML="",le.noCloneChecked=!!xe.cloneNode(!0).lastChild.defaultValue,xe.innerHTML="",le.option=!!xe.lastChild;var ke={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function Se(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&fe(e,t)?ce.merge([e],n):n}function Ee(e,t){for(var n=0,r=e.length;n",""]);var je=/<|&#?\w+;/;function Ae(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d\s*$/g;function Re(e,t){return fe(e,"table")&&fe(11!==t.nodeType?t:t.firstChild,"tr")&&ce(e).children("tbody")[0]||e}function Ie(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function We(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Fe(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(_.hasData(e)&&(s=_.get(e).events))for(i in _.remove(t,"handle events"),s)for(n=0,r=s[i].length;n").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 015?"\u2026"+e.slice(n-15,n):e.slice(0,n),a=o+15":">","<":"<",'"':""","'":"'"},i=/[&><"']/g;const a=function(e){return"ordgroup"===e.type||"color"===e.type?1===e.body.length?a(e.body[0]):e:"font"===e.type?a(e.body):e};var l={contains:function(e,t){return-1!==e.indexOf(t)},deflt:function(e,t){return void 0===e?t:e},escape:function(e){return String(e).replace(i,(e=>s[e]))},hyphenate:function(e){return e.replace(o,"-$1").toLowerCase()},getBaseElem:a,isCharacterBox:function(e){const t=a(e);return"mathord"===t.type||"textord"===t.type||"atom"===t.type},protocolFromUrl:function(e){const t=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(e);return t?":"!==t[2]?null:/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(t[1])?t[1].toLowerCase():null:"_relative"}};const h={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand ",cliProcessor:e=>"Infinity"===e?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function c(e){if(e.default)return e.default;const t=e.type,r=Array.isArray(t)?t[0]:t;if("string"!=typeof r)return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}class m{constructor(e){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,e=e||{};for(const t in h)if(h.hasOwnProperty(t)){const r=h[t];this[t]=void 0!==e[t]?r.processor?r.processor(e[t]):e[t]:c(r)}}reportNonstrict(e,t,r){let o=this.strict;if("function"==typeof o&&(o=o(e,t,r)),o&&"ignore"!==o){if(!0===o||"error"===o)throw new n("LaTeX-incompatible input and strict mode is set to 'error': "+t+" ["+e+"]",r);"warn"===o?"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"):"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+o+"': "+t+" ["+e+"]")}}useStrictBehavior(e,t,r){let n=this.strict;if("function"==typeof n)try{n=n(e,t,r)}catch(e){n="error"}return!(!n||"ignore"===n)&&(!0===n||"error"===n||("warn"===n?("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"),!1):("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+n+"': "+t+" ["+e+"]"),!1)))}isTrusted(e){if(e.url&&!e.protocol){const t=l.protocolFromUrl(e.url);if(null==t)return!1;e.protocol=t}const t="function"==typeof this.trust?this.trust(e):this.trust;return Boolean(t)}}class p{constructor(e,t,r){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=e,this.size=t,this.cramped=r}sup(){return u[d[this.id]]}sub(){return u[g[this.id]]}fracNum(){return u[f[this.id]]}fracDen(){return u[b[this.id]]}cramp(){return u[y[this.id]]}text(){return u[x[this.id]]}isTight(){return this.size>=2}}const u=[new p(0,0,!1),new p(1,0,!0),new p(2,1,!1),new p(3,1,!0),new p(4,2,!1),new p(5,2,!0),new p(6,3,!1),new p(7,3,!0)],d=[4,5,4,5,6,7,6,7],g=[5,5,5,5,7,7,7,7],f=[2,3,4,5,6,7,6,7],b=[3,3,5,5,7,7,7,7],y=[1,1,3,3,5,5,7,7],x=[0,1,2,3,2,3,2,3];var w={DISPLAY:u[0],TEXT:u[2],SCRIPT:u[4],SCRIPTSCRIPT:u[6]};const v=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];const k=[];function S(e){for(let t=0;t=k[t]&&e<=k[t+1])return!0;return!1}v.forEach((e=>e.blocks.forEach((e=>k.push(...e)))));const M=80,z={doubleleftarrow:"M262 157\nl10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3\n 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28\n 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5\nc2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5\n 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87\n-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7\n-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z\nm8 0v40h399730v-40zm0 194v40h399730v-40z",doublerightarrow:"M399738 392l\n-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5\n 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88\n-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68\n-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18\n-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782\nc-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3\n-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z",leftarrow:"M400000 241H110l3-3c68.7-52.7 113.7-120\n 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8\n-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247\nc-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208\n 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3\n 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202\n l-3-3h399890zM100 241v40h399900v-40z",leftbrace:"M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117\n-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7\n 5-6 9-10 13-.7 1-7.3 1-20 1H6z",leftbraceunder:"M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13\n 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688\n 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7\n-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z",leftgroup:"M400000 80\nH435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0\n 435 0h399565z",leftgroupunder:"M400000 262\nH435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219\n 435 219h399565z",leftharpoon:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3\n-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5\n-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7\n-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z",leftharpoonplus:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5\n 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3\n-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7\n-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z\nm0 0v40h400000v-40z",leftharpoondown:"M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333\n 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5\n 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667\n-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z",leftharpoondownplus:"M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12\n 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7\n-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0\nv40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z",lefthook:"M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5\n-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3\n-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21\n 71.5 23h399859zM103 281v-40h399897v40z",leftlinesegment:"M40 281 V428 H0 V94 H40 V241 H400000 v40z\nM40 281 V428 H0 V94 H40 V241 H400000 v40z",leftmapsto:"M40 281 V448H0V74H40V241H400000v40z\nM40 281 V448H0V74H40V241H400000v40z",leftToFrom:"M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23\n-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8\nc28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3\n 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z",longequal:"M0 50 h400000 v40H0z m0 194h40000v40H0z\nM0 50 h400000 v40H0z m0 194h40000v40H0z",midbrace:"M200428 334\nc-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14\n-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7\n 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11\n 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z",midbraceunder:"M199572 214\nc100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14\n 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3\n 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0\n-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z",oiintSize1:"M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6\n-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z\nm368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8\n60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z",oiintSize2:"M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8\n-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z\nm502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2\nc0 110 84 276 504 276s502.4-166 502.4-276z",oiiintSize1:"M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6\n-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z\nm525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0\n85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z",oiiintSize2:"M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8\n-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z\nm770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1\nc0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z",rightarrow:"M0 241v40h399891c-47.3 35.3-84 78-110 128\n-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20\n 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7\n 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85\n-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n 151.7 139 205zm0 0v40h399900v-40z",rightbrace:"M400000 542l\n-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5\ns-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1\nc124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z",rightbraceunder:"M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3\n 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237\n-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z",rightgroup:"M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0\n 3-1 3-3v-38c-76-158-257-219-435-219H0z",rightgroupunder:"M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18\n 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z",rightharpoon:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3\n-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2\n-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58\n 69.2 92 94.5zm0 0v40h399900v-40z",rightharpoonplus:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11\n-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7\n 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z\nm0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z",rightharpoondown:"M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8\n 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5\n-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95\n-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z",rightharpoondownplus:"M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8\n 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3\n 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3\n-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z\nm0-194v40h400000v-40zm0 0v40h400000v-40z",righthook:"M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3\n 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0\n-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21\n 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z",rightlinesegment:"M399960 241 V94 h40 V428 h-40 V281 H0 v-40z\nM399960 241 V94 h40 V428 h-40 V281 H0 v-40z",rightToFrom:"M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23\n 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32\n-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142\n-167z M100 147v40h399900v-40zM0 341v40h399900v-40z",twoheadleftarrow:"M0 167c68 40\n 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69\n-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3\n-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19\n-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101\n 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z",twoheadrightarrow:"M400000 167\nc-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3\n 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42\n 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333\n-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70\n 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z",tilde1:"M200 55.538c-77 0-168 73.953-177 73.953-3 0-7\n-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0\n 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0\n 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128\n-68.267.847-113-73.952-191-73.952z",tilde2:"M344 55.266c-142 0-300.638 81.316-311.5 86.418\n-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9\n 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114\nc1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751\n 181.476 676 181.476c-149 0-189-126.21-332-126.21z",tilde3:"M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457\n-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0\n 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697\n 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696\n -338 0-409-156.573-744-156.573z",tilde4:"M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345\n-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409\n 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9\n 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409\n -175.236-744-175.236z",vec:"M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5\n3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11\n10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63\n-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1\n-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59\nH213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359\nc-16-25.333-24-45-24-59z",widehat1:"M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22\nc-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z",widehat2:"M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat3:"M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat4:"M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widecheck1:"M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1,\n-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z",widecheck2:"M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck3:"M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck4:"M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",baraboveleftarrow:"M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202\nc4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5\nc-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130\ns-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47\n121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6\ns2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11\nc0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z\nM100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z",rightarrowabovebar:"M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32\n-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0\n13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39\n-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5\n-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z",baraboveshortleftharpoon:"M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17\nc2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21\nc-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40\nc-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z\nM0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z",rightharpoonaboveshortbar:"M0,241 l0,40c399126,0,399993,0,399993,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z",shortbaraboveleftharpoon:"M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9,\n1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7,\n-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z\nM93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z",shortrightharpoonabovebar:"M53,241l0,40c398570,0,399437,0,399437,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z"};class A{constructor(e){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=e,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createDocumentFragment();for(let t=0;te.toText())).join("")}}var T={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}};const B={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},C={"\xc5":"A","\xd0":"D","\xde":"o","\xe5":"a","\xf0":"d","\xfe":"o","\u0410":"A","\u0411":"B","\u0412":"B","\u0413":"F","\u0414":"A","\u0415":"E","\u0416":"K","\u0417":"3","\u0418":"N","\u0419":"N","\u041a":"K","\u041b":"N","\u041c":"M","\u041d":"H","\u041e":"O","\u041f":"N","\u0420":"P","\u0421":"C","\u0422":"T","\u0423":"y","\u0424":"O","\u0425":"X","\u0426":"U","\u0427":"h","\u0428":"W","\u0429":"W","\u042a":"B","\u042b":"X","\u042c":"B","\u042d":"3","\u042e":"X","\u042f":"R","\u0430":"a","\u0431":"b","\u0432":"a","\u0433":"r","\u0434":"y","\u0435":"e","\u0436":"m","\u0437":"e","\u0438":"n","\u0439":"n","\u043a":"n","\u043b":"n","\u043c":"m","\u043d":"n","\u043e":"o","\u043f":"n","\u0440":"p","\u0441":"c","\u0442":"o","\u0443":"y","\u0444":"b","\u0445":"x","\u0446":"n","\u0447":"n","\u0448":"w","\u0449":"w","\u044a":"a","\u044b":"m","\u044c":"a","\u044d":"e","\u044e":"m","\u044f":"r"};function N(e,t,r){if(!T[t])throw new Error("Font metrics not found for font: "+t+".");let n=e.charCodeAt(0),o=T[t][n];if(!o&&e[0]in C&&(n=C[e[0]].charCodeAt(0),o=T[t][n]),o||"text"!==r||S(n)&&(o=T[t][77]),o)return{depth:o[0],height:o[1],italic:o[2],skew:o[3],width:o[4]}}const q={};const I=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],R=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],H=function(e,t){return t.size<2?e:I[e-1][t.size-1]};class O{constructor(e){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=e.style,this.color=e.color,this.size=e.size||O.BASESIZE,this.textSize=e.textSize||this.size,this.phantom=!!e.phantom,this.font=e.font||"",this.fontFamily=e.fontFamily||"",this.fontWeight=e.fontWeight||"",this.fontShape=e.fontShape||"",this.sizeMultiplier=R[this.size-1],this.maxSize=e.maxSize,this.minRuleThickness=e.minRuleThickness,this._fontMetrics=void 0}extend(e){const t={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(const r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);return new O(t)}havingStyle(e){return this.style===e?this:this.extend({style:e,size:H(this.textSize,e)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(e){return this.size===e&&this.textSize===e?this:this.extend({style:this.style.text(),size:e,textSize:e,sizeMultiplier:R[e-1]})}havingBaseStyle(e){e=e||this.style.text();const t=H(O.BASESIZE,e);return this.size===t&&this.textSize===O.BASESIZE&&this.style===e?this:this.extend({style:e,size:t})}havingBaseSizing(){let e;switch(this.style.id){case 4:case 5:e=3;break;case 6:case 7:e=1;break;default:e=6}return this.extend({style:this.style.text(),size:e})}withColor(e){return this.extend({color:e})}withPhantom(){return this.extend({phantom:!0})}withFont(e){return this.extend({font:e})}withTextFontFamily(e){return this.extend({fontFamily:e,font:""})}withTextFontWeight(e){return this.extend({fontWeight:e,font:""})}withTextFontShape(e){return this.extend({fontShape:e,font:""})}sizingClasses(e){return e.size!==this.size?["sizing","reset-size"+e.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==O.BASESIZE?["sizing","reset-size"+this.size,"size"+O.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=function(e){let t;if(t=e>=5?0:e>=3?1:2,!q[t]){const e=q[t]={cssEmPerMu:B.quad[t]/18};for(const r in B)B.hasOwnProperty(r)&&(e[r]=B[r][t])}return q[t]}(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}O.BASESIZE=6;var E=O;const L={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:1.00375,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:1.00375},D={ex:!0,em:!0,mu:!0},V=function(e){return"string"!=typeof e&&(e=e.unit),e in L||e in D||"ex"===e},P=function(e,t){let r;if(e.unit in L)r=L[e.unit]/t.fontMetrics().ptPerEm/t.sizeMultiplier;else if("mu"===e.unit)r=t.fontMetrics().cssEmPerMu;else{let o;if(o=t.style.isTight()?t.havingStyle(t.style.text()):t,"ex"===e.unit)r=o.fontMetrics().xHeight;else{if("em"!==e.unit)throw new n("Invalid unit: '"+e.unit+"'");r=o.fontMetrics().quad}o!==t&&(r*=o.sizeMultiplier/t.sizeMultiplier)}return Math.min(e.number*r,t.maxSize)},F=function(e){return+e.toFixed(4)+"em"},G=function(e){return e.filter((e=>e)).join(" ")},U=function(e,t,r){if(this.classes=e||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},t){t.style.isTight()&&this.classes.push("mtight");const e=t.getColor();e&&(this.style.color=e)}},Y=function(e){const t=document.createElement(e);t.className=G(this.classes);for(const e in this.style)this.style.hasOwnProperty(e)&&(t.style[e]=this.style[e]);for(const e in this.attributes)this.attributes.hasOwnProperty(e)&&t.setAttribute(e,this.attributes[e]);for(let e=0;e",t};class W{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,e,r,n),this.children=t||[]}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"span")}toMarkup(){return X.call(this,"span")}}class _{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,t,n),this.children=r||[],this.setAttribute("href",e)}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"a")}toMarkup(){return X.call(this,"a")}}class j{constructor(e,t,r){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=t,this.src=e,this.classes=["mord"],this.style=r}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createElement("img");e.src=this.src,e.alt=this.alt,e.className="mord";for(const t in this.style)this.style.hasOwnProperty(t)&&(e.style[t]=this.style[t]);return e}toMarkup(){let e=''+l.escape(this.alt)+'=n[0]&&e<=n[1])return r.name}}return null}(this.text.charCodeAt(0));l&&this.classes.push(l+"_fallback"),/[\xee\xef\xed\xec]/.test(this.text)&&(this.text=$[this.text])}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createTextNode(this.text);let t=null;this.italic>0&&(t=document.createElement("span"),t.style.marginRight=F(this.italic)),this.classes.length>0&&(t=t||document.createElement("span"),t.className=G(this.classes));for(const e in this.style)this.style.hasOwnProperty(e)&&(t=t||document.createElement("span"),t.style[e]=this.style[e]);return t?(t.appendChild(e),t):e}toMarkup(){let e=!1,t="0&&(r+="margin-right:"+this.italic+"em;");for(const e in this.style)this.style.hasOwnProperty(e)&&(r+=l.hyphenate(e)+":"+this.style[e]+";");r&&(e=!0,t+=' style="'+l.escape(r)+'"');const n=l.escape(this.text);return e?(t+=">",t+=n,t+="",t):n}}class K{constructor(e,t){this.children=void 0,this.attributes=void 0,this.children=e||[],this.attributes=t||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","svg");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);for(let t=0;t':''}}class Q{constructor(e){this.attributes=void 0,this.attributes=e||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","line");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);return e}toMarkup(){let e="","\\gt",!0),se(ie,le,ye,"\u2208","\\in",!0),se(ie,le,ye,"\ue020","\\@not"),se(ie,le,ye,"\u2282","\\subset",!0),se(ie,le,ye,"\u2283","\\supset",!0),se(ie,le,ye,"\u2286","\\subseteq",!0),se(ie,le,ye,"\u2287","\\supseteq",!0),se(ie,he,ye,"\u2288","\\nsubseteq",!0),se(ie,he,ye,"\u2289","\\nsupseteq",!0),se(ie,le,ye,"\u22a8","\\models"),se(ie,le,ye,"\u2190","\\leftarrow",!0),se(ie,le,ye,"\u2264","\\le"),se(ie,le,ye,"\u2264","\\leq",!0),se(ie,le,ye,"<","\\lt",!0),se(ie,le,ye,"\u2192","\\rightarrow",!0),se(ie,le,ye,"\u2192","\\to"),se(ie,he,ye,"\u2271","\\ngeq",!0),se(ie,he,ye,"\u2270","\\nleq",!0),se(ie,le,xe,"\xa0","\\ "),se(ie,le,xe,"\xa0","\\space"),se(ie,le,xe,"\xa0","\\nobreakspace"),se(ae,le,xe,"\xa0","\\ "),se(ae,le,xe,"\xa0"," "),se(ae,le,xe,"\xa0","\\space"),se(ae,le,xe,"\xa0","\\nobreakspace"),se(ie,le,xe,null,"\\nobreak"),se(ie,le,xe,null,"\\allowbreak"),se(ie,le,be,",",","),se(ie,le,be,";",";"),se(ie,he,me,"\u22bc","\\barwedge",!0),se(ie,he,me,"\u22bb","\\veebar",!0),se(ie,le,me,"\u2299","\\odot",!0),se(ie,le,me,"\u2295","\\oplus",!0),se(ie,le,me,"\u2297","\\otimes",!0),se(ie,le,we,"\u2202","\\partial",!0),se(ie,le,me,"\u2298","\\oslash",!0),se(ie,he,me,"\u229a","\\circledcirc",!0),se(ie,he,me,"\u22a1","\\boxdot",!0),se(ie,le,me,"\u25b3","\\bigtriangleup"),se(ie,le,me,"\u25bd","\\bigtriangledown"),se(ie,le,me,"\u2020","\\dagger"),se(ie,le,me,"\u22c4","\\diamond"),se(ie,le,me,"\u22c6","\\star"),se(ie,le,me,"\u25c3","\\triangleleft"),se(ie,le,me,"\u25b9","\\triangleright"),se(ie,le,fe,"{","\\{"),se(ae,le,we,"{","\\{"),se(ae,le,we,"{","\\textbraceleft"),se(ie,le,pe,"}","\\}"),se(ae,le,we,"}","\\}"),se(ae,le,we,"}","\\textbraceright"),se(ie,le,fe,"{","\\lbrace"),se(ie,le,pe,"}","\\rbrace"),se(ie,le,fe,"[","\\lbrack",!0),se(ae,le,we,"[","\\lbrack",!0),se(ie,le,pe,"]","\\rbrack",!0),se(ae,le,we,"]","\\rbrack",!0),se(ie,le,fe,"(","\\lparen",!0),se(ie,le,pe,")","\\rparen",!0),se(ae,le,we,"<","\\textless",!0),se(ae,le,we,">","\\textgreater",!0),se(ie,le,fe,"\u230a","\\lfloor",!0),se(ie,le,pe,"\u230b","\\rfloor",!0),se(ie,le,fe,"\u2308","\\lceil",!0),se(ie,le,pe,"\u2309","\\rceil",!0),se(ie,le,we,"\\","\\backslash"),se(ie,le,we,"\u2223","|"),se(ie,le,we,"\u2223","\\vert"),se(ae,le,we,"|","\\textbar",!0),se(ie,le,we,"\u2225","\\|"),se(ie,le,we,"\u2225","\\Vert"),se(ae,le,we,"\u2225","\\textbardbl"),se(ae,le,we,"~","\\textasciitilde"),se(ae,le,we,"\\","\\textbackslash"),se(ae,le,we,"^","\\textasciicircum"),se(ie,le,ye,"\u2191","\\uparrow",!0),se(ie,le,ye,"\u21d1","\\Uparrow",!0),se(ie,le,ye,"\u2193","\\downarrow",!0),se(ie,le,ye,"\u21d3","\\Downarrow",!0),se(ie,le,ye,"\u2195","\\updownarrow",!0),se(ie,le,ye,"\u21d5","\\Updownarrow",!0),se(ie,le,ge,"\u2210","\\coprod"),se(ie,le,ge,"\u22c1","\\bigvee"),se(ie,le,ge,"\u22c0","\\bigwedge"),se(ie,le,ge,"\u2a04","\\biguplus"),se(ie,le,ge,"\u22c2","\\bigcap"),se(ie,le,ge,"\u22c3","\\bigcup"),se(ie,le,ge,"\u222b","\\int"),se(ie,le,ge,"\u222b","\\intop"),se(ie,le,ge,"\u222c","\\iint"),se(ie,le,ge,"\u222d","\\iiint"),se(ie,le,ge,"\u220f","\\prod"),se(ie,le,ge,"\u2211","\\sum"),se(ie,le,ge,"\u2a02","\\bigotimes"),se(ie,le,ge,"\u2a01","\\bigoplus"),se(ie,le,ge,"\u2a00","\\bigodot"),se(ie,le,ge,"\u222e","\\oint"),se(ie,le,ge,"\u222f","\\oiint"),se(ie,le,ge,"\u2230","\\oiiint"),se(ie,le,ge,"\u2a06","\\bigsqcup"),se(ie,le,ge,"\u222b","\\smallint"),se(ae,le,ue,"\u2026","\\textellipsis"),se(ie,le,ue,"\u2026","\\mathellipsis"),se(ae,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u22ef","\\@cdots",!0),se(ie,le,ue,"\u22f1","\\ddots",!0),se(ie,le,we,"\u22ee","\\varvdots"),se(ie,le,ce,"\u02ca","\\acute"),se(ie,le,ce,"\u02cb","\\grave"),se(ie,le,ce,"\xa8","\\ddot"),se(ie,le,ce,"~","\\tilde"),se(ie,le,ce,"\u02c9","\\bar"),se(ie,le,ce,"\u02d8","\\breve"),se(ie,le,ce,"\u02c7","\\check"),se(ie,le,ce,"^","\\hat"),se(ie,le,ce,"\u20d7","\\vec"),se(ie,le,ce,"\u02d9","\\dot"),se(ie,le,ce,"\u02da","\\mathring"),se(ie,le,de,"\ue131","\\@imath"),se(ie,le,de,"\ue237","\\@jmath"),se(ie,le,we,"\u0131","\u0131"),se(ie,le,we,"\u0237","\u0237"),se(ae,le,we,"\u0131","\\i",!0),se(ae,le,we,"\u0237","\\j",!0),se(ae,le,we,"\xdf","\\ss",!0),se(ae,le,we,"\xe6","\\ae",!0),se(ae,le,we,"\u0153","\\oe",!0),se(ae,le,we,"\xf8","\\o",!0),se(ae,le,we,"\xc6","\\AE",!0),se(ae,le,we,"\u0152","\\OE",!0),se(ae,le,we,"\xd8","\\O",!0),se(ae,le,ce,"\u02ca","\\'"),se(ae,le,ce,"\u02cb","\\`"),se(ae,le,ce,"\u02c6","\\^"),se(ae,le,ce,"\u02dc","\\~"),se(ae,le,ce,"\u02c9","\\="),se(ae,le,ce,"\u02d8","\\u"),se(ae,le,ce,"\u02d9","\\."),se(ae,le,ce,"\xb8","\\c"),se(ae,le,ce,"\u02da","\\r"),se(ae,le,ce,"\u02c7","\\v"),se(ae,le,ce,"\xa8",'\\"'),se(ae,le,ce,"\u02dd","\\H"),se(ae,le,ce,"\u25ef","\\textcircled");const ve={"--":!0,"---":!0,"``":!0,"''":!0};se(ae,le,we,"\u2013","--",!0),se(ae,le,we,"\u2013","\\textendash"),se(ae,le,we,"\u2014","---",!0),se(ae,le,we,"\u2014","\\textemdash"),se(ae,le,we,"\u2018","`",!0),se(ae,le,we,"\u2018","\\textquoteleft"),se(ae,le,we,"\u2019","'",!0),se(ae,le,we,"\u2019","\\textquoteright"),se(ae,le,we,"\u201c","``",!0),se(ae,le,we,"\u201c","\\textquotedblleft"),se(ae,le,we,"\u201d","''",!0),se(ae,le,we,"\u201d","\\textquotedblright"),se(ie,le,we,"\xb0","\\degree",!0),se(ae,le,we,"\xb0","\\degree"),se(ae,le,we,"\xb0","\\textdegree",!0),se(ie,le,we,"\xa3","\\pounds"),se(ie,le,we,"\xa3","\\mathsterling",!0),se(ae,le,we,"\xa3","\\pounds"),se(ae,le,we,"\xa3","\\textsterling",!0),se(ie,he,we,"\u2720","\\maltese"),se(ae,he,we,"\u2720","\\maltese");const ke='0123456789/@."';for(let e=0;e{if(G(e.classes)!==G(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize)return!1;if(1===e.classes.length){const t=e.classes[0];if("mbin"===t||"mord"===t)return!1}for(const r in e.style)if(e.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;for(const r in t.style)if(t.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;return!0},Ie=function(e){let t=0,r=0,n=0;for(let o=0;ot&&(t=s.height),s.depth>r&&(r=s.depth),s.maxFontSize>n&&(n=s.maxFontSize)}e.height=t,e.depth=r,e.maxFontSize=n},Re=function(e,t,r,n){const o=new W(e,t,r,n);return Ie(o),o},He=(e,t,r,n)=>new W(e,t,r,n),Oe=function(e){const t=new A(e);return Ie(t),t},Ee=function(e,t,r){let n,o="";switch(e){case"amsrm":o="AMS";break;case"textrm":o="Main";break;case"textsf":o="SansSerif";break;case"texttt":o="Typewriter";break;default:o=e}return n="textbf"===t&&"textit"===r?"BoldItalic":"textbf"===t?"Bold":"textit"===t?"Italic":"Regular",o+"-"+n},Le={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},De={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]};var Ve={fontMap:Le,makeSymbol:Ne,mathsym:function(e,t,r,n){return void 0===n&&(n=[]),"boldsymbol"===r.font&&Ce(e,"Main-Bold",t).metrics?Ne(e,"Main-Bold",t,r,n.concat(["mathbf"])):"\\"===e||"main"===oe[t][e].font?Ne(e,"Main-Regular",t,r,n):Ne(e,"AMS-Regular",t,r,n.concat(["amsrm"]))},makeSpan:Re,makeSvgSpan:He,makeLineSpan:function(e,t,r){const n=Re([e],[],t);return n.height=Math.max(r||t.fontMetrics().defaultRuleThickness,t.minRuleThickness),n.style.borderBottomWidth=F(n.height),n.maxFontSize=1,n},makeAnchor:function(e,t,r,n){const o=new _(e,t,r,n);return Ie(o),o},makeFragment:Oe,wrapFragment:function(e,t){return e instanceof A?Re([],[e],t):e},makeVList:function(e,t){const{children:r,depth:n}=function(e){if("individualShift"===e.positionType){const t=e.children,r=[t[0]],n=-t[0].shift-t[0].elem.depth;let o=n;for(let e=1;e0)return Ne(s,h,o,t,i.concat(c));if(l){let e,n;if("boldsymbol"===l){const t=function(e,t,r,n,o){return"textord"!==o&&Ce(e,"Math-BoldItalic",t).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}}(s,o,0,0,r);e=t.fontName,n=[t.fontClass]}else a?(e=Le[l].fontName,n=[l]):(e=Ee(l,t.fontWeight,t.fontShape),n=[l,t.fontWeight,t.fontShape]);if(Ce(s,e,o).metrics)return Ne(s,e,o,t,i.concat(n));if(ve.hasOwnProperty(s)&&"Typewriter"===e.slice(0,10)){const r=[];for(let a=0;a{const r=Re(["mspace"],[],t),n=P(e,t);return r.style.marginRight=F(n),r},staticSvg:function(e,t){const[r,n,o]=De[e],s=new J(r),i=new K([s],{width:F(n),height:F(o),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+1e3*o,preserveAspectRatio:"xMinYMin"}),a=He(["overlay"],[i],t);return a.height=o,a.style.height=F(o),a.style.width=F(n),a},svgData:De,tryCombineChars:e=>{for(let t=0;t{const r=t.classes[0],n=e.classes[0];"mbin"===r&&l.contains(et,n)?t.classes[0]="mord":"mbin"===n&&l.contains(Qe,r)&&(e.classes[0]="mord")}),{node:i},a,h),ot(o,((e,t)=>{const r=at(t),n=at(e),o=r&&n?e.hasClass("mtight")?Ye[r][n]:Ue[r][n]:null;if(o)return Ve.makeGlue(o,s)}),{node:i},a,h),o},ot=function(e,t,r,n,o){n&&e.push(n);let s=0;for(;sr=>{e.splice(t+1,0,r),s++})(s)}n&&e.pop()},st=function(e){return e instanceof A||e instanceof _||e instanceof W&&e.hasClass("enclosing")?e:null},it=function(e,t){const r=st(e);if(r){const e=r.children;if(e.length){if("right"===t)return it(e[e.length-1],"right");if("left"===t)return it(e[0],"left")}}return e},at=function(e,t){return e?(t&&(e=it(e,t)),rt[e.classes[0]]||null):null},lt=function(e,t){const r=["nulldelimiter"].concat(e.baseSizingClasses());return Je(t.concat(r))},ht=function(e,t,r){if(!e)return Je();if(We[e.type]){let n=We[e.type](e,t);if(r&&t.size!==r.size){n=Je(t.sizingClasses(r),[n],t);const e=t.sizeMultiplier/r.sizeMultiplier;n.height*=e,n.depth*=e}return n}throw new n("Got group of unknown type: '"+e.type+"'")};function ct(e,t){const r=Je(["base"],e,t),n=Je(["strut"]);return n.style.height=F(r.height+r.depth),r.depth&&(n.style.verticalAlign=F(-r.depth)),r.children.unshift(n),r}function mt(e,t){let r=null;1===e.length&&"tag"===e[0].type&&(r=e[0].tag,e=e[0].body);const n=nt(e,t,"root");let o;2===n.length&&n[1].hasClass("tag")&&(o=n.pop());const s=[];let i,a=[];for(let e=0;e0&&(s.push(ct(a,t)),a=[]),s.push(n[e]));a.length>0&&s.push(ct(a,t)),r?(i=ct(nt(r,t,!0)),i.classes=["tag"],s.push(i)):o&&s.push(o);const l=Je(["katex-html"],s);if(l.setAttribute("aria-hidden","true"),i){const e=i.children[0];e.style.height=F(l.height+l.depth),l.depth&&(e.style.verticalAlign=F(-l.depth))}return l}function pt(e){return new A(e)}class ut{constructor(e,t,r){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=e,this.attributes={},this.children=t||[],this.classes=r||[]}setAttribute(e,t){this.attributes[e]=t}getAttribute(e){return this.attributes[e]}toNode(){const e=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);this.classes.length>0&&(e.className=G(this.classes));for(let t=0;t0&&(e+=' class ="'+l.escape(G(this.classes))+'"'),e+=">";for(let t=0;t",e}toText(){return this.children.map((e=>e.toText())).join("")}}class dt{constructor(e){this.text=void 0,this.text=e}toNode(){return document.createTextNode(this.text)}toMarkup(){return l.escape(this.toText())}toText(){return this.text}}var gt={MathNode:ut,TextNode:dt,SpaceNode:class{constructor(e){this.width=void 0,this.character=void 0,this.width=e,this.character=e>=.05555&&e<=.05556?"\u200a":e>=.1666&&e<=.1667?"\u2009":e>=.2222&&e<=.2223?"\u2005":e>=.2777&&e<=.2778?"\u2005\u200a":e>=-.05556&&e<=-.05555?"\u200a\u2063":e>=-.1667&&e<=-.1666?"\u2009\u2063":e>=-.2223&&e<=-.2222?"\u205f\u2063":e>=-.2778&&e<=-.2777?"\u2005\u2063":null}toNode(){if(this.character)return document.createTextNode(this.character);{const e=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return e.setAttribute("width",F(this.width)),e}}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}},newDocumentFragment:pt};const ft=function(e,t,r){return!oe[t][e]||!oe[t][e].replace||55349===e.charCodeAt(0)||ve.hasOwnProperty(e)&&r&&(r.fontFamily&&"tt"===r.fontFamily.slice(4,6)||r.font&&"tt"===r.font.slice(4,6))||(e=oe[t][e].replace),new gt.TextNode(e)},bt=function(e){return 1===e.length?e[0]:new gt.MathNode("mrow",e)},yt=function(e,t){if("texttt"===t.fontFamily)return"monospace";if("textsf"===t.fontFamily)return"textit"===t.fontShape&&"textbf"===t.fontWeight?"sans-serif-bold-italic":"textit"===t.fontShape?"sans-serif-italic":"textbf"===t.fontWeight?"bold-sans-serif":"sans-serif";if("textit"===t.fontShape&&"textbf"===t.fontWeight)return"bold-italic";if("textit"===t.fontShape)return"italic";if("textbf"===t.fontWeight)return"bold";const r=t.font;if(!r||"mathnormal"===r)return null;const n=e.mode;if("mathit"===r)return"italic";if("boldsymbol"===r)return"textord"===e.type?"bold":"bold-italic";if("mathbf"===r)return"bold";if("mathbb"===r)return"double-struck";if("mathfrak"===r)return"fraktur";if("mathscr"===r||"mathcal"===r)return"script";if("mathsf"===r)return"sans-serif";if("mathtt"===r)return"monospace";let o=e.text;if(l.contains(["\\imath","\\jmath"],o))return null;oe[n][o]&&oe[n][o].replace&&(o=oe[n][o].replace);return N(o,Ve.fontMap[r].fontName,n)?Ve.fontMap[r].variant:null},xt=function(e,t,r){if(1===e.length){const n=vt(e[0],t);return r&&n instanceof ut&&"mo"===n.type&&(n.setAttribute("lspace","0em"),n.setAttribute("rspace","0em")),[n]}const n=[];let o;for(let r=0;r0&&(e.text=e.text.slice(0,1)+"\u0338"+e.text.slice(1),n.pop())}}}n.push(s),o=s}return n},wt=function(e,t,r){return bt(xt(e,t,r))},vt=function(e,t){if(!e)return new gt.MathNode("mrow");if(_e[e.type]){return _e[e.type](e,t)}throw new n("Got group of unknown type: '"+e.type+"'")};function kt(e,t,r,n,o){const s=xt(e,r);let i;i=1===s.length&&s[0]instanceof ut&&l.contains(["mrow","mtable"],s[0].type)?s[0]:new gt.MathNode("mrow",s);const a=new gt.MathNode("annotation",[new gt.TextNode(t)]);a.setAttribute("encoding","application/x-tex");const h=new gt.MathNode("semantics",[i,a]),c=new gt.MathNode("math",[h]);c.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),n&&c.setAttribute("display","block");const m=o?"katex":"katex-mathml";return Ve.makeSpan([m],[c])}const St=function(e){return new E({style:e.displayMode?w.DISPLAY:w.TEXT,maxSize:e.maxSize,minRuleThickness:e.minRuleThickness})},Mt=function(e,t){if(t.displayMode){const r=["katex-display"];t.leqno&&r.push("leqno"),t.fleqn&&r.push("fleqn"),e=Ve.makeSpan(r,[e])}return e},zt=function(e,t,r){const n=St(r);let o;if("mathml"===r.output)return kt(e,t,n,r.displayMode,!0);if("html"===r.output){const t=mt(e,n);o=Ve.makeSpan(["katex"],[t])}else{const s=kt(e,t,n,r.displayMode,!1),i=mt(e,n);o=Ve.makeSpan(["katex"],[s,i])}return Mt(o,r)};const At={widehat:"^",widecheck:"\u02c7",widetilde:"~",utilde:"~",overleftarrow:"\u2190",underleftarrow:"\u2190",xleftarrow:"\u2190",overrightarrow:"\u2192",underrightarrow:"\u2192",xrightarrow:"\u2192",underbrace:"\u23df",overbrace:"\u23de",overgroup:"\u23e0",undergroup:"\u23e1",overleftrightarrow:"\u2194",underleftrightarrow:"\u2194",xleftrightarrow:"\u2194",Overrightarrow:"\u21d2",xRightarrow:"\u21d2",overleftharpoon:"\u21bc",xleftharpoonup:"\u21bc",overrightharpoon:"\u21c0",xrightharpoonup:"\u21c0",xLeftarrow:"\u21d0",xLeftrightarrow:"\u21d4",xhookleftarrow:"\u21a9",xhookrightarrow:"\u21aa",xmapsto:"\u21a6",xrightharpoondown:"\u21c1",xleftharpoondown:"\u21bd",xrightleftharpoons:"\u21cc",xleftrightharpoons:"\u21cb",xtwoheadleftarrow:"\u219e",xtwoheadrightarrow:"\u21a0",xlongequal:"=",xtofrom:"\u21c4",xrightleftarrows:"\u21c4",xrightequilibrium:"\u21cc",xleftequilibrium:"\u21cb","\\cdrightarrow":"\u2192","\\cdleftarrow":"\u2190","\\cdlongequal":"="},Tt={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]};var Bt=function(e,t,r,n,o){let s;const i=e.height+e.depth+r+n;if(/fbox|color|angl/.test(t)){if(s=Ve.makeSpan(["stretchy",t],[],o),"fbox"===t){const e=o.color&&o.getColor();e&&(s.style.borderColor=e)}}else{const e=[];/^[bx]cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));const r=new K(e,{width:"100%",height:F(i)});s=Ve.makeSvgSpan([],[r],o)}return s.height=i,s.style.height=F(i),s},Ct=function(e){const t=new gt.MathNode("mo",[new gt.TextNode(At[e.replace(/^\\/,"")])]);return t.setAttribute("stretchy","true"),t},Nt=function(e,t){const{span:r,minWidth:n,height:o}=function(){let r=4e5;const n=e.label.slice(1);if(l.contains(["widehat","widecheck","widetilde","utilde"],n)){const s="ordgroup"===(o=e.base).type?o.body.length:1;let i,a,l;if(s>5)"widehat"===n||"widecheck"===n?(i=420,r=2364,l=.42,a=n+"4"):(i=312,r=2340,l=.34,a="tilde4");else{const e=[1,1,2,2,3,3][s];"widehat"===n||"widecheck"===n?(r=[0,1062,2364,2364,2364][e],i=[0,239,300,360,420][e],l=[0,.24,.3,.3,.36,.42][e],a=n+e):(r=[0,600,1033,2339,2340][e],i=[0,260,286,306,312][e],l=[0,.26,.286,.3,.306,.34][e],a="tilde"+e)}const h=new J(a),c=new K([h],{width:"100%",height:F(l),viewBox:"0 0 "+r+" "+i,preserveAspectRatio:"none"});return{span:Ve.makeSvgSpan([],[c],t),minWidth:0,height:l}}{const e=[],o=Tt[n],[s,i,a]=o,l=a/1e3,h=s.length;let c,m;if(1===h){c=["hide-tail"],m=[o[3]]}else if(2===h)c=["halfarrow-left","halfarrow-right"],m=["xMinYMin","xMaxYMin"];else{if(3!==h)throw new Error("Correct katexImagesData or update code here to support\n "+h+" children.");c=["brace-left","brace-center","brace-right"],m=["xMinYMin","xMidYMin","xMaxYMin"]}for(let n=0;n0&&(r.style.minWidth=F(n)),r};function qt(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function It(e){const t=Rt(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function Rt(e){return e&&("atom"===e.type||re.hasOwnProperty(e.type))?e:null}const Ht=(e,t)=>{let r,n,o;e&&"supsub"===e.type?(n=qt(e.base,"accent"),r=n.base,e.base=r,o=function(e){if(e instanceof W)return e;throw new Error("Expected span but got "+String(e)+".")}(ht(e,t)),e.base=n):(n=qt(e,"accent"),r=n.base);const s=ht(r,t.havingCrampedStyle());let i=0;if(n.isShifty&&l.isCharacterBox(r)){const e=l.getBaseElem(r);i=ee(ht(e,t.havingCrampedStyle())).skew}const a="\\c"===n.label;let h,c=a?s.height+s.depth:Math.min(s.height,t.fontMetrics().xHeight);if(n.isStretchy)h=Nt(n,t),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"elem",elem:h,wrapperClasses:["svg-align"],wrapperStyle:i>0?{width:"calc(100% - "+F(2*i)+")",marginLeft:F(2*i)}:void 0}]},t);else{let e,r;"\\vec"===n.label?(e=Ve.staticSvg("vec",t),r=Ve.svgData.vec[1]):(e=Ve.makeOrd({mode:n.mode,text:n.label},t,"textord"),e=ee(e),e.italic=0,r=e.width,a&&(c+=e.depth)),h=Ve.makeSpan(["accent-body"],[e]);const o="\\textcircled"===n.label;o&&(h.classes.push("accent-full"),c=s.height);let l=i;o||(l-=r/2),h.style.left=F(l),"\\textcircled"===n.label&&(h.style.top=".2em"),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:-c},{type:"elem",elem:h}]},t)}const m=Ve.makeSpan(["mord","accent"],[h],t);return o?(o.children[0]=m,o.height=Math.max(m.height,o.height),o.classes[0]="mord",o):m},Ot=(e,t)=>{const r=e.isStretchy?Ct(e.label):new gt.MathNode("mo",[ft(e.label,e.mode)]),n=new gt.MathNode("mover",[vt(e.base,t),r]);return n.setAttribute("accent","true"),n},Et=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map((e=>"\\"+e)).join("|"));je({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:(e,t)=>{const r=Ze(t[0]),n=!Et.test(e.funcName),o=!n||"\\widehat"===e.funcName||"\\widetilde"===e.funcName||"\\widecheck"===e.funcName;return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:n,isShifty:o,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:(e,t)=>{const r=t[0];let n=e.parser.mode;return"math"===n&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),n="text"),{type:"accent",mode:n,label:e.funcName,isStretchy:!1,isShifty:!0,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"accentUnder",mode:r.mode,label:n,base:o}},htmlBuilder:(e,t)=>{const r=ht(e.base,t),n=Nt(e,t),o="\\utilde"===e.label?.12:0,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:n,wrapperClasses:["svg-align"]},{type:"kern",size:o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","accentunder"],[s],t)},mathmlBuilder:(e,t)=>{const r=Ct(e.label),n=new gt.MathNode("munder",[vt(e.base,t),r]);return n.setAttribute("accentunder","true"),n}});const Lt=e=>{const t=new gt.MathNode("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};je({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n,funcName:o}=e;return{type:"xArrow",mode:n.mode,label:o,body:t[0],below:r[0]}},htmlBuilder(e,t){const r=t.style;let n=t.havingStyle(r.sup());const o=Ve.wrapFragment(ht(e.body,n,t),t),s="\\x"===e.label.slice(0,2)?"x":"cd";let i;o.classes.push(s+"-arrow-pad"),e.below&&(n=t.havingStyle(r.sub()),i=Ve.wrapFragment(ht(e.below,n,t),t),i.classes.push(s+"-arrow-pad"));const a=Nt(e,t),l=-t.fontMetrics().axisHeight+.5*a.height;let h,c=-t.fontMetrics().axisHeight-.5*a.height-.111;if((o.depth>.25||"\\xleftequilibrium"===e.label)&&(c-=o.depth),i){const e=-t.fontMetrics().axisHeight+i.height+.5*a.height+.111;h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l},{type:"elem",elem:i,shift:e}]},t)}else h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l}]},t);return h.children[0].children[0].children[1].classes.push("svg-align"),Ve.makeSpan(["mrel","x-arrow"],[h],t)},mathmlBuilder(e,t){const r=Ct(e.label);let n;if(r.setAttribute("minsize","x"===e.label.charAt(0)?"1.75em":"3.0em"),e.body){const o=Lt(vt(e.body,t));if(e.below){const s=Lt(vt(e.below,t));n=new gt.MathNode("munderover",[r,s,o])}else n=new gt.MathNode("mover",[r,o])}else if(e.below){const o=Lt(vt(e.below,t));n=new gt.MathNode("munder",[r,o])}else n=Lt(),n=new gt.MathNode("mover",[r,n]);return n}});const Dt=Ve.makeSpan;function Vt(e,t){const r=nt(e.body,t,!0);return Dt([e.mclass],r,t)}function Pt(e,t){let r;const n=xt(e.body,t);return"minner"===e.mclass?r=new gt.MathNode("mpadded",n):"mord"===e.mclass?e.isCharacterBox?(r=n[0],r.type="mi"):r=new gt.MathNode("mi",n):(e.isCharacterBox?(r=n[0],r.type="mo"):r=new gt.MathNode("mo",n),"mbin"===e.mclass?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):"mpunct"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):"mopen"===e.mclass||"mclose"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0em"):"minner"===e.mclass&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}je({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"mclass",mode:r.mode,mclass:"m"+n.slice(5),body:Ke(o),isCharacterBox:l.isCharacterBox(o)}},htmlBuilder:Vt,mathmlBuilder:Pt});const Ft=e=>{const t="ordgroup"===e.type&&e.body.length?e.body[0]:e;return"atom"!==t.type||"bin"!==t.family&&"rel"!==t.family?"mord":"m"+t.family};je({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(e,t){let{parser:r}=e;return{type:"mclass",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[1]),isCharacterBox:l.isCharacterBox(t[1])}}}),je({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(e,t){let{parser:r,funcName:n}=e;const o=t[1],s=t[0];let i;i="\\stackrel"!==n?Ft(o):"mrel";const a={type:"op",mode:o.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:"\\stackrel"!==n,body:Ke(o)},h={type:"supsub",mode:s.mode,base:a,sup:"\\underset"===n?null:s,sub:"\\underset"===n?s:null};return{type:"mclass",mode:r.mode,mclass:i,body:[h],isCharacterBox:l.isCharacterBox(h)}},htmlBuilder:Vt,mathmlBuilder:Pt}),je({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"pmb",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[0])}},htmlBuilder(e,t){const r=nt(e.body,t,!0),n=Ve.makeSpan([e.mclass],r,t);return n.style.textShadow="0.02em 0.01em 0.04px",n},mathmlBuilder(e,t){const r=xt(e.body,t),n=new gt.MathNode("mstyle",r);return n.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),n}});const Gt={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},Ut=e=>"textord"===e.type&&"@"===e.text;function Yt(e,t,r){const n=Gt[e];switch(n){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(n,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{const e={type:"atom",text:n,mode:"math",family:"rel"},o={type:"ordgroup",mode:"math",body:[r.callFunction("\\\\cdleft",[t[0]],[]),r.callFunction("\\Big",[e],[]),r.callFunction("\\\\cdright",[t[1]],[])]};return r.callFunction("\\\\cdparent",[o],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{const e={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[e],[])}default:return{type:"textord",text:" ",mode:"math"}}}je({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"cdlabel",mode:r.mode,side:n.slice(4),label:t[0]}},htmlBuilder(e,t){const r=t.havingStyle(t.style.sup()),n=Ve.wrapFragment(ht(e.label,r,t),t);return n.classes.push("cd-label-"+e.side),n.style.bottom=F(.8-n.depth),n.height=0,n.depth=0,n},mathmlBuilder(e,t){let r=new gt.MathNode("mrow",[vt(e.label,t)]);return r=new gt.MathNode("mpadded",[r]),r.setAttribute("width","0"),"left"===e.side&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new gt.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}}),je({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(e,t){let{parser:r}=e;return{type:"cdlabelparent",mode:r.mode,fragment:t[0]}},htmlBuilder(e,t){const r=Ve.wrapFragment(ht(e.fragment,t),t);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(e,t){return new gt.MathNode("mrow",[vt(e.fragment,t)])}}),je({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;const o=qt(t[0],"ordgroup").body;let s="";for(let e=0;e=1114111)throw new n("\\@char with invalid code point "+s);return a<=65535?i=String.fromCharCode(a):(a-=65536,i=String.fromCharCode(55296+(a>>10),56320+(1023&a))),{type:"textord",mode:r.mode,text:i}}});const Xt=(e,t)=>{const r=nt(e.body,t.withColor(e.color),!1);return Ve.makeFragment(r)},Wt=(e,t)=>{const r=xt(e.body,t.withColor(e.color)),n=new gt.MathNode("mstyle",r);return n.setAttribute("mathcolor",e.color),n};je({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(e,t){let{parser:r}=e;const n=qt(t[0],"color-token").color,o=t[1];return{type:"color",mode:r.mode,color:n,body:Ke(o)}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(e,t){let{parser:r,breakOnTokenText:n}=e;const o=qt(t[0],"color-token").color;r.gullet.macros.set("\\current@color",o);const s=r.parseExpression(!0,n);return{type:"color",mode:r.mode,color:o,body:s}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(e,t,r){let{parser:n}=e;const o="["===n.gullet.future().text?n.parseSizeGroup(!0):null,s=!n.settings.displayMode||!n.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:n.mode,newLine:s,size:o&&qt(o,"size").value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mspace"],[],t);return e.newLine&&(r.classes.push("newline"),e.size&&(r.style.marginTop=F(P(e.size,t)))),r},mathmlBuilder(e,t){const r=new gt.MathNode("mspace");return e.newLine&&(r.setAttribute("linebreak","newline"),e.size&&r.setAttribute("height",F(P(e.size,t)))),r}});const _t={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},jt=e=>{const t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new n("Expected a control sequence",e);return t},$t=(e,t,r,n)=>{let o=e.gullet.macros.get(r.text);null==o&&(r.noexpand=!0,o={tokens:[r],numArgs:0,unexpandable:!e.gullet.isExpandable(r.text)}),e.gullet.macros.set(t,o,n)};je({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t,funcName:r}=e;t.consumeSpaces();const o=t.fetch();if(_t[o.text])return"\\global"!==r&&"\\\\globallong"!==r||(o.text=_t[o.text]),qt(t.parseFunction(),"internal");throw new n("Invalid token after macro prefix",o)}}),je({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e,o=t.gullet.popToken();const s=o.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(s))throw new n("Expected a control sequence",o);let i,a=0;const l=[[]];for(;"{"!==t.gullet.future().text;)if(o=t.gullet.popToken(),"#"===o.text){if("{"===t.gullet.future().text){i=t.gullet.future(),l[a].push("{");break}if(o=t.gullet.popToken(),!/^[1-9]$/.test(o.text))throw new n('Invalid argument number "'+o.text+'"');if(parseInt(o.text)!==a+1)throw new n('Argument number "'+o.text+'" out of order');a++,l.push([])}else{if("EOF"===o.text)throw new n("Expected a macro definition");l[a].push(o.text)}let{tokens:h}=t.gullet.consumeArg();return i&&h.unshift(i),"\\edef"!==r&&"\\xdef"!==r||(h=t.gullet.expandTokens(h),h.reverse()),t.gullet.macros.set(s,{tokens:h,numArgs:a,delimiters:l},r===_t[r]),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken());t.gullet.consumeSpaces();const o=(e=>{let t=e.gullet.popToken();return"="===t.text&&(t=e.gullet.popToken()," "===t.text&&(t=e.gullet.popToken())),t})(t);return $t(t,n,o,"\\\\globallet"===r),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken()),o=t.gullet.popToken(),s=t.gullet.popToken();return $t(t,n,s,"\\\\globalfuture"===r),t.gullet.pushToken(s),t.gullet.pushToken(o),{type:"internal",mode:t.mode}}});const Zt=function(e,t,r){const n=N(oe.math[e]&&oe.math[e].replace||e,t,r);if(!n)throw new Error("Unsupported symbol "+e+" and font size "+t+".");return n},Kt=function(e,t,r,n){const o=r.havingBaseStyle(t),s=Ve.makeSpan(n.concat(o.sizingClasses(r)),[e],r),i=o.sizeMultiplier/r.sizeMultiplier;return s.height*=i,s.depth*=i,s.maxFontSize=o.sizeMultiplier,s},Jt=function(e,t,r){const n=t.havingBaseStyle(r),o=(1-t.sizeMultiplier/n.sizeMultiplier)*t.fontMetrics().axisHeight;e.classes.push("delimcenter"),e.style.top=F(o),e.height-=o,e.depth+=o},Qt=function(e,t,r,n,o,s){const i=function(e,t,r,n){return Ve.makeSymbol(e,"Size"+t+"-Regular",r,n)}(e,t,o,n),a=Kt(Ve.makeSpan(["delimsizing","size"+t],[i],n),w.TEXT,n,s);return r&&Jt(a,n,w.TEXT),a},er=function(e,t,r){let n;n="Size1-Regular"===t?"delim-size1":"delim-size4";return{type:"elem",elem:Ve.makeSpan(["delimsizinginner",n],[Ve.makeSpan([],[Ve.makeSymbol(e,t,r)])])}},tr=function(e,t,r){const n=T["Size4-Regular"][e.charCodeAt(0)]?T["Size4-Regular"][e.charCodeAt(0)][4]:T["Size1-Regular"][e.charCodeAt(0)][4],o=new J("inner",function(e,t){switch(e){case"\u239c":return"M291 0 H417 V"+t+" H291z M291 0 H417 V"+t+" H291z";case"\u2223":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145z";case"\u2225":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145zM367 0 H410 V"+t+" H367z M367 0 H410 V"+t+" H367z";case"\u239f":return"M457 0 H583 V"+t+" H457z M457 0 H583 V"+t+" H457z";case"\u23a2":return"M319 0 H403 V"+t+" H319z M319 0 H403 V"+t+" H319z";case"\u23a5":return"M263 0 H347 V"+t+" H263z M263 0 H347 V"+t+" H263z";case"\u23aa":return"M384 0 H504 V"+t+" H384z M384 0 H504 V"+t+" H384z";case"\u23d0":return"M312 0 H355 V"+t+" H312z M312 0 H355 V"+t+" H312z";case"\u2016":return"M257 0 H300 V"+t+" H257z M257 0 H300 V"+t+" H257zM478 0 H521 V"+t+" H478z M478 0 H521 V"+t+" H478z";default:return""}}(e,Math.round(1e3*t))),s=new K([o],{width:F(n),height:F(t),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+Math.round(1e3*t),preserveAspectRatio:"xMinYMin"}),i=Ve.makeSvgSpan([],[s],r);return i.height=t,i.style.height=F(t),i.style.width=F(n),{type:"elem",elem:i}},rr={type:"kern",size:-.008},nr=["|","\\lvert","\\rvert","\\vert"],or=["\\|","\\lVert","\\rVert","\\Vert"],sr=function(e,t,r,n,o,s){let i,a,h,c,m="",p=0;i=h=c=e,a=null;let u="Size1-Regular";"\\uparrow"===e?h=c="\u23d0":"\\Uparrow"===e?h=c="\u2016":"\\downarrow"===e?i=h="\u23d0":"\\Downarrow"===e?i=h="\u2016":"\\updownarrow"===e?(i="\\uparrow",h="\u23d0",c="\\downarrow"):"\\Updownarrow"===e?(i="\\Uparrow",h="\u2016",c="\\Downarrow"):l.contains(nr,e)?(h="\u2223",m="vert",p=333):l.contains(or,e)?(h="\u2225",m="doublevert",p=556):"["===e||"\\lbrack"===e?(i="\u23a1",h="\u23a2",c="\u23a3",u="Size4-Regular",m="lbrack",p=667):"]"===e||"\\rbrack"===e?(i="\u23a4",h="\u23a5",c="\u23a6",u="Size4-Regular",m="rbrack",p=667):"\\lfloor"===e||"\u230a"===e?(h=i="\u23a2",c="\u23a3",u="Size4-Regular",m="lfloor",p=667):"\\lceil"===e||"\u2308"===e?(i="\u23a1",h=c="\u23a2",u="Size4-Regular",m="lceil",p=667):"\\rfloor"===e||"\u230b"===e?(h=i="\u23a5",c="\u23a6",u="Size4-Regular",m="rfloor",p=667):"\\rceil"===e||"\u2309"===e?(i="\u23a4",h=c="\u23a5",u="Size4-Regular",m="rceil",p=667):"("===e||"\\lparen"===e?(i="\u239b",h="\u239c",c="\u239d",u="Size4-Regular",m="lparen",p=875):")"===e||"\\rparen"===e?(i="\u239e",h="\u239f",c="\u23a0",u="Size4-Regular",m="rparen",p=875):"\\{"===e||"\\lbrace"===e?(i="\u23a7",a="\u23a8",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\}"===e||"\\rbrace"===e?(i="\u23ab",a="\u23ac",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lgroup"===e||"\u27ee"===e?(i="\u23a7",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\rgroup"===e||"\u27ef"===e?(i="\u23ab",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lmoustache"===e||"\u23b0"===e?(i="\u23a7",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\rmoustache"!==e&&"\u23b1"!==e||(i="\u23ab",c="\u23a9",h="\u23aa",u="Size4-Regular");const d=Zt(i,u,o),g=d.height+d.depth,f=Zt(h,u,o),b=f.height+f.depth,y=Zt(c,u,o),x=y.height+y.depth;let v=0,k=1;if(null!==a){const e=Zt(a,u,o);v=e.height+e.depth,k=2}const S=g+x+v,M=S+Math.max(0,Math.ceil((t-S)/(k*b)))*k*b;let z=n.fontMetrics().axisHeight;r&&(z*=n.sizeMultiplier);const A=M/2-z,T=[];if(m.length>0){const e=M-g-x,t=Math.round(1e3*M),r=function(e,t){switch(e){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v1759 h347 v-84\nH403z M403 1759 V0 H319 V1759 v"+t+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v1759 H0 v84 H347z\nM347 1759 V0 H263 V1759 v"+t+" v1759 h84z";case"vert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z";case"doublevert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z\nM367 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M410 15 H367 v585 v"+t+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+t+" v1715 h263 v84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+t+" v1799 H0 v-84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v602 h84z\nM403 1759 V0 H319 V1759 v"+t+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v602 h84z\nM347 1759 V0 h-84 V1759 v"+t+" v602 h84z";case"lparen":return"M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1\nc-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349,\n-36,557 l0,"+(t+84)+"c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210,\n949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9\nc0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5,\n-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189\nl0,-"+(t+92)+"c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3,\n-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z";case"rparen":return"M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3,\n63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5\nc11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,"+(t+9)+"\nc-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664\nc-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11\nc0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17\nc242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558\nl0,-"+(t+144)+"c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7,\n-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z";default:throw new Error("Unknown stretchy delimiter.")}}(m,Math.round(1e3*e)),o=new J(m,r),s=(p/1e3).toFixed(3)+"em",i=(t/1e3).toFixed(3)+"em",a=new K([o],{width:s,height:i,viewBox:"0 0 "+p+" "+t}),l=Ve.makeSvgSpan([],[a],n);l.height=t/1e3,l.style.width=s,l.style.height=i,T.push({type:"elem",elem:l})}else{if(T.push(er(c,u,o)),T.push(rr),null===a){const e=M-g-x+.016;T.push(tr(h,e,n))}else{const e=(M-g-x-v)/2+.016;T.push(tr(h,e,n)),T.push(rr),T.push(er(a,u,o)),T.push(rr),T.push(tr(h,e,n))}T.push(rr),T.push(er(i,u,o))}const B=n.havingBaseStyle(w.TEXT),C=Ve.makeVList({positionType:"bottom",positionData:A,children:T},B);return Kt(Ve.makeSpan(["delimsizing","mult"],[C],B),w.TEXT,n,s)},ir=.08,ar=function(e,t,r,n,o){const s=function(e,t,r){t*=1e3;let n="";switch(e){case"sqrtMain":n=function(e,t){return"M95,"+(622+e+t)+"\nc-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14\nc0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54\nc44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10\ns173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429\nc69,-144,104.5,-217.7,106.5,-221\nl"+e/2.075+" -"+e+"\nc5.3,-9.3,12,-14,20,-14\nH400000v"+(40+e)+"H845.2724\ns-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7\nc-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z\nM"+(834+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize1":n=function(e,t){return"M263,"+(601+e+t)+"c0.7,0,18,39.7,52,119\nc34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120\nc340,-704.7,510.7,-1060.3,512,-1067\nl"+e/2.084+" -"+e+"\nc4.7,-7.3,11,-11,19,-11\nH40000v"+(40+e)+"H1012.3\ns-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232\nc-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1\ns-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26\nc-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize2":n=function(e,t){return"M983 "+(10+e+t)+"\nl"+e/3.13+" -"+e+"\nc4,-6.7,10,-10,18,-10 H400000v"+(40+e)+"\nH1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7\ns-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744\nc-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30\nc26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722\nc56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5\nc53.7,-170.3,84.5,-266.8,92.5,-289.5z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize3":n=function(e,t){return"M424,"+(2398+e+t)+"\nc-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514\nc0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20\ns-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121\ns209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081\nl"+e/4.223+" -"+e+"c4,-6.7,10,-10,18,-10 H400000\nv"+(40+e)+"H1014.6\ns-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185\nc-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2z M"+(1001+e)+" "+t+"\nh400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize4":n=function(e,t){return"M473,"+(2713+e+t)+"\nc339.3,-1799.3,509.3,-2700,510,-2702 l"+e/5.298+" -"+e+"\nc3.3,-7.3,9.3,-11,18,-11 H400000v"+(40+e)+"H1017.7\ns-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200\nc0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26\ns76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104,\n606zM"+(1001+e)+" "+t+"h400000v"+(40+e)+"H1017.7z"}(t,M);break;case"sqrtTall":n=function(e,t,r){return"M702 "+(e+t)+"H400000"+(40+e)+"\nH742v"+(r-54-t-e)+"l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1\nh-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170\nc-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667\n219 661 l218 661zM702 "+t+"H400000v"+(40+e)+"H742z"}(t,M,r)}return n}(e,n,r),i=new J(e,s),a=new K([i],{width:"400em",height:F(t),viewBox:"0 0 400000 "+r,preserveAspectRatio:"xMinYMin slice"});return Ve.makeSvgSpan(["hide-tail"],[a],o)},lr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","\\surd"],hr=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1"],cr=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],mr=[0,1.2,1.8,2.4,3],pr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],ur=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"stack"}],dr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],gr=function(e){if("small"===e.type)return"Main-Regular";if("large"===e.type)return"Size"+e.size+"-Regular";if("stack"===e.type)return"Size4-Regular";throw new Error("Add support for delim type '"+e.type+"' here.")},fr=function(e,t,r,n){for(let o=Math.min(2,3-n.style.size);ot)return r[o]}return r[r.length-1]},br=function(e,t,r,n,o,s){let i;"<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),i=l.contains(cr,e)?pr:l.contains(lr,e)?dr:ur;const a=fr(e,t,i,n);return"small"===a.type?function(e,t,r,n,o,s){const i=Ve.makeSymbol(e,"Main-Regular",o,n),a=Kt(i,t,n,s);return r&&Jt(a,n,t),a}(e,a.style,r,n,o,s):"large"===a.type?Qt(e,a.size,r,n,o,s):sr(e,t,r,n,o,s)};var yr={sqrtImage:function(e,t){const r=t.havingBaseSizing(),n=fr("\\surd",e*r.sizeMultiplier,dr,r);let o=r.sizeMultiplier;const s=Math.max(0,t.minRuleThickness-t.fontMetrics().sqrtRuleThickness);let i,a,l=0,h=0,c=0;return"small"===n.type?(c=1e3+1e3*s+80,e<1?o=1:e<1.4&&(o=.7),l=(1+s+ir)/o,h=(1+s)/o,i=ar("sqrtMain",l,c,s,t),i.style.minWidth="0.853em",a=.833/o):"large"===n.type?(c=1080*mr[n.size],h=(mr[n.size]+s)/o,l=(mr[n.size]+s+ir)/o,i=ar("sqrtSize"+n.size,l,c,s,t),i.style.minWidth="1.02em",a=1/o):(l=e+s+ir,h=e+s,c=Math.floor(1e3*e+s)+80,i=ar("sqrtTall",l,c,s,t),i.style.minWidth="0.742em",a=1.056),i.height=h,i.style.height=F(l),{span:i,advanceWidth:a,ruleWidth:(t.fontMetrics().sqrtRuleThickness+s)*o}},sizedDelim:function(e,t,r,o,s){if("<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),l.contains(lr,e)||l.contains(cr,e))return Qt(e,t,!1,r,o,s);if(l.contains(hr,e))return sr(e,mr[t],!1,r,o,s);throw new n("Illegal delimiter: '"+e+"'")},sizeToMaxHeight:mr,customSizedDelim:br,leftRightDelim:function(e,t,r,n,o,s){const i=n.fontMetrics().axisHeight*n.sizeMultiplier,a=5/n.fontMetrics().ptPerEm,l=Math.max(t-i,r+i),h=Math.max(l/500*901,2*l-a);return br(e,h,!0,n,o,s)}};const xr={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},wr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","<",">","\\langle","\u27e8","\\rangle","\u27e9","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function vr(e,t){const r=Rt(e);if(r&&l.contains(wr,r.text))return r;throw new n(r?"Invalid delimiter '"+r.text+"' after '"+t.funcName+"'":"Invalid delimiter type '"+e.type+"'",e)}function kr(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}je({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:(e,t)=>{const r=vr(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:xr[e.funcName].size,mclass:xr[e.funcName].mclass,delim:r.text}},htmlBuilder:(e,t)=>"."===e.delim?Ve.makeSpan([e.mclass]):yr.sizedDelim(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{const t=[];"."!==e.delim&&t.push(ft(e.delim,e.mode));const r=new gt.MathNode("mo",t);"mopen"===e.mclass||"mclose"===e.mclass?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");const n=F(yr.sizeToMaxHeight[e.size]);return r.setAttribute("minsize",n),r.setAttribute("maxsize",n),r}}),je({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=e.parser.gullet.macros.get("\\current@color");if(r&&"string"!=typeof r)throw new n("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:vr(t[0],e).text,color:r}}}),je({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e),n=e.parser;++n.leftrightDepth;const o=n.parseExpression(!1);--n.leftrightDepth,n.expect("\\right",!1);const s=qt(n.parseFunction(),"leftright-right");return{type:"leftright",mode:n.mode,body:o,left:r.text,right:s.delim,rightColor:s.color}},htmlBuilder:(e,t)=>{kr(e);const r=nt(e.body,t,!0,["mopen","mclose"]);let n,o,s=0,i=0,a=!1;for(let e=0;e{kr(e);const r=xt(e.body,t);if("."!==e.left){const t=new gt.MathNode("mo",[ft(e.left,e.mode)]);t.setAttribute("fence","true"),r.unshift(t)}if("."!==e.right){const t=new gt.MathNode("mo",[ft(e.right,e.mode)]);t.setAttribute("fence","true"),e.rightColor&&t.setAttribute("mathcolor",e.rightColor),r.push(t)}return bt(r)}}),je({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e);if(!e.parser.leftrightDepth)throw new n("\\middle without preceding \\left",r);return{type:"middle",mode:e.parser.mode,delim:r.text}},htmlBuilder:(e,t)=>{let r;if("."===e.delim)r=lt(t,[]);else{r=yr.sizedDelim(e.delim,1,t,e.mode,[]);const n={delim:e.delim,options:t};r.isMiddle=n}return r},mathmlBuilder:(e,t)=>{const r="\\vert"===e.delim||"|"===e.delim?ft("|","text"):ft(e.delim,e.mode),n=new gt.MathNode("mo",[r]);return n.setAttribute("fence","true"),n.setAttribute("lspace","0.05em"),n.setAttribute("rspace","0.05em"),n}});const Sr=(e,t)=>{const r=Ve.wrapFragment(ht(e.body,t),t),n=e.label.slice(1);let o,s=t.sizeMultiplier,i=0;const a=l.isCharacterBox(e.body);if("sout"===n)o=Ve.makeSpan(["stretchy","sout"]),o.height=t.fontMetrics().defaultRuleThickness/s,i=-.5*t.fontMetrics().xHeight;else if("phase"===n){const e=P({number:.6,unit:"pt"},t),n=P({number:.35,unit:"ex"},t);s/=t.havingBaseSizing().sizeMultiplier;const a=r.height+r.depth+e+n;r.style.paddingLeft=F(a/2+e);const l=Math.floor(1e3*a*s),c="M400000 "+(h=l)+" H0 L"+h/2+" 0 l65 45 L145 "+(h-80)+" H400000z",m=new K([new J("phase",c)],{width:"400em",height:F(l/1e3),viewBox:"0 0 400000 "+l,preserveAspectRatio:"xMinYMin slice"});o=Ve.makeSvgSpan(["hide-tail"],[m],t),o.style.height=F(a),i=r.depth+e+n}else{/cancel/.test(n)?a||r.classes.push("cancel-pad"):"angl"===n?r.classes.push("anglpad"):r.classes.push("boxpad");let s=0,l=0,h=0;/box/.test(n)?(h=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),s=t.fontMetrics().fboxsep+("colorbox"===n?0:h),l=s):"angl"===n?(h=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),s=4*h,l=Math.max(0,.25-r.depth)):(s=a?.2:0,l=s),o=Bt(r,n,s,l,t),/fbox|boxed|fcolorbox/.test(n)?(o.style.borderStyle="solid",o.style.borderWidth=F(h)):"angl"===n&&.049!==h&&(o.style.borderTopWidth=F(h),o.style.borderRightWidth=F(h)),i=r.depth+l,e.backgroundColor&&(o.style.backgroundColor=e.backgroundColor,e.borderColor&&(o.style.borderColor=e.borderColor))}var h;let c;if(e.backgroundColor)c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:i},{type:"elem",elem:r,shift:0}]},t);else{const e=/cancel|phase/.test(n)?["svg-align"]:[];c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:o,shift:i,wrapperClasses:e}]},t)}return/cancel/.test(n)&&(c.height=r.height,c.depth=r.depth),/cancel/.test(n)&&!a?Ve.makeSpan(["mord","cancel-lap"],[c],t):Ve.makeSpan(["mord"],[c],t)},Mr=(e,t)=>{let r=0;const n=new gt.MathNode(e.label.indexOf("colorbox")>-1?"mpadded":"menclose",[vt(e.body,t)]);switch(e.label){case"\\cancel":n.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":n.setAttribute("notation","downdiagonalstrike");break;case"\\phase":n.setAttribute("notation","phasorangle");break;case"\\sout":n.setAttribute("notation","horizontalstrike");break;case"\\fbox":n.setAttribute("notation","box");break;case"\\angl":n.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,n.setAttribute("width","+"+2*r+"pt"),n.setAttribute("height","+"+2*r+"pt"),n.setAttribute("lspace",r+"pt"),n.setAttribute("voffset",r+"pt"),"\\fcolorbox"===e.label){const r=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);n.setAttribute("style","border: "+r+"em solid "+String(e.borderColor))}break;case"\\xcancel":n.setAttribute("notation","updiagonalstrike downdiagonalstrike")}return e.backgroundColor&&n.setAttribute("mathbackground",e.backgroundColor),n};je({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=t[1];return{type:"enclose",mode:n.mode,label:o,backgroundColor:s,body:i}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=qt(t[1],"color-token").color,a=t[2];return{type:"enclose",mode:n.mode,label:o,backgroundColor:i,borderColor:s,body:a}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\fbox",body:t[0]}}}),je({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"enclose",mode:r.mode,label:n,body:o}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\angl",body:t[0]}}});const zr={};function Ar(e){let{type:t,names:r,props:n,handler:o,htmlBuilder:s,mathmlBuilder:i}=e;const a={type:t,numArgs:n.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:o};for(let e=0;e{if(!e.parser.settings.displayMode)throw new n("{"+e.envName+"} can be used only in display mode.")};function Rr(e){if(-1===e.indexOf("ed"))return-1===e.indexOf("*")}function Hr(e,t,r){let{hskipBeforeAndAfter:o,addJot:s,cols:i,arraystretch:a,colSeparationType:l,autoTag:h,singleRow:c,emptySingleRow:m,maxNumCols:p,leqno:u}=t;if(e.gullet.beginGroup(),c||e.gullet.macros.set("\\cr","\\\\\\relax"),!a){const t=e.gullet.expandMacroAsText("\\arraystretch");if(null==t)a=1;else if(a=parseFloat(t),!a||a<0)throw new n("Invalid \\arraystretch: "+t)}e.gullet.beginGroup();let d=[];const g=[d],f=[],b=[],y=null!=h?[]:void 0;function x(){h&&e.gullet.macros.set("\\@eqnsw","1",!0)}function w(){y&&(e.gullet.macros.get("\\df@tag")?(y.push(e.subparse([new Nr("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):y.push(Boolean(h)&&"1"===e.gullet.macros.get("\\@eqnsw")))}for(x(),b.push(qr(e));;){let t=e.parseExpression(!1,c?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup(),t={type:"ordgroup",mode:e.mode,body:t},r&&(t={type:"styling",mode:e.mode,style:r,body:[t]}),d.push(t);const o=e.fetch().text;if("&"===o){if(p&&d.length===p){if(c||l)throw new n("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else{if("\\end"===o){w(),1===d.length&&"styling"===t.type&&0===t.body[0].body.length&&(g.length>1||!m)&&g.pop(),b.length0&&(x+=.25),c.push({pos:x,isDashed:e[t]})}for(v(i[0]),r=0;r0&&(p+=y,le)))for(r=0;r=a)continue;(o>0||e.hskipBeforeAndAfter)&&(i=l.deflt(c.pregap,u),0!==i&&(z=Ve.makeSpan(["arraycolsep"],[]),z.style.width=F(i),M.push(z)));let d=[];for(r=0;r0){const e=Ve.makeLineSpan("hline",t,m),r=Ve.makeLineSpan("hdashline",t,m),n=[{type:"elem",elem:h,shift:0}];for(;c.length>0;){const t=c.pop(),o=t.pos-k;t.isDashed?n.push({type:"elem",elem:r,shift:o}):n.push({type:"elem",elem:e,shift:o})}h=Ve.makeVList({positionType:"individualShift",children:n},t)}if(0===T.length)return Ve.makeSpan(["mord"],[h],t);{let e=Ve.makeVList({positionType:"individualShift",children:T},t);return e=Ve.makeSpan(["tag"],[e],t),Ve.makeFragment([h,e])}},Lr={c:"center ",l:"left ",r:"right "},Dr=function(e,t){const r=[],n=new gt.MathNode("mtd",[],["mtr-glue"]),o=new gt.MathNode("mtd",[],["mml-eqn-num"]);for(let s=0;s0){const t=e.cols;let r="",n=!1,o=0,i=t.length;"separator"===t[0].type&&(a+="top ",o=1),"separator"===t[t.length-1].type&&(a+="bottom ",i-=1);for(let e=o;e0?"left ":"",a+=c[c.length-1].length>0?"right ":"";for(let e=1;e-1?"alignat":"align",s="split"===e.envName,i=Hr(e.parser,{cols:r,addJot:!0,autoTag:s?void 0:Rr(e.envName),emptySingleRow:!0,colSeparationType:o,maxNumCols:s?2:void 0,leqno:e.parser.settings.leqno},"display");let a,l=0;const h={type:"ordgroup",mode:e.mode,body:[]};if(t[0]&&"ordgroup"===t[0].type){let e="";for(let r=0;r0&&c&&(n=1),r[e]={type:"align",align:t,pregap:n,postgap:0}}return i.colSeparationType=c?"align":"alignat",i};Ar({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lcr".indexOf(t))return{type:"align",align:t};if("|"===t)return{type:"separator",separator:"|"};if(":"===t)return{type:"separator",separator:":"};throw new n("Unknown column alignment: "+t,e)})),o={cols:r,hskipBeforeAndAfter:!0,maxNumCols:r.length};return Hr(e.parser,o,Or(e.envName))},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){const t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")];let r="c";const o={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if("*"===e.envName.charAt(e.envName.length-1)){const t=e.parser;if(t.consumeSpaces(),"["===t.fetch().text){if(t.consume(),t.consumeSpaces(),r=t.fetch().text,-1==="lcr".indexOf(r))throw new n("Expected l or c or r",t.nextToken);t.consume(),t.consumeSpaces(),t.expect("]"),t.consume(),o.cols=[{type:"align",align:r}]}}const s=Hr(e.parser,o,Or(e.envName)),i=Math.max(0,...s.body.map((e=>e.length)));return s.cols=new Array(i).fill({type:"align",align:r}),t?{type:"leftright",mode:e.mode,body:[s],left:t[0],right:t[1],rightColor:void 0}:s},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:.5},"script");return t.colSeparationType="small",t},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lc".indexOf(t))return{type:"align",align:t};throw new n("Unknown column alignment: "+t,e)}));if(r.length>1)throw new n("{subarray} can contain only one column");let o={cols:r,hskipBeforeAndAfter:!1,arraystretch:.5};if(o=Hr(e.parser,o,"script"),o.body.length>0&&o.body[0].length>1)throw new n("{subarray} can contain only one column");return o},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},Or(e.envName));return{type:"leftright",mode:e.mode,body:[t],left:e.envName.indexOf("r")>-1?".":"\\{",right:e.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){l.contains(["gather","gather*"],e.envName)&&Ir(e);const t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Rr(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){Ir(e);const t={autoTag:Rr(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["CD"],props:{numArgs:0},handler(e){return Ir(e),function(e){const t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();const r=e.fetch().text;if("&"!==r&&"\\\\"!==r){if("\\end"===r){0===t[t.length-1].length&&t.pop();break}throw new n("Expected \\\\ or \\cr or \\end",e.nextToken)}e.consume()}let r=[];const o=[r];for(let a=0;a-1);else{if(!("<>AV".indexOf(o)>-1))throw new n('Expected one of "<>AV=|." after @',l[t]);for(let e=0;e<2;e++){let r=!0;for(let h=t+1;h{const r=e.font,n=t.withFont(r);return ht(e.body,n)},Gr=(e,t)=>{const r=e.font,n=t.withFont(r);return vt(e.body,n)},Ur={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};je({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=Ze(t[0]);let s=n;return s in Ur&&(s=Ur[s]),{type:"font",mode:r.mode,font:s.slice(1),body:o}},htmlBuilder:Fr,mathmlBuilder:Gr}),je({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:(e,t)=>{let{parser:r}=e;const n=t[0],o=l.isCharacterBox(n);return{type:"mclass",mode:r.mode,mclass:Ft(n),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:n}],isCharacterBox:o}}}),je({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n,breakOnTokenText:o}=e;const{mode:s}=r,i=r.parseExpression(!0,o);return{type:"font",mode:s,font:"math"+n.slice(1),body:{type:"ordgroup",mode:r.mode,body:i}}},htmlBuilder:Fr,mathmlBuilder:Gr});const Yr=(e,t)=>{let r=t;return"display"===e?r=r.id>=w.SCRIPT.id?r.text():w.DISPLAY:"text"===e&&r.size===w.DISPLAY.size?r=w.TEXT:"script"===e?r=w.SCRIPT:"scriptscript"===e&&(r=w.SCRIPTSCRIPT),r},Xr=(e,t)=>{const r=Yr(e.size,t.style),n=r.fracNum(),o=r.fracDen();let s;s=t.havingStyle(n);const i=ht(e.numer,s,t);if(e.continued){const e=8.5/t.fontMetrics().ptPerEm,r=3.5/t.fontMetrics().ptPerEm;i.height=i.height0?3*c:7*c,u=t.fontMetrics().denom1):(h>0?(m=t.fontMetrics().num2,p=c):(m=t.fontMetrics().num3,p=3*c),u=t.fontMetrics().denom2),l){const e=t.fontMetrics().axisHeight;m-i.depth-(e+.5*h){let r=new gt.MathNode("mfrac",[vt(e.numer,t),vt(e.denom,t)]);if(e.hasBarLine){if(e.barSize){const n=P(e.barSize,t);r.setAttribute("linethickness",F(n))}}else r.setAttribute("linethickness","0px");const n=Yr(e.size,t.style);if(n.size!==t.style.size){r=new gt.MathNode("mstyle",[r]);const e=n.size===w.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",e),r.setAttribute("scriptlevel","0")}if(null!=e.leftDelim||null!=e.rightDelim){const t=[];if(null!=e.leftDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.leftDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}if(t.push(r),null!=e.rightDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.rightDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}return bt(t)}return r};je({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];let i,a=null,l=null,h="auto";switch(n){case"\\dfrac":case"\\frac":case"\\tfrac":i=!0;break;case"\\\\atopfrac":i=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=!1,a="(",l=")";break;case"\\\\bracefrac":i=!1,a="\\{",l="\\}";break;case"\\\\brackfrac":i=!1,a="[",l="]";break;default:throw new Error("Unrecognized genfrac command")}switch(n){case"\\dfrac":case"\\dbinom":h="display";break;case"\\tfrac":case"\\tbinom":h="text"}return{type:"genfrac",mode:r.mode,continued:!1,numer:o,denom:s,hasBarLine:i,leftDelim:a,rightDelim:l,size:h,barSize:null}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:o,denom:s,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}}}),je({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(e){let t,{parser:r,funcName:n,token:o}=e;switch(n){case"\\over":t="\\frac";break;case"\\choose":t="\\binom";break;case"\\atop":t="\\\\atopfrac";break;case"\\brace":t="\\\\bracefrac";break;case"\\brack":t="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:r.mode,replaceWith:t,token:o}}});const _r=["display","text","script","scriptscript"],jr=function(e){let t=null;return e.length>0&&(t=e,t="."===t?null:t),t};je({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(e,t){let{parser:r}=e;const n=t[4],o=t[5],s=Ze(t[0]),i="atom"===s.type&&"open"===s.family?jr(s.text):null,a=Ze(t[1]),l="atom"===a.type&&"close"===a.family?jr(a.text):null,h=qt(t[2],"size");let c,m=null;h.isBlank?c=!0:(m=h.value,c=m.number>0);let p="auto",u=t[3];if("ordgroup"===u.type){if(u.body.length>0){const e=qt(u.body[0],"textord");p=_r[Number(e.text)]}}else u=qt(u,"textord"),p=_r[Number(u.text)];return{type:"genfrac",mode:r.mode,numer:n,denom:o,continued:!1,hasBarLine:c,barSize:m,leftDelim:i,rightDelim:l,size:p}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(e,t){let{parser:r,funcName:n,token:o}=e;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:qt(t[0],"size").value,token:o}}}),je({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=function(e){if(!e)throw new Error("Expected non-null, but got "+String(e));return e}(qt(t[1],"infix").size),i=t[2],a=s.number>0;return{type:"genfrac",mode:r.mode,numer:o,denom:i,continued:!1,hasBarLine:a,barSize:s,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:Xr,mathmlBuilder:Wr});const $r=(e,t)=>{const r=t.style;let n,o;"supsub"===e.type?(n=e.sup?ht(e.sup,t.havingStyle(r.sup()),t):ht(e.sub,t.havingStyle(r.sub()),t),o=qt(e.base,"horizBrace")):o=qt(e,"horizBrace");const s=ht(o.base,t.havingBaseStyle(w.DISPLAY)),i=Nt(o,t);let a;if(o.isOver?(a=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:.1},{type:"elem",elem:i}]},t),a.children[0].children[0].children[1].classes.push("svg-align")):(a=Ve.makeVList({positionType:"bottom",positionData:s.depth+.1+i.height,children:[{type:"elem",elem:i},{type:"kern",size:.1},{type:"elem",elem:s}]},t),a.children[0].children[0].children[0].classes.push("svg-align")),n){const e=Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t);a=o.isOver?Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:e},{type:"kern",size:.2},{type:"elem",elem:n}]},t):Ve.makeVList({positionType:"bottom",positionData:e.depth+.2+n.height+n.depth,children:[{type:"elem",elem:n},{type:"kern",size:.2},{type:"elem",elem:e}]},t)}return Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t)};je({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"horizBrace",mode:r.mode,label:n,isOver:/^\\over/.test(n),base:t[0]}},htmlBuilder:$r,mathmlBuilder:(e,t)=>{const r=Ct(e.label);return new gt.MathNode(e.isOver?"mover":"munder",[vt(e.base,t),r])}}),je({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[1],o=qt(t[0],"url").url;return r.settings.isTrusted({command:"\\href",url:o})?{type:"href",mode:r.mode,href:o,body:Ke(n)}:r.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{const r=nt(e.body,t,!1);return Ve.makeAnchor(e.href,[],r,t)},mathmlBuilder:(e,t)=>{let r=wt(e.body,t);return r instanceof ut||(r=new ut("mrow",[r])),r.setAttribute("href",e.href),r}}),je({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=qt(t[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:n}))return r.formatUnsupportedCmd("\\url");const o=[];for(let e=0;e{let{parser:r,funcName:o,token:s}=e;const i=qt(t[0],"raw").string,a=t[1];let l;r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");const h={};switch(o){case"\\htmlClass":h.class=i,l={command:"\\htmlClass",class:i};break;case"\\htmlId":h.id=i,l={command:"\\htmlId",id:i};break;case"\\htmlStyle":h.style=i,l={command:"\\htmlStyle",style:i};break;case"\\htmlData":{const e=i.split(",");for(let t=0;t{const r=nt(e.body,t,!1),n=["enclosing"];e.attributes.class&&n.push(...e.attributes.class.trim().split(/\s+/));const o=Ve.makeSpan(n,r,t);for(const t in e.attributes)"class"!==t&&e.attributes.hasOwnProperty(t)&&o.setAttribute(t,e.attributes[t]);return o},mathmlBuilder:(e,t)=>wt(e.body,t)}),je({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"htmlmathml",mode:r.mode,html:Ke(t[0]),mathml:Ke(t[1])}},htmlBuilder:(e,t)=>{const r=nt(e.html,t,!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>wt(e.mathml,t)});const Zr=function(e){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(e))return{number:+e,unit:"bp"};{const t=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(e);if(!t)throw new n("Invalid size: '"+e+"' in \\includegraphics");const r={number:+(t[1]+t[2]),unit:t[3]};if(!V(r))throw new n("Invalid unit: '"+r.unit+"' in \\includegraphics.");return r}};je({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:(e,t,r)=>{let{parser:o}=e,s={number:0,unit:"em"},i={number:.9,unit:"em"},a={number:0,unit:"em"},l="";if(r[0]){const e=qt(r[0],"raw").string.split(",");for(let t=0;t{const r=P(e.height,t);let n=0;e.totalheight.number>0&&(n=P(e.totalheight,t)-r);let o=0;e.width.number>0&&(o=P(e.width,t));const s={height:F(r+n)};o>0&&(s.width=F(o)),n>0&&(s.verticalAlign=F(-n));const i=new j(e.src,e.alt,s);return i.height=r,i.depth=n,i},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mglyph",[]);r.setAttribute("alt",e.alt);const n=P(e.height,t);let o=0;if(e.totalheight.number>0&&(o=P(e.totalheight,t)-n,r.setAttribute("valign",F(-o))),r.setAttribute("height",F(n+o)),e.width.number>0){const n=P(e.width,t);r.setAttribute("width",F(n))}return r.setAttribute("src",e.src),r}}),je({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=qt(t[0],"size");if(r.settings.strict){const e="m"===n[1],t="mu"===o.value.unit;e?(t||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" supports only mu units, not "+o.value.unit+" units"),"math"!==r.mode&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" works only in math mode")):t&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:o.value}},htmlBuilder(e,t){return Ve.makeGlue(e.dimension,t)},mathmlBuilder(e,t){const r=P(e.dimension,t);return new gt.SpaceNode(r)}}),je({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"lap",mode:r.mode,alignment:n.slice(5),body:o}},htmlBuilder:(e,t)=>{let r;"clap"===e.alignment?(r=Ve.makeSpan([],[ht(e.body,t)]),r=Ve.makeSpan(["inner"],[r],t)):r=Ve.makeSpan(["inner"],[ht(e.body,t)]);const n=Ve.makeSpan(["fix"],[]);let o=Ve.makeSpan([e.alignment],[r,n],t);const s=Ve.makeSpan(["strut"]);return s.style.height=F(o.height+o.depth),o.depth&&(s.style.verticalAlign=F(-o.depth)),o.children.unshift(s),o=Ve.makeSpan(["thinbox"],[o],t),Ve.makeSpan(["mord","vbox"],[o],t)},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);if("rlap"!==e.alignment){const t="llap"===e.alignment?"-1":"-0.5";r.setAttribute("lspace",t+"width")}return r.setAttribute("width","0px"),r}}),je({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){let{funcName:r,parser:n}=e;const o=n.mode;n.switchMode("math");const s="\\("===r?"\\)":"$",i=n.parseExpression(!1,s);return n.expect(s),n.switchMode(o),{type:"styling",mode:n.mode,style:"text",body:i}}}),je({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){throw new n("Mismatched "+e.funcName)}});const Kr=(e,t)=>{switch(t.style.size){case w.DISPLAY.size:return e.display;case w.TEXT.size:return e.text;case w.SCRIPT.size:return e.script;case w.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};je({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"mathchoice",mode:r.mode,display:Ke(t[0]),text:Ke(t[1]),script:Ke(t[2]),scriptscript:Ke(t[3])}},htmlBuilder:(e,t)=>{const r=Kr(e,t),n=nt(r,t,!1);return Ve.makeFragment(n)},mathmlBuilder:(e,t)=>{const r=Kr(e,t);return wt(r,t)}});const Jr=(e,t,r,n,o,s,i)=>{e=Ve.makeSpan([],[e]);const a=r&&l.isCharacterBox(r);let h,c,m;if(t){const e=ht(t,n.havingStyle(o.sup()),n);c={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing1,n.fontMetrics().bigOpSpacing3-e.depth)}}if(r){const e=ht(r,n.havingStyle(o.sub()),n);h={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing2,n.fontMetrics().bigOpSpacing4-e.height)}}if(c&&h){const t=n.fontMetrics().bigOpSpacing5+h.elem.height+h.elem.depth+h.kern+e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}else if(h){const t=e.height-i;m=Ve.makeVList({positionType:"top",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e}]},n)}else{if(!c)return e;{const t=e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}}const p=[m];if(h&&0!==s&&!a){const e=Ve.makeSpan(["mspace"],[],n);e.style.marginRight=F(s),p.unshift(e)}return Ve.makeSpan(["mop","op-limits"],p,n)},Qr=["\\smallint"],en=(e,t)=>{let r,n,o,s=!1;"supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"op"),s=!0):o=qt(e,"op");const i=t.style;let a,h=!1;if(i.size===w.DISPLAY.size&&o.symbol&&!l.contains(Qr,o.name)&&(h=!0),o.symbol){const e=h?"Size2-Regular":"Size1-Regular";let r="";if("\\oiint"!==o.name&&"\\oiiint"!==o.name||(r=o.name.slice(1),o.name="oiint"===r?"\\iint":"\\iiint"),a=Ve.makeSymbol(o.name,e,"math",t,["mop","op-symbol",h?"large-op":"small-op"]),r.length>0){const e=a.italic,n=Ve.staticSvg(r+"Size"+(h?"2":"1"),t);a=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:a,shift:0},{type:"elem",elem:n,shift:h?.08:0}]},t),o.name="\\"+r,a.classes.unshift("mop"),a.italic=e}}else if(o.body){const e=nt(o.body,t,!0);1===e.length&&e[0]instanceof Z?(a=e[0],a.classes[0]="mop"):a=Ve.makeSpan(["mop"],e,t)}else{const e=[];for(let r=1;r{let r;if(e.symbol)r=new ut("mo",[ft(e.name,e.mode)]),l.contains(Qr,e.name)&&r.setAttribute("largeop","false");else if(e.body)r=new ut("mo",xt(e.body,t));else{r=new ut("mi",[new dt(e.name.slice(1))]);const t=new ut("mo",[ft("\u2061","text")]);r=e.parentIsSupSub?new ut("mrow",[r,t]):pt([r,t])}return r},rn={"\u220f":"\\prod","\u2210":"\\coprod","\u2211":"\\sum","\u22c0":"\\bigwedge","\u22c1":"\\bigvee","\u22c2":"\\bigcap","\u22c3":"\\bigcup","\u2a00":"\\bigodot","\u2a01":"\\bigoplus","\u2a02":"\\bigotimes","\u2a04":"\\biguplus","\u2a06":"\\bigsqcup"};je({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","\u220f","\u2210","\u2211","\u22c0","\u22c1","\u22c2","\u22c3","\u2a00","\u2a01","\u2a02","\u2a04","\u2a06"],props:{numArgs:0},handler:(e,t)=>{let{parser:r,funcName:n}=e,o=n;return 1===o.length&&(o=rn[o]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:o}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:Ke(n)}},htmlBuilder:en,mathmlBuilder:tn});const nn={"\u222b":"\\int","\u222c":"\\iint","\u222d":"\\iiint","\u222e":"\\oint","\u222f":"\\oiint","\u2230":"\\oiiint"};je({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","\u222b","\u222c","\u222d","\u222e","\u222f","\u2230"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e,n=r;return 1===n.length&&(n=nn[n]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:en,mathmlBuilder:tn});const on=(e,t)=>{let r,n,o,s,i=!1;if("supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"operatorname"),i=!0):o=qt(e,"operatorname"),o.body.length>0){const e=o.body.map((e=>{const t=e.text;return"string"==typeof t?{type:"textord",mode:e.mode,text:t}:e})),r=nt(e,t.withFont("mathrm"),!0);for(let e=0;e{let{parser:r,funcName:n}=e;const o=t[0];return{type:"operatorname",mode:r.mode,body:Ke(o),alwaysHandleSupSub:"\\operatornamewithlimits"===n,limits:!1,parentIsSupSub:!1}},htmlBuilder:on,mathmlBuilder:(e,t)=>{let r=xt(e.body,t.withFont("mathrm")),n=!0;for(let e=0;ee.toText())).join("");r=[new gt.TextNode(e)]}const o=new gt.MathNode("mi",r);o.setAttribute("mathvariant","normal");const s=new gt.MathNode("mo",[ft("\u2061","text")]);return e.parentIsSupSub?new gt.MathNode("mrow",[o,s]):gt.newDocumentFragment([o,s])}}),Br("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@"),$e({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?Ve.makeFragment(nt(e.body,t,!1)):Ve.makeSpan(["mord"],nt(e.body,t,!0),t)},mathmlBuilder(e,t){return wt(e.body,t,!0)}}),je({type:"overline",names:["\\overline"],props:{numArgs:1},handler(e,t){let{parser:r}=e;const n=t[0];return{type:"overline",mode:r.mode,body:n}},htmlBuilder(e,t){const r=ht(e.body,t.havingCrampedStyle()),n=Ve.makeLineSpan("overline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*o},{type:"elem",elem:n},{type:"kern",size:o}]},t);return Ve.makeSpan(["mord","overline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("mover",[vt(e.body,t),r]);return n.setAttribute("accent","true"),n}}),je({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"phantom",mode:r.mode,body:Ke(n)}},htmlBuilder:(e,t)=>{const r=nt(e.body,t.withPhantom(),!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>{const r=xt(e.body,t);return new gt.MathNode("mphantom",r)}}),je({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"hphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{let r=Ve.makeSpan([],[ht(e.body,t.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(let e=0;e{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("height","0px"),o.setAttribute("depth","0px"),o}}),je({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"vphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{const r=Ve.makeSpan(["inner"],[ht(e.body,t.withPhantom())]),n=Ve.makeSpan(["fix"],[]);return Ve.makeSpan(["mord","rlap"],[r,n],t)},mathmlBuilder:(e,t)=>{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("width","0px"),o}}),je({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;const n=qt(t[0],"size").value,o=t[1];return{type:"raisebox",mode:r.mode,dy:n,body:o}},htmlBuilder(e,t){const r=ht(e.body,t),n=P(e.dy,t);return Ve.makeVList({positionType:"shift",positionData:-n,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){const r=new gt.MathNode("mpadded",[vt(e.body,t)]),n=e.dy.number+e.dy.unit;return r.setAttribute("voffset",n),r}}),je({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t}=e;return{type:"internal",mode:t.mode}}}),je({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,argTypes:["size","size","size"]},handler(e,t,r){let{parser:n}=e;const o=r[0],s=qt(t[0],"size"),i=qt(t[1],"size");return{type:"rule",mode:n.mode,shift:o&&qt(o,"size").value,width:s.value,height:i.value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mord","rule"],[],t),n=P(e.width,t),o=P(e.height,t),s=e.shift?P(e.shift,t):0;return r.style.borderRightWidth=F(n),r.style.borderTopWidth=F(o),r.style.bottom=F(s),r.width=n,r.height=o+s,r.depth=-s,r.maxFontSize=1.125*o*t.sizeMultiplier,r},mathmlBuilder(e,t){const r=P(e.width,t),n=P(e.height,t),o=e.shift?P(e.shift,t):0,s=t.color&&t.getColor()||"black",i=new gt.MathNode("mspace");i.setAttribute("mathbackground",s),i.setAttribute("width",F(r)),i.setAttribute("height",F(n));const a=new gt.MathNode("mpadded",[i]);return o>=0?a.setAttribute("height",F(o)):(a.setAttribute("height",F(o)),a.setAttribute("depth",F(-o))),a.setAttribute("voffset",F(o)),a}});const an=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"];je({type:"sizing",names:an,props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!1,r);return{type:"sizing",mode:o.mode,size:an.indexOf(n)+1,body:s}},htmlBuilder:(e,t)=>{const r=t.havingSize(e.size);return sn(e.body,r,t)},mathmlBuilder:(e,t)=>{const r=t.havingSize(e.size),n=xt(e.body,r),o=new gt.MathNode("mstyle",n);return o.setAttribute("mathsize",F(r.sizeMultiplier)),o}}),je({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:(e,t,r)=>{let{parser:n}=e,o=!1,s=!1;const i=r[0]&&qt(r[0],"ordgroup");if(i){let e="";for(let t=0;t{const r=Ve.makeSpan([],[ht(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return r;if(e.smashHeight&&(r.height=0,r.children))for(let e=0;e{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);return e.smashHeight&&r.setAttribute("height","0px"),e.smashDepth&&r.setAttribute("depth","0px"),r}}),je({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n}=e;const o=r[0],s=t[0];return{type:"sqrt",mode:n.mode,body:s,index:o}},htmlBuilder(e,t){let r=ht(e.body,t.havingCrampedStyle());0===r.height&&(r.height=t.fontMetrics().xHeight),r=Ve.wrapFragment(r,t);const n=t.fontMetrics().defaultRuleThickness;let o=n;t.style.idr.height+r.depth+s&&(s=(s+c-r.height-r.depth)/2);const m=a.height-r.height-s-l;r.style.paddingLeft=F(h);const p=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+m)},{type:"elem",elem:a},{type:"kern",size:l}]},t);if(e.index){const r=t.havingStyle(w.SCRIPTSCRIPT),n=ht(e.index,r,t),o=.6*(p.height-p.depth),s=Ve.makeVList({positionType:"shift",positionData:-o,children:[{type:"elem",elem:n}]},t),i=Ve.makeSpan(["root"],[s]);return Ve.makeSpan(["mord","sqrt"],[i,p],t)}return Ve.makeSpan(["mord","sqrt"],[p],t)},mathmlBuilder(e,t){const{body:r,index:n}=e;return n?new gt.MathNode("mroot",[vt(r,t),vt(n,t)]):new gt.MathNode("msqrt",[vt(r,t)])}});const ln={display:w.DISPLAY,text:w.TEXT,script:w.SCRIPT,scriptscript:w.SCRIPTSCRIPT};je({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e,t){let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!0,r),i=n.slice(1,n.length-5);return{type:"styling",mode:o.mode,style:i,body:s}},htmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r).withFont("");return sn(e.body,n,t)},mathmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r),o=xt(e.body,n),s=new gt.MathNode("mstyle",o),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]}[e.style];return s.setAttribute("scriptlevel",i[0]),s.setAttribute("displaystyle",i[1]),s}});$e({type:"supsub",htmlBuilder(e,t){const r=function(e,t){const r=e.base;if(r)return"op"===r.type?r.limits&&(t.style.size===w.DISPLAY.size||r.alwaysHandleSupSub)?en:null:"operatorname"===r.type?r.alwaysHandleSupSub&&(t.style.size===w.DISPLAY.size||r.limits)?on:null:"accent"===r.type?l.isCharacterBox(r.base)?Ht:null:"horizBrace"===r.type&&!e.sub===r.isOver?$r:null;return null}(e,t);if(r)return r(e,t);const{base:n,sup:o,sub:s}=e,i=ht(n,t);let a,h;const c=t.fontMetrics();let m=0,p=0;const u=n&&l.isCharacterBox(n);if(o){const e=t.havingStyle(t.style.sup());a=ht(o,e,t),u||(m=i.height-e.fontMetrics().supDrop*e.sizeMultiplier/t.sizeMultiplier)}if(s){const e=t.havingStyle(t.style.sub());h=ht(s,e,t),u||(p=i.depth+e.fontMetrics().subDrop*e.sizeMultiplier/t.sizeMultiplier)}let d;d=t.style===w.DISPLAY?c.sup1:t.style.cramped?c.sup3:c.sup2;const g=t.sizeMultiplier,f=F(.5/c.ptPerEm/g);let b,y=null;if(h){const t=e.base&&"op"===e.base.type&&e.base.name&&("\\oiint"===e.base.name||"\\oiiint"===e.base.name);(i instanceof Z||t)&&(y=F(-i.italic))}if(a&&h){m=Math.max(m,d,a.depth+.25*c.xHeight),p=Math.max(p,c.sub2);const e=4*c.defaultRuleThickness;if(m-a.depth-(h.height-p)0&&(m+=t,p-=t)}const r=[{type:"elem",elem:h,shift:p,marginRight:f,marginLeft:y},{type:"elem",elem:a,shift:-m,marginRight:f}];b=Ve.makeVList({positionType:"individualShift",children:r},t)}else if(h){p=Math.max(p,c.sub1,h.height-.8*c.xHeight);const e=[{type:"elem",elem:h,marginLeft:y,marginRight:f}];b=Ve.makeVList({positionType:"shift",positionData:p,children:e},t)}else{if(!a)throw new Error("supsub must have either sup or sub.");m=Math.max(m,d,a.depth+.25*c.xHeight),b=Ve.makeVList({positionType:"shift",positionData:-m,children:[{type:"elem",elem:a,marginRight:f}]},t)}const x=at(i,"right")||"mord";return Ve.makeSpan([x],[i,Ve.makeSpan(["msupsub"],[b])],t)},mathmlBuilder(e,t){let r,n,o=!1;e.base&&"horizBrace"===e.base.type&&(n=!!e.sup,n===e.base.isOver&&(o=!0,r=e.base.isOver)),!e.base||"op"!==e.base.type&&"operatorname"!==e.base.type||(e.base.parentIsSupSub=!0);const s=[vt(e.base,t)];let i;if(e.sub&&s.push(vt(e.sub,t)),e.sup&&s.push(vt(e.sup,t)),o)i=r?"mover":"munder";else if(e.sub)if(e.sup){const r=e.base;i=r&&"op"===r.type&&r.limits&&t.style===w.DISPLAY||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(t.style===w.DISPLAY||r.limits)?"munderover":"msubsup"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"munder":"msub"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"mover":"msup"}return new gt.MathNode(i,s)}}),$e({type:"atom",htmlBuilder(e,t){return Ve.mathsym(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[ft(e.text,e.mode)]);if("bin"===e.family){const n=yt(e,t);"bold-italic"===n&&r.setAttribute("mathvariant",n)}else"punct"===e.family?r.setAttribute("separator","true"):"open"!==e.family&&"close"!==e.family||r.setAttribute("stretchy","false");return r}});const hn={mi:"italic",mn:"normal",mtext:"normal"};$e({type:"mathord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"mathord")},mathmlBuilder(e,t){const r=new gt.MathNode("mi",[ft(e.text,e.mode,t)]),n=yt(e,t)||"italic";return n!==hn[r.type]&&r.setAttribute("mathvariant",n),r}}),$e({type:"textord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"textord")},mathmlBuilder(e,t){const r=ft(e.text,e.mode,t),n=yt(e,t)||"normal";let o;return o="text"===e.mode?new gt.MathNode("mtext",[r]):/[0-9]/.test(e.text)?new gt.MathNode("mn",[r]):"\\prime"===e.text?new gt.MathNode("mo",[r]):new gt.MathNode("mi",[r]),n!==hn[o.type]&&o.setAttribute("mathvariant",n),o}});const cn={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},mn={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};$e({type:"spacing",htmlBuilder(e,t){if(mn.hasOwnProperty(e.text)){const r=mn[e.text].className||"";if("text"===e.mode){const n=Ve.makeOrd(e,t,"textord");return n.classes.push(r),n}return Ve.makeSpan(["mspace",r],[Ve.mathsym(e.text,e.mode,t)],t)}if(cn.hasOwnProperty(e.text))return Ve.makeSpan(["mspace",cn[e.text]],[],t);throw new n('Unknown type of space "'+e.text+'"')},mathmlBuilder(e,t){let r;if(!mn.hasOwnProperty(e.text)){if(cn.hasOwnProperty(e.text))return new gt.MathNode("mspace");throw new n('Unknown type of space "'+e.text+'"')}return r=new gt.MathNode("mtext",[new gt.TextNode("\xa0")]),r}});const pn=()=>{const e=new gt.MathNode("mtd",[]);return e.setAttribute("width","50%"),e};$e({type:"tag",mathmlBuilder(e,t){const r=new gt.MathNode("mtable",[new gt.MathNode("mtr",[pn(),new gt.MathNode("mtd",[wt(e.body,t)]),pn(),new gt.MathNode("mtd",[wt(e.tag,t)])])]);return r.setAttribute("width","100%"),r}});const un={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},dn={"\\textbf":"textbf","\\textmd":"textmd"},gn={"\\textit":"textit","\\textup":"textup"},fn=(e,t)=>{const r=e.font;return r?un[r]?t.withTextFontFamily(un[r]):dn[r]?t.withTextFontWeight(dn[r]):"\\emph"===r?"textit"===t.fontShape?t.withTextFontShape("textup"):t.withTextFontShape("textit"):t.withTextFontShape(gn[r]):t};je({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup","\\emph"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"text",mode:r.mode,body:Ke(o),font:n}},htmlBuilder(e,t){const r=fn(e,t),n=nt(e.body,r,!0);return Ve.makeSpan(["mord","text"],n,r)},mathmlBuilder(e,t){const r=fn(e,t);return wt(e.body,r)}}),je({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"underline",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=Ve.makeLineSpan("underline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:o},{type:"elem",elem:n},{type:"kern",size:3*o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","underline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("munder",[vt(e.body,t),r]);return n.setAttribute("accentunder","true"),n}}),je({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"vcenter",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=t.fontMetrics().axisHeight,o=.5*(r.height-n-(r.depth+n));return Ve.makeVList({positionType:"shift",positionData:o,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){return new gt.MathNode("mpadded",[vt(e.body,t)],["vcenter"])}}),je({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(e,t,r){throw new n("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){const r=bn(e),n=[],o=t.havingStyle(t.style.text());for(let t=0;te.body.replace(/ /g,e.star?"\u2423":"\xa0");var yn=Xe;const xn="[ \r\n\t]",wn="(\\\\[a-zA-Z@]+)"+xn+"*",vn="[\u0300-\u036f]",kn=new RegExp(vn+"+$"),Sn="("+xn+"+)|\\\\(\n|[ \r\t]+\n?)[ \r\t]*|([!-\\[\\]-\u2027\u202a-\ud7ff\uf900-\uffff]"+vn+"*|[\ud800-\udbff][\udc00-\udfff]"+vn+"*|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5|"+wn+"|\\\\[^\ud800-\udfff])";class Mn{constructor(e,t){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=e,this.settings=t,this.tokenRegex=new RegExp(Sn,"g"),this.catcodes={"%":14,"~":13}}setCatcode(e,t){this.catcodes[e]=t}lex(){const e=this.input,t=this.tokenRegex.lastIndex;if(t===e.length)return new Nr("EOF",new Cr(this,t,t));const r=this.tokenRegex.exec(e);if(null===r||r.index!==t)throw new n("Unexpected character: '"+e[t]+"'",new Nr(e[t],new Cr(this,t,t+1)));const o=r[6]||r[3]||(r[2]?"\\ ":" ");if(14===this.catcodes[o]){const t=e.indexOf("\n",this.tokenRegex.lastIndex);return-1===t?(this.tokenRegex.lastIndex=e.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=t+1,this.lex()}return new Nr(o,new Cr(this,t,this.tokenRegex.lastIndex))}}class zn{constructor(e,t){void 0===e&&(e={}),void 0===t&&(t={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=t,this.builtins=e,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(0===this.undefStack.length)throw new n("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");const e=this.undefStack.pop();for(const t in e)e.hasOwnProperty(t)&&(null==e[t]?delete this.current[t]:this.current[t]=e[t])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(e){return this.current.hasOwnProperty(e)||this.builtins.hasOwnProperty(e)}get(e){return this.current.hasOwnProperty(e)?this.current[e]:this.builtins[e]}set(e,t,r){if(void 0===r&&(r=!1),r){for(let t=0;t0&&(this.undefStack[this.undefStack.length-1][e]=t)}else{const t=this.undefStack[this.undefStack.length-1];t&&!t.hasOwnProperty(e)&&(t[e]=this.current[e])}null==t?delete this.current[e]:this.current[e]=t}}var An=Tr;Br("\\noexpand",(function(e){const t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}})),Br("\\expandafter",(function(e){const t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}})),Br("\\@firstoftwo",(function(e){return{tokens:e.consumeArgs(2)[0],numArgs:0}})),Br("\\@secondoftwo",(function(e){return{tokens:e.consumeArgs(2)[1],numArgs:0}})),Br("\\@ifnextchar",(function(e){const t=e.consumeArgs(3);e.consumeSpaces();const r=e.future();return 1===t[0].length&&t[0][0].text===r.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}})),Br("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}"),Br("\\TextOrMath",(function(e){const t=e.consumeArgs(2);return"text"===e.mode?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}}));const Tn={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};Br("\\char",(function(e){let t,r=e.popToken(),o="";if("'"===r.text)t=8,r=e.popToken();else if('"'===r.text)t=16,r=e.popToken();else if("`"===r.text)if(r=e.popToken(),"\\"===r.text[0])o=r.text.charCodeAt(1);else{if("EOF"===r.text)throw new n("\\char` missing argument");o=r.text.charCodeAt(0)}else t=10;if(t){if(o=Tn[r.text],null==o||o>=t)throw new n("Invalid base-"+t+" digit "+r.text);let s;for(;null!=(s=Tn[e.future().text])&&s{let o=e.consumeArg().tokens;if(1!==o.length)throw new n("\\newcommand's first argument must be a macro name");const s=o[0].text,i=e.isDefined(s);if(i&&!t)throw new n("\\newcommand{"+s+"} attempting to redefine "+s+"; use \\renewcommand");if(!i&&!r)throw new n("\\renewcommand{"+s+"} when command "+s+" does not yet exist; use \\newcommand");let a=0;if(o=e.consumeArg().tokens,1===o.length&&"["===o[0].text){let t="",r=e.expandNextToken();for(;"]"!==r.text&&"EOF"!==r.text;)t+=r.text,r=e.expandNextToken();if(!t.match(/^\s*[0-9]+\s*$/))throw new n("Invalid number of arguments: "+t);a=parseInt(t),o=e.consumeArg().tokens}return e.macros.set(s,{tokens:o,numArgs:a}),""};Br("\\newcommand",(e=>Bn(e,!1,!0))),Br("\\renewcommand",(e=>Bn(e,!0,!1))),Br("\\providecommand",(e=>Bn(e,!0,!0))),Br("\\message",(e=>{const t=e.consumeArgs(1)[0];return console.log(t.reverse().map((e=>e.text)).join("")),""})),Br("\\errmessage",(e=>{const t=e.consumeArgs(1)[0];return console.error(t.reverse().map((e=>e.text)).join("")),""})),Br("\\show",(e=>{const t=e.popToken(),r=t.text;return console.log(t,e.macros.get(r),yn[r],oe.math[r],oe.text[r]),""})),Br("\\bgroup","{"),Br("\\egroup","}"),Br("~","\\nobreakspace"),Br("\\lq","`"),Br("\\rq","'"),Br("\\aa","\\r a"),Br("\\AA","\\r A"),Br("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`\xa9}"),Br("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}"),Br("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`\xae}"),Br("\u212c","\\mathscr{B}"),Br("\u2130","\\mathscr{E}"),Br("\u2131","\\mathscr{F}"),Br("\u210b","\\mathscr{H}"),Br("\u2110","\\mathscr{I}"),Br("\u2112","\\mathscr{L}"),Br("\u2133","\\mathscr{M}"),Br("\u211b","\\mathscr{R}"),Br("\u212d","\\mathfrak{C}"),Br("\u210c","\\mathfrak{H}"),Br("\u2128","\\mathfrak{Z}"),Br("\\Bbbk","\\Bbb{k}"),Br("\xb7","\\cdotp"),Br("\\llap","\\mathllap{\\textrm{#1}}"),Br("\\rlap","\\mathrlap{\\textrm{#1}}"),Br("\\clap","\\mathclap{\\textrm{#1}}"),Br("\\mathstrut","\\vphantom{(}"),Br("\\underbar","\\underline{\\text{#1}}"),Br("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}'),Br("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`\u2260}}"),Br("\\ne","\\neq"),Br("\u2260","\\neq"),Br("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`\u2209}}"),Br("\u2209","\\notin"),Br("\u2258","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`\u2258}}"),Br("\u2259","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`\u2258}}"),Br("\u225a","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`\u225a}}"),Br("\u225b","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`\u225b}}"),Br("\u225d","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`\u225d}}"),Br("\u225e","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`\u225e}}"),Br("\u225f","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`\u225f}}"),Br("\u27c2","\\perp"),Br("\u203c","\\mathclose{!\\mkern-0.8mu!}"),Br("\u220c","\\notni"),Br("\u231c","\\ulcorner"),Br("\u231d","\\urcorner"),Br("\u231e","\\llcorner"),Br("\u231f","\\lrcorner"),Br("\xa9","\\copyright"),Br("\xae","\\textregistered"),Br("\ufe0f","\\textregistered"),Br("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}'),Br("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}'),Br("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}'),Br("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}'),Br("\\vdots","\\mathord{\\varvdots\\rule{0pt}{15pt}}"),Br("\u22ee","\\vdots"),Br("\\varGamma","\\mathit{\\Gamma}"),Br("\\varDelta","\\mathit{\\Delta}"),Br("\\varTheta","\\mathit{\\Theta}"),Br("\\varLambda","\\mathit{\\Lambda}"),Br("\\varXi","\\mathit{\\Xi}"),Br("\\varPi","\\mathit{\\Pi}"),Br("\\varSigma","\\mathit{\\Sigma}"),Br("\\varUpsilon","\\mathit{\\Upsilon}"),Br("\\varPhi","\\mathit{\\Phi}"),Br("\\varPsi","\\mathit{\\Psi}"),Br("\\varOmega","\\mathit{\\Omega}"),Br("\\substack","\\begin{subarray}{c}#1\\end{subarray}"),Br("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax"),Br("\\boxed","\\fbox{$\\displaystyle{#1}$}"),Br("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;"),Br("\\implies","\\DOTSB\\;\\Longrightarrow\\;"),Br("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");const Cn={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};Br("\\dots",(function(e){let t="\\dotso";const r=e.expandAfterFuture().text;return r in Cn?t=Cn[r]:("\\not"===r.slice(0,4)||r in oe.math&&l.contains(["bin","rel"],oe.math[r].group))&&(t="\\dotsb"),t}));const Nn={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};Br("\\dotso",(function(e){return e.future().text in Nn?"\\ldots\\,":"\\ldots"})),Br("\\dotsc",(function(e){const t=e.future().text;return t in Nn&&","!==t?"\\ldots\\,":"\\ldots"})),Br("\\cdots",(function(e){return e.future().text in Nn?"\\@cdots\\,":"\\@cdots"})),Br("\\dotsb","\\cdots"),Br("\\dotsm","\\cdots"),Br("\\dotsi","\\!\\cdots"),Br("\\dotsx","\\ldots\\,"),Br("\\DOTSI","\\relax"),Br("\\DOTSB","\\relax"),Br("\\DOTSX","\\relax"),Br("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax"),Br("\\,","\\tmspace+{3mu}{.1667em}"),Br("\\thinspace","\\,"),Br("\\>","\\mskip{4mu}"),Br("\\:","\\tmspace+{4mu}{.2222em}"),Br("\\medspace","\\:"),Br("\\;","\\tmspace+{5mu}{.2777em}"),Br("\\thickspace","\\;"),Br("\\!","\\tmspace-{3mu}{.1667em}"),Br("\\negthinspace","\\!"),Br("\\negmedspace","\\tmspace-{4mu}{.2222em}"),Br("\\negthickspace","\\tmspace-{5mu}{.277em}"),Br("\\enspace","\\kern.5em "),Br("\\enskip","\\hskip.5em\\relax"),Br("\\quad","\\hskip1em\\relax"),Br("\\qquad","\\hskip2em\\relax"),Br("\\tag","\\@ifstar\\tag@literal\\tag@paren"),Br("\\tag@paren","\\tag@literal{({#1})}"),Br("\\tag@literal",(e=>{if(e.macros.get("\\df@tag"))throw new n("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"})),Br("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}"),Br("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)"),Br("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}"),Br("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1"),Br("\\newline","\\\\\\relax"),Br("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");const qn=F(T["Main-Regular"]["T".charCodeAt(0)][1]-.7*T["Main-Regular"]["A".charCodeAt(0)][1]);Br("\\LaTeX","\\textrm{\\html@mathml{L\\kern-.36em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{LaTeX}}"),Br("\\KaTeX","\\textrm{\\html@mathml{K\\kern-.17em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{KaTeX}}"),Br("\\hspace","\\@ifstar\\@hspacer\\@hspace"),Br("\\@hspace","\\hskip #1\\relax"),Br("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax"),Br("\\ordinarycolon",":"),Br("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}"),Br("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}'),Br("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}'),Br("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}'),Br("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}'),Br("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}'),Br("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}'),Br("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}'),Br("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}'),Br("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}'),Br("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}'),Br("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}'),Br("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}'),Br("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}'),Br("\u2237","\\dblcolon"),Br("\u2239","\\eqcolon"),Br("\u2254","\\coloneqq"),Br("\u2255","\\eqqcolon"),Br("\u2a74","\\Coloneqq"),Br("\\ratio","\\vcentcolon"),Br("\\coloncolon","\\dblcolon"),Br("\\colonequals","\\coloneqq"),Br("\\coloncolonequals","\\Coloneqq"),Br("\\equalscolon","\\eqqcolon"),Br("\\equalscoloncolon","\\Eqqcolon"),Br("\\colonminus","\\coloneq"),Br("\\coloncolonminus","\\Coloneq"),Br("\\minuscolon","\\eqcolon"),Br("\\minuscoloncolon","\\Eqcolon"),Br("\\coloncolonapprox","\\Colonapprox"),Br("\\coloncolonsim","\\Colonsim"),Br("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`\u220c}}"),Br("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}"),Br("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}"),Br("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}"),Br("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}"),Br("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}"),Br("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}"),Br("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}"),Br("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}"),Br("\\gvertneqq","\\html@mathml{\\@gvertneqq}{\u2269}"),Br("\\lvertneqq","\\html@mathml{\\@lvertneqq}{\u2268}"),Br("\\ngeqq","\\html@mathml{\\@ngeqq}{\u2271}"),Br("\\ngeqslant","\\html@mathml{\\@ngeqslant}{\u2271}"),Br("\\nleqq","\\html@mathml{\\@nleqq}{\u2270}"),Br("\\nleqslant","\\html@mathml{\\@nleqslant}{\u2270}"),Br("\\nshortmid","\\html@mathml{\\@nshortmid}{\u2224}"),Br("\\nshortparallel","\\html@mathml{\\@nshortparallel}{\u2226}"),Br("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{\u2288}"),Br("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{\u2289}"),Br("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{\u228a}"),Br("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{\u2acb}"),Br("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{\u228b}"),Br("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{\u2acc}"),Br("\\imath","\\html@mathml{\\@imath}{\u0131}"),Br("\\jmath","\\html@mathml{\\@jmath}{\u0237}"),Br("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`\u27e6}}"),Br("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`\u27e7}}"),Br("\u27e6","\\llbracket"),Br("\u27e7","\\rrbracket"),Br("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`\u2983}}"),Br("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`\u2984}}"),Br("\u2983","\\lBrace"),Br("\u2984","\\rBrace"),Br("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`\u29b5}}"),Br("\u29b5","\\minuso"),Br("\\darr","\\downarrow"),Br("\\dArr","\\Downarrow"),Br("\\Darr","\\Downarrow"),Br("\\lang","\\langle"),Br("\\rang","\\rangle"),Br("\\uarr","\\uparrow"),Br("\\uArr","\\Uparrow"),Br("\\Uarr","\\Uparrow"),Br("\\N","\\mathbb{N}"),Br("\\R","\\mathbb{R}"),Br("\\Z","\\mathbb{Z}"),Br("\\alef","\\aleph"),Br("\\alefsym","\\aleph"),Br("\\Alpha","\\mathrm{A}"),Br("\\Beta","\\mathrm{B}"),Br("\\bull","\\bullet"),Br("\\Chi","\\mathrm{X}"),Br("\\clubs","\\clubsuit"),Br("\\cnums","\\mathbb{C}"),Br("\\Complex","\\mathbb{C}"),Br("\\Dagger","\\ddagger"),Br("\\diamonds","\\diamondsuit"),Br("\\empty","\\emptyset"),Br("\\Epsilon","\\mathrm{E}"),Br("\\Eta","\\mathrm{H}"),Br("\\exist","\\exists"),Br("\\harr","\\leftrightarrow"),Br("\\hArr","\\Leftrightarrow"),Br("\\Harr","\\Leftrightarrow"),Br("\\hearts","\\heartsuit"),Br("\\image","\\Im"),Br("\\infin","\\infty"),Br("\\Iota","\\mathrm{I}"),Br("\\isin","\\in"),Br("\\Kappa","\\mathrm{K}"),Br("\\larr","\\leftarrow"),Br("\\lArr","\\Leftarrow"),Br("\\Larr","\\Leftarrow"),Br("\\lrarr","\\leftrightarrow"),Br("\\lrArr","\\Leftrightarrow"),Br("\\Lrarr","\\Leftrightarrow"),Br("\\Mu","\\mathrm{M}"),Br("\\natnums","\\mathbb{N}"),Br("\\Nu","\\mathrm{N}"),Br("\\Omicron","\\mathrm{O}"),Br("\\plusmn","\\pm"),Br("\\rarr","\\rightarrow"),Br("\\rArr","\\Rightarrow"),Br("\\Rarr","\\Rightarrow"),Br("\\real","\\Re"),Br("\\reals","\\mathbb{R}"),Br("\\Reals","\\mathbb{R}"),Br("\\Rho","\\mathrm{P}"),Br("\\sdot","\\cdot"),Br("\\sect","\\S"),Br("\\spades","\\spadesuit"),Br("\\sub","\\subset"),Br("\\sube","\\subseteq"),Br("\\supe","\\supseteq"),Br("\\Tau","\\mathrm{T}"),Br("\\thetasym","\\vartheta"),Br("\\weierp","\\wp"),Br("\\Zeta","\\mathrm{Z}"),Br("\\argmin","\\DOTSB\\operatorname*{arg\\,min}"),Br("\\argmax","\\DOTSB\\operatorname*{arg\\,max}"),Br("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits"),Br("\\bra","\\mathinner{\\langle{#1}|}"),Br("\\ket","\\mathinner{|{#1}\\rangle}"),Br("\\braket","\\mathinner{\\langle{#1}\\rangle}"),Br("\\Bra","\\left\\langle#1\\right|"),Br("\\Ket","\\left|#1\\right\\rangle");const In=e=>t=>{const r=t.consumeArg().tokens,n=t.consumeArg().tokens,o=t.consumeArg().tokens,s=t.consumeArg().tokens,i=t.macros.get("|"),a=t.macros.get("\\|");t.macros.beginGroup();const l=t=>r=>{e&&(r.macros.set("|",i),o.length&&r.macros.set("\\|",a));let s=t;if(!t&&o.length){"|"===r.future().text&&(r.popToken(),s=!0)}return{tokens:s?o:n,numArgs:0}};t.macros.set("|",l(!1)),o.length&&t.macros.set("\\|",l(!0));const h=t.consumeArg().tokens,c=t.expandTokens([...s,...h,...r]);return t.macros.endGroup(),{tokens:c.reverse(),numArgs:0}};Br("\\bra@ket",In(!1)),Br("\\bra@set",In(!0)),Br("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}"),Br("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}"),Br("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}"),Br("\\angln","{\\angl n}"),Br("\\blue","\\textcolor{##6495ed}{#1}"),Br("\\orange","\\textcolor{##ffa500}{#1}"),Br("\\pink","\\textcolor{##ff00af}{#1}"),Br("\\red","\\textcolor{##df0030}{#1}"),Br("\\green","\\textcolor{##28ae7b}{#1}"),Br("\\gray","\\textcolor{gray}{#1}"),Br("\\purple","\\textcolor{##9d38bd}{#1}"),Br("\\blueA","\\textcolor{##ccfaff}{#1}"),Br("\\blueB","\\textcolor{##80f6ff}{#1}"),Br("\\blueC","\\textcolor{##63d9ea}{#1}"),Br("\\blueD","\\textcolor{##11accd}{#1}"),Br("\\blueE","\\textcolor{##0c7f99}{#1}"),Br("\\tealA","\\textcolor{##94fff5}{#1}"),Br("\\tealB","\\textcolor{##26edd5}{#1}"),Br("\\tealC","\\textcolor{##01d1c1}{#1}"),Br("\\tealD","\\textcolor{##01a995}{#1}"),Br("\\tealE","\\textcolor{##208170}{#1}"),Br("\\greenA","\\textcolor{##b6ffb0}{#1}"),Br("\\greenB","\\textcolor{##8af281}{#1}"),Br("\\greenC","\\textcolor{##74cf70}{#1}"),Br("\\greenD","\\textcolor{##1fab54}{#1}"),Br("\\greenE","\\textcolor{##0d923f}{#1}"),Br("\\goldA","\\textcolor{##ffd0a9}{#1}"),Br("\\goldB","\\textcolor{##ffbb71}{#1}"),Br("\\goldC","\\textcolor{##ff9c39}{#1}"),Br("\\goldD","\\textcolor{##e07d10}{#1}"),Br("\\goldE","\\textcolor{##a75a05}{#1}"),Br("\\redA","\\textcolor{##fca9a9}{#1}"),Br("\\redB","\\textcolor{##ff8482}{#1}"),Br("\\redC","\\textcolor{##f9685d}{#1}"),Br("\\redD","\\textcolor{##e84d39}{#1}"),Br("\\redE","\\textcolor{##bc2612}{#1}"),Br("\\maroonA","\\textcolor{##ffbde0}{#1}"),Br("\\maroonB","\\textcolor{##ff92c6}{#1}"),Br("\\maroonC","\\textcolor{##ed5fa6}{#1}"),Br("\\maroonD","\\textcolor{##ca337c}{#1}"),Br("\\maroonE","\\textcolor{##9e034e}{#1}"),Br("\\purpleA","\\textcolor{##ddd7ff}{#1}"),Br("\\purpleB","\\textcolor{##c6b9fc}{#1}"),Br("\\purpleC","\\textcolor{##aa87ff}{#1}"),Br("\\purpleD","\\textcolor{##7854ab}{#1}"),Br("\\purpleE","\\textcolor{##543b78}{#1}"),Br("\\mintA","\\textcolor{##f5f9e8}{#1}"),Br("\\mintB","\\textcolor{##edf2df}{#1}"),Br("\\mintC","\\textcolor{##e0e5cc}{#1}"),Br("\\grayA","\\textcolor{##f6f7f7}{#1}"),Br("\\grayB","\\textcolor{##f0f1f2}{#1}"),Br("\\grayC","\\textcolor{##e3e5e6}{#1}"),Br("\\grayD","\\textcolor{##d6d8da}{#1}"),Br("\\grayE","\\textcolor{##babec2}{#1}"),Br("\\grayF","\\textcolor{##888d93}{#1}"),Br("\\grayG","\\textcolor{##626569}{#1}"),Br("\\grayH","\\textcolor{##3b3e40}{#1}"),Br("\\grayI","\\textcolor{##21242c}{#1}"),Br("\\kaBlue","\\textcolor{##314453}{#1}"),Br("\\kaGreen","\\textcolor{##71B307}{#1}");const Rn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class Hn{constructor(e,t,r){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=t,this.expansionCount=0,this.feed(e),this.macros=new zn(An,t.macros),this.mode=r,this.stack=[]}feed(e){this.lexer=new Mn(e,this.settings)}switchMode(e){this.mode=e}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return 0===this.stack.length&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(e){this.stack.push(e)}pushTokens(e){this.stack.push(...e)}scanArgument(e){let t,r,n;if(e){if(this.consumeSpaces(),"["!==this.future().text)return null;t=this.popToken(),({tokens:n,end:r}=this.consumeArg(["]"]))}else({tokens:n,start:t,end:r}=this.consumeArg());return this.pushToken(new Nr("EOF",r.loc)),this.pushTokens(n),t.range(r,"")}consumeSpaces(){for(;;){if(" "!==this.future().text)break;this.stack.pop()}}consumeArg(e){const t=[],r=e&&e.length>0;r||this.consumeSpaces();const o=this.future();let s,i=0,a=0;do{if(s=this.popToken(),t.push(s),"{"===s.text)++i;else if("}"===s.text){if(--i,-1===i)throw new n("Extra }",s)}else if("EOF"===s.text)throw new n("Unexpected end of input in a macro argument, expected '"+(e&&r?e[a]:"}")+"'",s);if(e&&r)if((0===i||1===i&&"{"===e[a])&&s.text===e[a]){if(++a,a===e.length){t.splice(-a,a);break}}else a=0}while(0!==i||r);return"{"===o.text&&"}"===t[t.length-1].text&&(t.pop(),t.shift()),t.reverse(),{tokens:t,start:o,end:s}}consumeArgs(e,t){if(t){if(t.length!==e+1)throw new n("The length of delimiters doesn't match the number of args!");const r=t[0];for(let e=0;ethis.settings.maxExpand)throw new n("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(e){const t=this.popToken(),r=t.text,o=t.noexpand?null:this._getExpansion(r);if(null==o||e&&o.unexpandable){if(e&&null==o&&"\\"===r[0]&&!this.isDefined(r))throw new n("Undefined control sequence: "+r);return this.pushToken(t),!1}this.countExpansion(1);let s=o.tokens;const i=this.consumeArgs(o.numArgs,o.delimiters);if(o.numArgs){s=s.slice();for(let e=s.length-1;e>=0;--e){let t=s[e];if("#"===t.text){if(0===e)throw new n("Incomplete placeholder at end of macro body",t);if(t=s[--e],"#"===t.text)s.splice(e+1,1);else{if(!/^[1-9]$/.test(t.text))throw new n("Not a valid argument number",t);s.splice(e,2,...i[+t.text-1])}}}}return this.pushTokens(s),s.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(!1===this.expandOnce()){const e=this.stack.pop();return e.treatAsRelax&&(e.text="\\relax"),e}throw new Error}expandMacro(e){return this.macros.has(e)?this.expandTokens([new Nr(e)]):void 0}expandTokens(e){const t=[],r=this.stack.length;for(this.pushTokens(e);this.stack.length>r;)if(!1===this.expandOnce(!0)){const e=this.stack.pop();e.treatAsRelax&&(e.noexpand=!1,e.treatAsRelax=!1),t.push(e)}return this.countExpansion(t.length),t}expandMacroAsText(e){const t=this.expandMacro(e);return t?t.map((e=>e.text)).join(""):t}_getExpansion(e){const t=this.macros.get(e);if(null==t)return t;if(1===e.length){const t=this.lexer.catcodes[e];if(null!=t&&13!==t)return}const r="function"==typeof t?t(this):t;if("string"==typeof r){let e=0;if(-1!==r.indexOf("#")){const t=r.replace(/##/g,"");for(;-1!==t.indexOf("#"+(e+1));)++e}const t=new Mn(r,this.settings),n=[];let o=t.lex();for(;"EOF"!==o.text;)n.push(o),o=t.lex();n.reverse();return{tokens:n,numArgs:e}}return r}isDefined(e){return this.macros.has(e)||yn.hasOwnProperty(e)||oe.math.hasOwnProperty(e)||oe.text.hasOwnProperty(e)||Rn.hasOwnProperty(e)}isExpandable(e){const t=this.macros.get(e);return null!=t?"string"==typeof t||"function"==typeof t||!t.unexpandable:yn.hasOwnProperty(e)&&!yn[e].primitive}}const On=/^[\u208a\u208b\u208c\u208d\u208e\u2080\u2081\u2082\u2083\u2084\u2085\u2086\u2087\u2088\u2089\u2090\u2091\u2095\u1d62\u2c7c\u2096\u2097\u2098\u2099\u2092\u209a\u1d63\u209b\u209c\u1d64\u1d65\u2093\u1d66\u1d67\u1d68\u1d69\u1d6a]/,En=Object.freeze({"\u208a":"+","\u208b":"-","\u208c":"=","\u208d":"(","\u208e":")","\u2080":"0","\u2081":"1","\u2082":"2","\u2083":"3","\u2084":"4","\u2085":"5","\u2086":"6","\u2087":"7","\u2088":"8","\u2089":"9","\u2090":"a","\u2091":"e","\u2095":"h","\u1d62":"i","\u2c7c":"j","\u2096":"k","\u2097":"l","\u2098":"m","\u2099":"n","\u2092":"o","\u209a":"p","\u1d63":"r","\u209b":"s","\u209c":"t","\u1d64":"u","\u1d65":"v","\u2093":"x","\u1d66":"\u03b2","\u1d67":"\u03b3","\u1d68":"\u03c1","\u1d69":"\u03d5","\u1d6a":"\u03c7","\u207a":"+","\u207b":"-","\u207c":"=","\u207d":"(","\u207e":")","\u2070":"0","\xb9":"1","\xb2":"2","\xb3":"3","\u2074":"4","\u2075":"5","\u2076":"6","\u2077":"7","\u2078":"8","\u2079":"9","\u1d2c":"A","\u1d2e":"B","\u1d30":"D","\u1d31":"E","\u1d33":"G","\u1d34":"H","\u1d35":"I","\u1d36":"J","\u1d37":"K","\u1d38":"L","\u1d39":"M","\u1d3a":"N","\u1d3c":"O","\u1d3e":"P","\u1d3f":"R","\u1d40":"T","\u1d41":"U","\u2c7d":"V","\u1d42":"W","\u1d43":"a","\u1d47":"b","\u1d9c":"c","\u1d48":"d","\u1d49":"e","\u1da0":"f","\u1d4d":"g","\u02b0":"h","\u2071":"i","\u02b2":"j","\u1d4f":"k","\u02e1":"l","\u1d50":"m","\u207f":"n","\u1d52":"o","\u1d56":"p","\u02b3":"r","\u02e2":"s","\u1d57":"t","\u1d58":"u","\u1d5b":"v","\u02b7":"w","\u02e3":"x","\u02b8":"y","\u1dbb":"z","\u1d5d":"\u03b2","\u1d5e":"\u03b3","\u1d5f":"\u03b4","\u1d60":"\u03d5","\u1d61":"\u03c7","\u1dbf":"\u03b8"}),Ln={"\u0301":{text:"\\'",math:"\\acute"},"\u0300":{text:"\\`",math:"\\grave"},"\u0308":{text:'\\"',math:"\\ddot"},"\u0303":{text:"\\~",math:"\\tilde"},"\u0304":{text:"\\=",math:"\\bar"},"\u0306":{text:"\\u",math:"\\breve"},"\u030c":{text:"\\v",math:"\\check"},"\u0302":{text:"\\^",math:"\\hat"},"\u0307":{text:"\\.",math:"\\dot"},"\u030a":{text:"\\r",math:"\\mathring"},"\u030b":{text:"\\H"},"\u0327":{text:"\\c"}},Dn={"\xe1":"a\u0301","\xe0":"a\u0300","\xe4":"a\u0308","\u01df":"a\u0308\u0304","\xe3":"a\u0303","\u0101":"a\u0304","\u0103":"a\u0306","\u1eaf":"a\u0306\u0301","\u1eb1":"a\u0306\u0300","\u1eb5":"a\u0306\u0303","\u01ce":"a\u030c","\xe2":"a\u0302","\u1ea5":"a\u0302\u0301","\u1ea7":"a\u0302\u0300","\u1eab":"a\u0302\u0303","\u0227":"a\u0307","\u01e1":"a\u0307\u0304","\xe5":"a\u030a","\u01fb":"a\u030a\u0301","\u1e03":"b\u0307","\u0107":"c\u0301","\u1e09":"c\u0327\u0301","\u010d":"c\u030c","\u0109":"c\u0302","\u010b":"c\u0307","\xe7":"c\u0327","\u010f":"d\u030c","\u1e0b":"d\u0307","\u1e11":"d\u0327","\xe9":"e\u0301","\xe8":"e\u0300","\xeb":"e\u0308","\u1ebd":"e\u0303","\u0113":"e\u0304","\u1e17":"e\u0304\u0301","\u1e15":"e\u0304\u0300","\u0115":"e\u0306","\u1e1d":"e\u0327\u0306","\u011b":"e\u030c","\xea":"e\u0302","\u1ebf":"e\u0302\u0301","\u1ec1":"e\u0302\u0300","\u1ec5":"e\u0302\u0303","\u0117":"e\u0307","\u0229":"e\u0327","\u1e1f":"f\u0307","\u01f5":"g\u0301","\u1e21":"g\u0304","\u011f":"g\u0306","\u01e7":"g\u030c","\u011d":"g\u0302","\u0121":"g\u0307","\u0123":"g\u0327","\u1e27":"h\u0308","\u021f":"h\u030c","\u0125":"h\u0302","\u1e23":"h\u0307","\u1e29":"h\u0327","\xed":"i\u0301","\xec":"i\u0300","\xef":"i\u0308","\u1e2f":"i\u0308\u0301","\u0129":"i\u0303","\u012b":"i\u0304","\u012d":"i\u0306","\u01d0":"i\u030c","\xee":"i\u0302","\u01f0":"j\u030c","\u0135":"j\u0302","\u1e31":"k\u0301","\u01e9":"k\u030c","\u0137":"k\u0327","\u013a":"l\u0301","\u013e":"l\u030c","\u013c":"l\u0327","\u1e3f":"m\u0301","\u1e41":"m\u0307","\u0144":"n\u0301","\u01f9":"n\u0300","\xf1":"n\u0303","\u0148":"n\u030c","\u1e45":"n\u0307","\u0146":"n\u0327","\xf3":"o\u0301","\xf2":"o\u0300","\xf6":"o\u0308","\u022b":"o\u0308\u0304","\xf5":"o\u0303","\u1e4d":"o\u0303\u0301","\u1e4f":"o\u0303\u0308","\u022d":"o\u0303\u0304","\u014d":"o\u0304","\u1e53":"o\u0304\u0301","\u1e51":"o\u0304\u0300","\u014f":"o\u0306","\u01d2":"o\u030c","\xf4":"o\u0302","\u1ed1":"o\u0302\u0301","\u1ed3":"o\u0302\u0300","\u1ed7":"o\u0302\u0303","\u022f":"o\u0307","\u0231":"o\u0307\u0304","\u0151":"o\u030b","\u1e55":"p\u0301","\u1e57":"p\u0307","\u0155":"r\u0301","\u0159":"r\u030c","\u1e59":"r\u0307","\u0157":"r\u0327","\u015b":"s\u0301","\u1e65":"s\u0301\u0307","\u0161":"s\u030c","\u1e67":"s\u030c\u0307","\u015d":"s\u0302","\u1e61":"s\u0307","\u015f":"s\u0327","\u1e97":"t\u0308","\u0165":"t\u030c","\u1e6b":"t\u0307","\u0163":"t\u0327","\xfa":"u\u0301","\xf9":"u\u0300","\xfc":"u\u0308","\u01d8":"u\u0308\u0301","\u01dc":"u\u0308\u0300","\u01d6":"u\u0308\u0304","\u01da":"u\u0308\u030c","\u0169":"u\u0303","\u1e79":"u\u0303\u0301","\u016b":"u\u0304","\u1e7b":"u\u0304\u0308","\u016d":"u\u0306","\u01d4":"u\u030c","\xfb":"u\u0302","\u016f":"u\u030a","\u0171":"u\u030b","\u1e7d":"v\u0303","\u1e83":"w\u0301","\u1e81":"w\u0300","\u1e85":"w\u0308","\u0175":"w\u0302","\u1e87":"w\u0307","\u1e98":"w\u030a","\u1e8d":"x\u0308","\u1e8b":"x\u0307","\xfd":"y\u0301","\u1ef3":"y\u0300","\xff":"y\u0308","\u1ef9":"y\u0303","\u0233":"y\u0304","\u0177":"y\u0302","\u1e8f":"y\u0307","\u1e99":"y\u030a","\u017a":"z\u0301","\u017e":"z\u030c","\u1e91":"z\u0302","\u017c":"z\u0307","\xc1":"A\u0301","\xc0":"A\u0300","\xc4":"A\u0308","\u01de":"A\u0308\u0304","\xc3":"A\u0303","\u0100":"A\u0304","\u0102":"A\u0306","\u1eae":"A\u0306\u0301","\u1eb0":"A\u0306\u0300","\u1eb4":"A\u0306\u0303","\u01cd":"A\u030c","\xc2":"A\u0302","\u1ea4":"A\u0302\u0301","\u1ea6":"A\u0302\u0300","\u1eaa":"A\u0302\u0303","\u0226":"A\u0307","\u01e0":"A\u0307\u0304","\xc5":"A\u030a","\u01fa":"A\u030a\u0301","\u1e02":"B\u0307","\u0106":"C\u0301","\u1e08":"C\u0327\u0301","\u010c":"C\u030c","\u0108":"C\u0302","\u010a":"C\u0307","\xc7":"C\u0327","\u010e":"D\u030c","\u1e0a":"D\u0307","\u1e10":"D\u0327","\xc9":"E\u0301","\xc8":"E\u0300","\xcb":"E\u0308","\u1ebc":"E\u0303","\u0112":"E\u0304","\u1e16":"E\u0304\u0301","\u1e14":"E\u0304\u0300","\u0114":"E\u0306","\u1e1c":"E\u0327\u0306","\u011a":"E\u030c","\xca":"E\u0302","\u1ebe":"E\u0302\u0301","\u1ec0":"E\u0302\u0300","\u1ec4":"E\u0302\u0303","\u0116":"E\u0307","\u0228":"E\u0327","\u1e1e":"F\u0307","\u01f4":"G\u0301","\u1e20":"G\u0304","\u011e":"G\u0306","\u01e6":"G\u030c","\u011c":"G\u0302","\u0120":"G\u0307","\u0122":"G\u0327","\u1e26":"H\u0308","\u021e":"H\u030c","\u0124":"H\u0302","\u1e22":"H\u0307","\u1e28":"H\u0327","\xcd":"I\u0301","\xcc":"I\u0300","\xcf":"I\u0308","\u1e2e":"I\u0308\u0301","\u0128":"I\u0303","\u012a":"I\u0304","\u012c":"I\u0306","\u01cf":"I\u030c","\xce":"I\u0302","\u0130":"I\u0307","\u0134":"J\u0302","\u1e30":"K\u0301","\u01e8":"K\u030c","\u0136":"K\u0327","\u0139":"L\u0301","\u013d":"L\u030c","\u013b":"L\u0327","\u1e3e":"M\u0301","\u1e40":"M\u0307","\u0143":"N\u0301","\u01f8":"N\u0300","\xd1":"N\u0303","\u0147":"N\u030c","\u1e44":"N\u0307","\u0145":"N\u0327","\xd3":"O\u0301","\xd2":"O\u0300","\xd6":"O\u0308","\u022a":"O\u0308\u0304","\xd5":"O\u0303","\u1e4c":"O\u0303\u0301","\u1e4e":"O\u0303\u0308","\u022c":"O\u0303\u0304","\u014c":"O\u0304","\u1e52":"O\u0304\u0301","\u1e50":"O\u0304\u0300","\u014e":"O\u0306","\u01d1":"O\u030c","\xd4":"O\u0302","\u1ed0":"O\u0302\u0301","\u1ed2":"O\u0302\u0300","\u1ed6":"O\u0302\u0303","\u022e":"O\u0307","\u0230":"O\u0307\u0304","\u0150":"O\u030b","\u1e54":"P\u0301","\u1e56":"P\u0307","\u0154":"R\u0301","\u0158":"R\u030c","\u1e58":"R\u0307","\u0156":"R\u0327","\u015a":"S\u0301","\u1e64":"S\u0301\u0307","\u0160":"S\u030c","\u1e66":"S\u030c\u0307","\u015c":"S\u0302","\u1e60":"S\u0307","\u015e":"S\u0327","\u0164":"T\u030c","\u1e6a":"T\u0307","\u0162":"T\u0327","\xda":"U\u0301","\xd9":"U\u0300","\xdc":"U\u0308","\u01d7":"U\u0308\u0301","\u01db":"U\u0308\u0300","\u01d5":"U\u0308\u0304","\u01d9":"U\u0308\u030c","\u0168":"U\u0303","\u1e78":"U\u0303\u0301","\u016a":"U\u0304","\u1e7a":"U\u0304\u0308","\u016c":"U\u0306","\u01d3":"U\u030c","\xdb":"U\u0302","\u016e":"U\u030a","\u0170":"U\u030b","\u1e7c":"V\u0303","\u1e82":"W\u0301","\u1e80":"W\u0300","\u1e84":"W\u0308","\u0174":"W\u0302","\u1e86":"W\u0307","\u1e8c":"X\u0308","\u1e8a":"X\u0307","\xdd":"Y\u0301","\u1ef2":"Y\u0300","\u0178":"Y\u0308","\u1ef8":"Y\u0303","\u0232":"Y\u0304","\u0176":"Y\u0302","\u1e8e":"Y\u0307","\u0179":"Z\u0301","\u017d":"Z\u030c","\u1e90":"Z\u0302","\u017b":"Z\u0307","\u03ac":"\u03b1\u0301","\u1f70":"\u03b1\u0300","\u1fb1":"\u03b1\u0304","\u1fb0":"\u03b1\u0306","\u03ad":"\u03b5\u0301","\u1f72":"\u03b5\u0300","\u03ae":"\u03b7\u0301","\u1f74":"\u03b7\u0300","\u03af":"\u03b9\u0301","\u1f76":"\u03b9\u0300","\u03ca":"\u03b9\u0308","\u0390":"\u03b9\u0308\u0301","\u1fd2":"\u03b9\u0308\u0300","\u1fd1":"\u03b9\u0304","\u1fd0":"\u03b9\u0306","\u03cc":"\u03bf\u0301","\u1f78":"\u03bf\u0300","\u03cd":"\u03c5\u0301","\u1f7a":"\u03c5\u0300","\u03cb":"\u03c5\u0308","\u03b0":"\u03c5\u0308\u0301","\u1fe2":"\u03c5\u0308\u0300","\u1fe1":"\u03c5\u0304","\u1fe0":"\u03c5\u0306","\u03ce":"\u03c9\u0301","\u1f7c":"\u03c9\u0300","\u038e":"\u03a5\u0301","\u1fea":"\u03a5\u0300","\u03ab":"\u03a5\u0308","\u1fe9":"\u03a5\u0304","\u1fe8":"\u03a5\u0306","\u038f":"\u03a9\u0301","\u1ffa":"\u03a9\u0300"};class Vn{constructor(e,t){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new Hn(e,t,this.mode),this.settings=t,this.leftrightDepth=0}expect(e,t){if(void 0===t&&(t=!0),this.fetch().text!==e)throw new n("Expected '"+e+"', got '"+this.fetch().text+"'",this.fetch());t&&this.consume()}consume(){this.nextToken=null}fetch(){return null==this.nextToken&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(e){this.mode=e,this.gullet.switchMode(e)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{const e=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),e}finally{this.gullet.endGroups()}}subparse(e){const t=this.nextToken;this.consume(),this.gullet.pushToken(new Nr("}")),this.gullet.pushTokens(e);const r=this.parseExpression(!1);return this.expect("}"),this.nextToken=t,r}parseExpression(e,t){const r=[];for(;;){"math"===this.mode&&this.consumeSpaces();const n=this.fetch();if(-1!==Vn.endOfExpression.indexOf(n.text))break;if(t&&n.text===t)break;if(e&&yn[n.text]&&yn[n.text].infix)break;const o=this.parseAtom(t);if(!o)break;"internal"!==o.type&&r.push(o)}return"text"===this.mode&&this.formLigatures(r),this.handleInfixNodes(r)}handleInfixNodes(e){let t,r=-1;for(let o=0;o=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+t[0]+'" used in math mode',e);const r=oe[this.mode][t].group,n=Cr.range(e);let s;if(te.hasOwnProperty(r)){const e=r;s={type:"atom",mode:this.mode,family:e,loc:n,text:t}}else s={type:r,mode:this.mode,loc:n,text:t};o=s}else{if(!(t.charCodeAt(0)>=128))return null;this.settings.strict&&(S(t.charCodeAt(0))?"math"===this.mode&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+t[0]+'" used in math mode',e):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+t[0]+'" ('+t.charCodeAt(0)+")",e)),o={type:"textord",mode:"text",loc:Cr.range(e),text:t}}if(this.consume(),r)for(let t=0;t15?"\u2026"+e.slice(n-15,n):e.slice(0,n),a=o+15":">","<":"<",'"':""","'":"'"},i=/[&><"']/g;const a=function(e){return"ordgroup"===e.type||"color"===e.type?1===e.body.length?a(e.body[0]):e:"font"===e.type?a(e.body):e};var l={contains:function(e,t){return-1!==e.indexOf(t)},deflt:function(e,t){return void 0===e?t:e},escape:function(e){return String(e).replace(i,(e=>s[e]))},hyphenate:function(e){return e.replace(o,"-$1").toLowerCase()},getBaseElem:a,isCharacterBox:function(e){const t=a(e);return"mathord"===t.type||"textord"===t.type||"atom"===t.type},protocolFromUrl:function(e){const t=/^[\x00-\x20]*([^\\/#?]*?)(:|�*58|�*3a|&colon)/i.exec(e);return t?":"!==t[2]?null:/^[a-zA-Z][a-zA-Z0-9+\-.]*$/.test(t[1])?t[1].toLowerCase():null:"_relative"}};const h={displayMode:{type:"boolean",description:"Render math in display mode, which puts the math in display style (so \\int and \\sum are large, for example), and centers the math on the page on its own line.",cli:"-d, --display-mode"},output:{type:{enum:["htmlAndMathml","html","mathml"]},description:"Determines the markup language of the output.",cli:"-F, --format "},leqno:{type:"boolean",description:"Render display math in leqno style (left-justified tags)."},fleqn:{type:"boolean",description:"Render display math flush left."},throwOnError:{type:"boolean",default:!0,cli:"-t, --no-throw-on-error",cliDescription:"Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error."},errorColor:{type:"string",default:"#cc0000",cli:"-c, --error-color ",cliDescription:"A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option.",cliProcessor:e=>"#"+e},macros:{type:"object",cli:"-m, --macro ",cliDescription:"Define custom macro of the form '\\foo:expansion' (use multiple -m arguments for multiple macros).",cliDefault:[],cliProcessor:(e,t)=>(t.push(e),t)},minRuleThickness:{type:"number",description:"Specifies a minimum thickness, in ems, for fraction lines, `\\sqrt` top lines, `{array}` vertical lines, `\\hline`, `\\hdashline`, `\\underline`, `\\overline`, and the borders of `\\fbox`, `\\boxed`, and `\\fcolorbox`.",processor:e=>Math.max(0,e),cli:"--min-rule-thickness ",cliProcessor:parseFloat},colorIsTextColor:{type:"boolean",description:"Makes \\color behave like LaTeX's 2-argument \\textcolor, instead of LaTeX's one-argument \\color mode change.",cli:"-b, --color-is-text-color"},strict:{type:[{enum:["warn","ignore","error"]},"boolean","function"],description:"Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX.",cli:"-S, --strict",cliDefault:!1},trust:{type:["boolean","function"],description:"Trust the input, enabling all HTML features such as \\url.",cli:"-T, --trust"},maxSize:{type:"number",default:1/0,description:"If non-zero, all user-specified sizes, e.g. in \\rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large",processor:e=>Math.max(0,e),cli:"-s, --max-size ",cliProcessor:parseInt},maxExpand:{type:"number",default:1e3,description:"Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.",processor:e=>Math.max(0,e),cli:"-e, --max-expand ",cliProcessor:e=>"Infinity"===e?1/0:parseInt(e)},globalGroup:{type:"boolean",cli:!1}};function c(e){if(e.default)return e.default;const t=e.type,r=Array.isArray(t)?t[0]:t;if("string"!=typeof r)return r.enum[0];switch(r){case"boolean":return!1;case"string":return"";case"number":return 0;case"object":return{}}}class m{constructor(e){this.displayMode=void 0,this.output=void 0,this.leqno=void 0,this.fleqn=void 0,this.throwOnError=void 0,this.errorColor=void 0,this.macros=void 0,this.minRuleThickness=void 0,this.colorIsTextColor=void 0,this.strict=void 0,this.trust=void 0,this.maxSize=void 0,this.maxExpand=void 0,this.globalGroup=void 0,e=e||{};for(const t in h)if(h.hasOwnProperty(t)){const r=h[t];this[t]=void 0!==e[t]?r.processor?r.processor(e[t]):e[t]:c(r)}}reportNonstrict(e,t,r){let o=this.strict;if("function"==typeof o&&(o=o(e,t,r)),o&&"ignore"!==o){if(!0===o||"error"===o)throw new n("LaTeX-incompatible input and strict mode is set to 'error': "+t+" ["+e+"]",r);"warn"===o?"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"):"undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+o+"': "+t+" ["+e+"]")}}useStrictBehavior(e,t,r){let n=this.strict;if("function"==typeof n)try{n=n(e,t,r)}catch(e){n="error"}return!(!n||"ignore"===n)&&(!0===n||"error"===n||("warn"===n?("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to 'warn': "+t+" ["+e+"]"),!1):("undefined"!=typeof console&&console.warn("LaTeX-incompatible input and strict mode is set to unrecognized '"+n+"': "+t+" ["+e+"]"),!1)))}isTrusted(e){if(e.url&&!e.protocol){const t=l.protocolFromUrl(e.url);if(null==t)return!1;e.protocol=t}const t="function"==typeof this.trust?this.trust(e):this.trust;return Boolean(t)}}class p{constructor(e,t,r){this.id=void 0,this.size=void 0,this.cramped=void 0,this.id=e,this.size=t,this.cramped=r}sup(){return u[d[this.id]]}sub(){return u[g[this.id]]}fracNum(){return u[f[this.id]]}fracDen(){return u[b[this.id]]}cramp(){return u[y[this.id]]}text(){return u[x[this.id]]}isTight(){return this.size>=2}}const u=[new p(0,0,!1),new p(1,0,!0),new p(2,1,!1),new p(3,1,!0),new p(4,2,!1),new p(5,2,!0),new p(6,3,!1),new p(7,3,!0)],d=[4,5,4,5,6,7,6,7],g=[5,5,5,5,7,7,7,7],f=[2,3,4,5,6,7,6,7],b=[3,3,5,5,7,7,7,7],y=[1,1,3,3,5,5,7,7],x=[0,1,2,3,2,3,2,3];var w={DISPLAY:u[0],TEXT:u[2],SCRIPT:u[4],SCRIPTSCRIPT:u[6]};const v=[{name:"latin",blocks:[[256,591],[768,879]]},{name:"cyrillic",blocks:[[1024,1279]]},{name:"armenian",blocks:[[1328,1423]]},{name:"brahmic",blocks:[[2304,4255]]},{name:"georgian",blocks:[[4256,4351]]},{name:"cjk",blocks:[[12288,12543],[19968,40879],[65280,65376]]},{name:"hangul",blocks:[[44032,55215]]}];const k=[];function S(e){for(let t=0;t=k[t]&&e<=k[t+1])return!0;return!1}v.forEach((e=>e.blocks.forEach((e=>k.push(...e)))));const M=80,z={doubleleftarrow:"M262 157\nl10-10c34-36 62.7-77 86-123 3.3-8 5-13.3 5-16 0-5.3-6.7-8-20-8-7.3\n 0-12.2.5-14.5 1.5-2.3 1-4.8 4.5-7.5 10.5-49.3 97.3-121.7 169.3-217 216-28\n 14-57.3 25-88 33-6.7 2-11 3.8-13 5.5-2 1.7-3 4.2-3 7.5s1 5.8 3 7.5\nc2 1.7 6.3 3.5 13 5.5 68 17.3 128.2 47.8 180.5 91.5 52.3 43.7 93.8 96.2 124.5\n 157.5 9.3 8 15.3 12.3 18 13h6c12-.7 18-4 18-10 0-2-1.7-7-5-15-23.3-46-52-87\n-86-123l-10-10h399738v-40H218c328 0 0 0 0 0l-10-8c-26.7-20-65.7-43-117-69 2.7\n-2 6-3.7 10-5 36.7-16 72.3-37.3 107-64l10-8h399782v-40z\nm8 0v40h399730v-40zm0 194v40h399730v-40z",doublerightarrow:"M399738 392l\n-10 10c-34 36-62.7 77-86 123-3.3 8-5 13.3-5 16 0 5.3 6.7 8 20 8 7.3 0 12.2-.5\n 14.5-1.5 2.3-1 4.8-4.5 7.5-10.5 49.3-97.3 121.7-169.3 217-216 28-14 57.3-25 88\n-33 6.7-2 11-3.8 13-5.5 2-1.7 3-4.2 3-7.5s-1-5.8-3-7.5c-2-1.7-6.3-3.5-13-5.5-68\n-17.3-128.2-47.8-180.5-91.5-52.3-43.7-93.8-96.2-124.5-157.5-9.3-8-15.3-12.3-18\n-13h-6c-12 .7-18 4-18 10 0 2 1.7 7 5 15 23.3 46 52 87 86 123l10 10H0v40h399782\nc-328 0 0 0 0 0l10 8c26.7 20 65.7 43 117 69-2.7 2-6 3.7-10 5-36.7 16-72.3 37.3\n-107 64l-10 8H0v40zM0 157v40h399730v-40zm0 194v40h399730v-40z",leftarrow:"M400000 241H110l3-3c68.7-52.7 113.7-120\n 135-202 4-14.7 6-23 6-25 0-7.3-7-11-21-11-8 0-13.2.8-15.5 2.5-2.3 1.7-4.2 5.8\n-5.5 12.5-1.3 4.7-2.7 10.3-4 17-12 48.7-34.8 92-68.5 130S65.3 228.3 18 247\nc-10 4-16 7.7-18 11 0 8.7 6 14.3 18 17 47.3 18.7 87.8 47 121.5 85S196 441.3 208\n 490c.7 2 1.3 5 2 9s1.2 6.7 1.5 8c.3 1.3 1 3.3 2 6s2.2 4.5 3.5 5.5c1.3 1 3.3\n 1.8 6 2.5s6 1 10 1c14 0 21-3.7 21-11 0-2-2-10.3-6-25-20-79.3-65-146.7-135-202\n l-3-3h399890zM100 241v40h399900v-40z",leftbrace:"M6 548l-6-6v-35l6-11c56-104 135.3-181.3 238-232 57.3-28.7 117\n-45 179-50h399577v120H403c-43.3 7-81 15-113 26-100.7 33-179.7 91-237 174-2.7\n 5-6 9-10 13-.7 1-7.3 1-20 1H6z",leftbraceunder:"M0 6l6-6h17c12.688 0 19.313.3 20 1 4 4 7.313 8.3 10 13\n 35.313 51.3 80.813 93.8 136.5 127.5 55.688 33.7 117.188 55.8 184.5 66.5.688\n 0 2 .3 4 1 18.688 2.7 76 4.3 172 5h399450v120H429l-6-1c-124.688-8-235-61.7\n-331-161C60.687 138.7 32.312 99.3 7 54L0 41V6z",leftgroup:"M400000 80\nH435C64 80 168.3 229.4 21 260c-5.9 1.2-18 0-18 0-2 0-3-1-3-3v-38C76 61 257 0\n 435 0h399565z",leftgroupunder:"M400000 262\nH435C64 262 168.3 112.6 21 82c-5.9-1.2-18 0-18 0-2 0-3 1-3 3v38c76 158 257 219\n 435 219h399565z",leftharpoon:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3\n-3.3 10.2-9.5 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5\n-18.3 3-21-1.3-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7\n-196 228-6.7 4.7-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40z",leftharpoonplus:"M0 267c.7 5.3 3 10 7 14h399993v-40H93c3.3-3.3 10.2-9.5\n 20.5-18.5s17.8-15.8 22.5-20.5c50.7-52 88-110.3 112-175 4-11.3 5-18.3 3-21-1.3\n-4-7.3-6-18-6-8 0-13 .7-15 2s-4.7 6.7-8 16c-42 98.7-107.3 174.7-196 228-6.7 4.7\n-10.7 8-12 10-1.3 2-2 5.7-2 11zm100-26v40h399900v-40zM0 435v40h400000v-40z\nm0 0v40h400000v-40z",leftharpoondown:"M7 241c-4 4-6.333 8.667-7 14 0 5.333.667 9 2 11s5.333\n 5.333 12 10c90.667 54 156 130 196 228 3.333 10.667 6.333 16.333 9 17 2 .667 5\n 1 9 1h5c10.667 0 16.667-2 18-6 2-2.667 1-9.667-3-21-32-87.333-82.667-157.667\n-152-211l-3-3h399907v-40zM93 281 H400000 v-40L7 241z",leftharpoondownplus:"M7 435c-4 4-6.3 8.7-7 14 0 5.3.7 9 2 11s5.3 5.3 12\n 10c90.7 54 156 130 196 228 3.3 10.7 6.3 16.3 9 17 2 .7 5 1 9 1h5c10.7 0 16.7\n-2 18-6 2-2.7 1-9.7-3-21-32-87.3-82.7-157.7-152-211l-3-3h399907v-40H7zm93 0\nv40h399900v-40zM0 241v40h399900v-40zm0 0v40h399900v-40z",lefthook:"M400000 281 H103s-33-11.2-61-33.5S0 197.3 0 164s14.2-61.2 42.5\n-83.5C70.8 58.2 104 47 142 47 c16.7 0 25 6.7 25 20 0 12-8.7 18.7-26 20-40 3.3\n-68.7 15.7-86 37-10 12-15 25.3-15 40 0 22.7 9.8 40.7 29.5 54 19.7 13.3 43.5 21\n 71.5 23h399859zM103 281v-40h399897v40z",leftlinesegment:"M40 281 V428 H0 V94 H40 V241 H400000 v40z\nM40 281 V428 H0 V94 H40 V241 H400000 v40z",leftmapsto:"M40 281 V448H0V74H40V241H400000v40z\nM40 281 V448H0V74H40V241H400000v40z",leftToFrom:"M0 147h400000v40H0zm0 214c68 40 115.7 95.7 143 167h22c15.3 0 23\n-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69-70-101l-7-8h399905v-40H95l7-8\nc28.7-32 52-65.7 70-101 10.7-23.3 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 265.3\n 68 321 0 361zm0-174v-40h399900v40zm100 154v40h399900v-40z",longequal:"M0 50 h400000 v40H0z m0 194h40000v40H0z\nM0 50 h400000 v40H0z m0 194h40000v40H0z",midbrace:"M200428 334\nc-100.7-8.3-195.3-44-280-108-55.3-42-101.7-93-139-153l-9-14c-2.7 4-5.7 8.7-9 14\n-53.3 86.7-123.7 153-211 199-66.7 36-137.3 56.3-212 62H0V214h199568c178.3-11.7\n 311.7-78.3 403-201 6-8 9.7-12 11-12 .7-.7 6.7-1 18-1s17.3.3 18 1c1.3 0 5 4 11\n 12 44.7 59.3 101.3 106.3 170 141s145.3 54.3 229 60h199572v120z",midbraceunder:"M199572 214\nc100.7 8.3 195.3 44 280 108 55.3 42 101.7 93 139 153l9 14c2.7-4 5.7-8.7 9-14\n 53.3-86.7 123.7-153 211-199 66.7-36 137.3-56.3 212-62h199568v120H200432c-178.3\n 11.7-311.7 78.3-403 201-6 8-9.7 12-11 12-.7.7-6.7 1-18 1s-17.3-.3-18-1c-1.3 0\n-5-4-11-12-44.7-59.3-101.3-106.3-170-141s-145.3-54.3-229-60H0V214z",oiintSize1:"M512.6 71.6c272.6 0 320.3 106.8 320.3 178.2 0 70.8-47.7 177.6\n-320.3 177.6S193.1 320.6 193.1 249.8c0-71.4 46.9-178.2 319.5-178.2z\nm368.1 178.2c0-86.4-60.9-215.4-368.1-215.4-306.4 0-367.3 129-367.3 215.4 0 85.8\n60.9 214.8 367.3 214.8 307.2 0 368.1-129 368.1-214.8z",oiintSize2:"M757.8 100.1c384.7 0 451.1 137.6 451.1 230 0 91.3-66.4 228.8\n-451.1 228.8-386.3 0-452.7-137.5-452.7-228.8 0-92.4 66.4-230 452.7-230z\nm502.4 230c0-111.2-82.4-277.2-502.4-277.2s-504 166-504 277.2\nc0 110 84 276 504 276s502.4-166 502.4-276z",oiiintSize1:"M681.4 71.6c408.9 0 480.5 106.8 480.5 178.2 0 70.8-71.6 177.6\n-480.5 177.6S202.1 320.6 202.1 249.8c0-71.4 70.5-178.2 479.3-178.2z\nm525.8 178.2c0-86.4-86.8-215.4-525.7-215.4-437.9 0-524.7 129-524.7 215.4 0\n85.8 86.8 214.8 524.7 214.8 438.9 0 525.7-129 525.7-214.8z",oiiintSize2:"M1021.2 53c603.6 0 707.8 165.8 707.8 277.2 0 110-104.2 275.8\n-707.8 275.8-606 0-710.2-165.8-710.2-275.8C311 218.8 415.2 53 1021.2 53z\nm770.4 277.1c0-131.2-126.4-327.6-770.5-327.6S248.4 198.9 248.4 330.1\nc0 130 128.8 326.4 772.7 326.4s770.5-196.4 770.5-326.4z",rightarrow:"M0 241v40h399891c-47.3 35.3-84 78-110 128\n-16.7 32-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20\n 11 8 0 13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7\n 39-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85\n-40.5-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n 151.7 139 205zm0 0v40h399900v-40z",rightbrace:"M400000 542l\n-6 6h-17c-12.7 0-19.3-.3-20-1-4-4-7.3-8.3-10-13-35.3-51.3-80.8-93.8-136.5-127.5\ns-117.2-55.8-184.5-66.5c-.7 0-2-.3-4-1-18.7-2.7-76-4.3-172-5H0V214h399571l6 1\nc124.7 8 235 61.7 331 161 31.3 33.3 59.7 72.7 85 118l7 13v35z",rightbraceunder:"M399994 0l6 6v35l-6 11c-56 104-135.3 181.3-238 232-57.3\n 28.7-117 45-179 50H-300V214h399897c43.3-7 81-15 113-26 100.7-33 179.7-91 237\n-174 2.7-5 6-9 10-13 .7-1 7.3-1 20-1h17z",rightgroup:"M0 80h399565c371 0 266.7 149.4 414 180 5.9 1.2 18 0 18 0 2 0\n 3-1 3-3v-38c-76-158-257-219-435-219H0z",rightgroupunder:"M0 262h399565c371 0 266.7-149.4 414-180 5.9-1.2 18 0 18\n 0 2 0 3 1 3 3v38c-76 158-257 219-435 219H0z",rightharpoon:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3\n-3.7-15.3-11-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2\n-10.7 0-16.7 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58\n 69.2 92 94.5zm0 0v40h399900v-40z",rightharpoonplus:"M0 241v40h399993c4.7-4.7 7-9.3 7-14 0-9.3-3.7-15.3-11\n-18-92.7-56.7-159-133.7-199-231-3.3-9.3-6-14.7-8-16-2-1.3-7-2-15-2-10.7 0-16.7\n 2-18 6-2 2.7-1 9.7 3 21 15.3 42 36.7 81.8 64 119.5 27.3 37.7 58 69.2 92 94.5z\nm0 0v40h399900v-40z m100 194v40h399900v-40zm0 0v40h399900v-40z",rightharpoondown:"M399747 511c0 7.3 6.7 11 20 11 8 0 13-.8 15-2.5s4.7-6.8\n 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3 8.5-5.8 9.5\n-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3-64.7 57-92 95\n-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 241v40h399900v-40z",rightharpoondownplus:"M399747 705c0 7.3 6.7 11 20 11 8 0 13-.8\n 15-2.5s4.7-6.8 8-15.5c40-94 99.3-166.3 178-217 13.3-8 20.3-12.3 21-13 5.3-3.3\n 8.5-5.8 9.5-7.5 1-1.7 1.5-5.2 1.5-10.5s-2.3-10.3-7-15H0v40h399908c-34 25.3\n-64.7 57-92 95-27.3 38-48.7 77.7-64 119-3.3 8.7-5 14-5 16zM0 435v40h399900v-40z\nm0-194v40h400000v-40zm0 0v40h400000v-40z",righthook:"M399859 241c-764 0 0 0 0 0 40-3.3 68.7-15.7 86-37 10-12 15-25.3\n 15-40 0-22.7-9.8-40.7-29.5-54-19.7-13.3-43.5-21-71.5-23-17.3-1.3-26-8-26-20 0\n-13.3 8.7-20 26-20 38 0 71 11.2 99 33.5 0 0 7 5.6 21 16.7 14 11.2 21 33.5 21\n 66.8s-14 61.2-42 83.5c-28 22.3-61 33.5-99 33.5L0 241z M0 281v-40h399859v40z",rightlinesegment:"M399960 241 V94 h40 V428 h-40 V281 H0 v-40z\nM399960 241 V94 h40 V428 h-40 V281 H0 v-40z",rightToFrom:"M400000 167c-70.7-42-118-97.7-142-167h-23c-15.3 0-23 .3-23\n 1 0 1.3 5.3 13.7 16 37 18 35.3 41.3 69 70 101l7 8H0v40h399905l-7 8c-28.7 32\n-52 65.7-70 101-10.7 23.3-16 35.7-16 37 0 .7 7.7 1 23 1h23c24-69.3 71.3-125 142\n-167z M100 147v40h399900v-40zM0 341v40h399900v-40z",twoheadleftarrow:"M0 167c68 40\n 115.7 95.7 143 167h22c15.3 0 23-.3 23-1 0-1.3-5.3-13.7-16-37-18-35.3-41.3-69\n-70-101l-7-8h125l9 7c50.7 39.3 85 86 103 140h46c0-4.7-6.3-18.7-19-42-18-35.3\n-40-67.3-66-96l-9-9h399716v-40H284l9-9c26-28.7 48-60.7 66-96 12.7-23.333 19\n-37.333 19-42h-46c-18 54-52.3 100.7-103 140l-9 7H95l7-8c28.7-32 52-65.7 70-101\n 10.7-23.333 16-35.7 16-37 0-.7-7.7-1-23-1h-22C115.7 71.3 68 127 0 167z",twoheadrightarrow:"M400000 167\nc-68-40-115.7-95.7-143-167h-22c-15.3 0-23 .3-23 1 0 1.3 5.3 13.7 16 37 18 35.3\n 41.3 69 70 101l7 8h-125l-9-7c-50.7-39.3-85-86-103-140h-46c0 4.7 6.3 18.7 19 42\n 18 35.3 40 67.3 66 96l9 9H0v40h399716l-9 9c-26 28.7-48 60.7-66 96-12.7 23.333\n-19 37.333-19 42h46c18-54 52.3-100.7 103-140l9-7h125l-7 8c-28.7 32-52 65.7-70\n 101-10.7 23.333-16 35.7-16 37 0 .7 7.7 1 23 1h22c27.3-71.3 75-127 143-167z",tilde1:"M200 55.538c-77 0-168 73.953-177 73.953-3 0-7\n-2.175-9-5.437L2 97c-1-2-2-4-2-6 0-4 2-7 5-9l20-12C116 12 171 0 207 0c86 0\n 114 68 191 68 78 0 168-68 177-68 4 0 7 2 9 5l12 19c1 2.175 2 4.35 2 6.525 0\n 4.35-2 7.613-5 9.788l-19 13.05c-92 63.077-116.937 75.308-183 76.128\n-68.267.847-113-73.952-191-73.952z",tilde2:"M344 55.266c-142 0-300.638 81.316-311.5 86.418\n-8.01 3.762-22.5 10.91-23.5 5.562L1 120c-1-2-1-3-1-4 0-5 3-9 8-10l18.4-9C160.9\n 31.9 283 0 358 0c148 0 188 122 331 122s314-97 326-97c4 0 8 2 10 7l7 21.114\nc1 2.14 1 3.21 1 4.28 0 5.347-3 9.626-7 10.696l-22.3 12.622C852.6 158.372 751\n 181.476 676 181.476c-149 0-189-126.21-332-126.21z",tilde3:"M786 59C457 59 32 175.242 13 175.242c-6 0-10-3.457\n-11-10.37L.15 138c-1-7 3-12 10-13l19.2-6.4C378.4 40.7 634.3 0 804.3 0c337 0\n 411.8 157 746.8 157 328 0 754-112 773-112 5 0 10 3 11 9l1 14.075c1 8.066-.697\n 16.595-6.697 17.492l-21.052 7.31c-367.9 98.146-609.15 122.696-778.15 122.696\n -338 0-409-156.573-744-156.573z",tilde4:"M786 58C457 58 32 177.487 13 177.487c-6 0-10-3.345\n-11-10.035L.15 143c-1-7 3-12 10-13l22-6.7C381.2 35 637.15 0 807.15 0c337 0 409\n 177 744 177 328 0 754-127 773-127 5 0 10 3 11 9l1 14.794c1 7.805-3 13.38-9\n 14.495l-20.7 5.574c-366.85 99.79-607.3 139.372-776.3 139.372-338 0-409\n -175.236-744-175.236z",vec:"M377 20c0-5.333 1.833-10 5.5-14S391 0 397 0c4.667 0 8.667 1.667 12 5\n3.333 2.667 6.667 9 10 19 6.667 24.667 20.333 43.667 41 57 7.333 4.667 11\n10.667 11 18 0 6-1 10-3 12s-6.667 5-14 9c-28.667 14.667-53.667 35.667-75 63\n-1.333 1.333-3.167 3.5-5.5 6.5s-4 4.833-5 5.5c-1 .667-2.5 1.333-4.5 2s-4.333 1\n-7 1c-4.667 0-9.167-1.833-13.5-5.5S337 184 337 178c0-12.667 15.667-32.333 47-59\nH213l-171-1c-8.667-6-13-12.333-13-19 0-4.667 4.333-11.333 13-20h359\nc-16-25.333-24-45-24-59z",widehat1:"M529 0h5l519 115c5 1 9 5 9 10 0 1-1 2-1 3l-4 22\nc-1 5-5 9-11 9h-2L532 67 19 159h-2c-5 0-9-4-11-9l-5-22c-1-6 2-12 8-13z",widehat2:"M1181 0h2l1171 176c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 220h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat3:"M1181 0h2l1171 236c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 280h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widehat4:"M1181 0h2l1171 296c6 0 10 5 10 11l-2 23c-1 6-5 10\n-11 10h-1L1182 67 15 340h-1c-6 0-10-4-11-10l-2-23c-1-6 4-11 10-11z",widecheck1:"M529,159h5l519,-115c5,-1,9,-5,9,-10c0,-1,-1,-2,-1,-3l-4,-22c-1,\n-5,-5,-9,-11,-9h-2l-512,92l-513,-92h-2c-5,0,-9,4,-11,9l-5,22c-1,6,2,12,8,13z",widecheck2:"M1181,220h2l1171,-176c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,153l-1167,-153h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck3:"M1181,280h2l1171,-236c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,213l-1167,-213h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",widecheck4:"M1181,340h2l1171,-296c6,0,10,-5,10,-11l-2,-23c-1,-6,-5,-10,\n-11,-10h-1l-1168,273l-1167,-273h-1c-6,0,-10,4,-11,10l-2,23c-1,6,4,11,10,11z",baraboveleftarrow:"M400000 620h-399890l3 -3c68.7 -52.7 113.7 -120 135 -202\nc4 -14.7 6 -23 6 -25c0 -7.3 -7 -11 -21 -11c-8 0 -13.2 0.8 -15.5 2.5\nc-2.3 1.7 -4.2 5.8 -5.5 12.5c-1.3 4.7 -2.7 10.3 -4 17c-12 48.7 -34.8 92 -68.5 130\ns-74.2 66.3 -121.5 85c-10 4 -16 7.7 -18 11c0 8.7 6 14.3 18 17c47.3 18.7 87.8 47\n121.5 85s56.5 81.3 68.5 130c0.7 2 1.3 5 2 9s1.2 6.7 1.5 8c0.3 1.3 1 3.3 2 6\ns2.2 4.5 3.5 5.5c1.3 1 3.3 1.8 6 2.5s6 1 10 1c14 0 21 -3.7 21 -11\nc0 -2 -2 -10.3 -6 -25c-20 -79.3 -65 -146.7 -135 -202l-3 -3h399890z\nM100 620v40h399900v-40z M0 241v40h399900v-40zM0 241v40h399900v-40z",rightarrowabovebar:"M0 241v40h399891c-47.3 35.3-84 78-110 128-16.7 32\n-27.7 63.7-33 95 0 1.3-.2 2.7-.5 4-.3 1.3-.5 2.3-.5 3 0 7.3 6.7 11 20 11 8 0\n13.2-.8 15.5-2.5 2.3-1.7 4.2-5.5 5.5-11.5 2-13.3 5.7-27 11-41 14.7-44.7 39\n-84.5 73-119.5s73.7-60.2 119-75.5c6-2 9-5.7 9-11s-3-9-9-11c-45.3-15.3-85-40.5\n-119-75.5s-58.3-74.8-73-119.5c-4.7-14-8.3-27.3-11-40-1.3-6.7-3.2-10.8-5.5\n-12.5-2.3-1.7-7.5-2.5-15.5-2.5-14 0-21 3.7-21 11 0 2 2 10.3 6 25 20.7 83.3 67\n151.7 139 205zm96 379h399894v40H0zm0 0h399904v40H0z",baraboveshortleftharpoon:"M507,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17\nc2,0.7,5,1,9,1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21\nc-32,-87.3,-82.7,-157.7,-152,-211c0,0,-3,-3,-3,-3l399351,0l0,-40\nc-398570,0,-399437,0,-399437,0z M593 435 v40 H399500 v-40z\nM0 281 v-40 H399908 v40z M0 281 v-40 H399908 v40z",rightharpoonaboveshortbar:"M0,241 l0,40c399126,0,399993,0,399993,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM0 241 v40 H399908 v-40z M0 475 v-40 H399500 v40z M0 475 v-40 H399500 v40z",shortbaraboveleftharpoon:"M7,435c-4,4,-6.3,8.7,-7,14c0,5.3,0.7,9,2,11\nc1.3,2,5.3,5.3,12,10c90.7,54,156,130,196,228c3.3,10.7,6.3,16.3,9,17c2,0.7,5,1,9,\n1c0,0,5,0,5,0c10.7,0,16.7,-2,18,-6c2,-2.7,1,-9.7,-3,-21c-32,-87.3,-82.7,-157.7,\n-152,-211c0,0,-3,-3,-3,-3l399907,0l0,-40c-399126,0,-399993,0,-399993,0z\nM93 435 v40 H400000 v-40z M500 241 v40 H400000 v-40z M500 241 v40 H400000 v-40z",shortrightharpoonabovebar:"M53,241l0,40c398570,0,399437,0,399437,0\nc4.7,-4.7,7,-9.3,7,-14c0,-9.3,-3.7,-15.3,-11,-18c-92.7,-56.7,-159,-133.7,-199,\n-231c-3.3,-9.3,-6,-14.7,-8,-16c-2,-1.3,-7,-2,-15,-2c-10.7,0,-16.7,2,-18,6\nc-2,2.7,-1,9.7,3,21c15.3,42,36.7,81.8,64,119.5c27.3,37.7,58,69.2,92,94.5z\nM500 241 v40 H399408 v-40z M500 435 v40 H400000 v-40z"};class A{constructor(e){this.children=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.children=e,this.classes=[],this.height=0,this.depth=0,this.maxFontSize=0,this.style={}}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createDocumentFragment();for(let t=0;te.toText())).join("")}}var T={"AMS-Regular":{32:[0,0,0,0,.25],65:[0,.68889,0,0,.72222],66:[0,.68889,0,0,.66667],67:[0,.68889,0,0,.72222],68:[0,.68889,0,0,.72222],69:[0,.68889,0,0,.66667],70:[0,.68889,0,0,.61111],71:[0,.68889,0,0,.77778],72:[0,.68889,0,0,.77778],73:[0,.68889,0,0,.38889],74:[.16667,.68889,0,0,.5],75:[0,.68889,0,0,.77778],76:[0,.68889,0,0,.66667],77:[0,.68889,0,0,.94445],78:[0,.68889,0,0,.72222],79:[.16667,.68889,0,0,.77778],80:[0,.68889,0,0,.61111],81:[.16667,.68889,0,0,.77778],82:[0,.68889,0,0,.72222],83:[0,.68889,0,0,.55556],84:[0,.68889,0,0,.66667],85:[0,.68889,0,0,.72222],86:[0,.68889,0,0,.72222],87:[0,.68889,0,0,1],88:[0,.68889,0,0,.72222],89:[0,.68889,0,0,.72222],90:[0,.68889,0,0,.66667],107:[0,.68889,0,0,.55556],160:[0,0,0,0,.25],165:[0,.675,.025,0,.75],174:[.15559,.69224,0,0,.94666],240:[0,.68889,0,0,.55556],295:[0,.68889,0,0,.54028],710:[0,.825,0,0,2.33334],732:[0,.9,0,0,2.33334],770:[0,.825,0,0,2.33334],771:[0,.9,0,0,2.33334],989:[.08167,.58167,0,0,.77778],1008:[0,.43056,.04028,0,.66667],8245:[0,.54986,0,0,.275],8463:[0,.68889,0,0,.54028],8487:[0,.68889,0,0,.72222],8498:[0,.68889,0,0,.55556],8502:[0,.68889,0,0,.66667],8503:[0,.68889,0,0,.44445],8504:[0,.68889,0,0,.66667],8513:[0,.68889,0,0,.63889],8592:[-.03598,.46402,0,0,.5],8594:[-.03598,.46402,0,0,.5],8602:[-.13313,.36687,0,0,1],8603:[-.13313,.36687,0,0,1],8606:[.01354,.52239,0,0,1],8608:[.01354,.52239,0,0,1],8610:[.01354,.52239,0,0,1.11111],8611:[.01354,.52239,0,0,1.11111],8619:[0,.54986,0,0,1],8620:[0,.54986,0,0,1],8621:[-.13313,.37788,0,0,1.38889],8622:[-.13313,.36687,0,0,1],8624:[0,.69224,0,0,.5],8625:[0,.69224,0,0,.5],8630:[0,.43056,0,0,1],8631:[0,.43056,0,0,1],8634:[.08198,.58198,0,0,.77778],8635:[.08198,.58198,0,0,.77778],8638:[.19444,.69224,0,0,.41667],8639:[.19444,.69224,0,0,.41667],8642:[.19444,.69224,0,0,.41667],8643:[.19444,.69224,0,0,.41667],8644:[.1808,.675,0,0,1],8646:[.1808,.675,0,0,1],8647:[.1808,.675,0,0,1],8648:[.19444,.69224,0,0,.83334],8649:[.1808,.675,0,0,1],8650:[.19444,.69224,0,0,.83334],8651:[.01354,.52239,0,0,1],8652:[.01354,.52239,0,0,1],8653:[-.13313,.36687,0,0,1],8654:[-.13313,.36687,0,0,1],8655:[-.13313,.36687,0,0,1],8666:[.13667,.63667,0,0,1],8667:[.13667,.63667,0,0,1],8669:[-.13313,.37788,0,0,1],8672:[-.064,.437,0,0,1.334],8674:[-.064,.437,0,0,1.334],8705:[0,.825,0,0,.5],8708:[0,.68889,0,0,.55556],8709:[.08167,.58167,0,0,.77778],8717:[0,.43056,0,0,.42917],8722:[-.03598,.46402,0,0,.5],8724:[.08198,.69224,0,0,.77778],8726:[.08167,.58167,0,0,.77778],8733:[0,.69224,0,0,.77778],8736:[0,.69224,0,0,.72222],8737:[0,.69224,0,0,.72222],8738:[.03517,.52239,0,0,.72222],8739:[.08167,.58167,0,0,.22222],8740:[.25142,.74111,0,0,.27778],8741:[.08167,.58167,0,0,.38889],8742:[.25142,.74111,0,0,.5],8756:[0,.69224,0,0,.66667],8757:[0,.69224,0,0,.66667],8764:[-.13313,.36687,0,0,.77778],8765:[-.13313,.37788,0,0,.77778],8769:[-.13313,.36687,0,0,.77778],8770:[-.03625,.46375,0,0,.77778],8774:[.30274,.79383,0,0,.77778],8776:[-.01688,.48312,0,0,.77778],8778:[.08167,.58167,0,0,.77778],8782:[.06062,.54986,0,0,.77778],8783:[.06062,.54986,0,0,.77778],8785:[.08198,.58198,0,0,.77778],8786:[.08198,.58198,0,0,.77778],8787:[.08198,.58198,0,0,.77778],8790:[0,.69224,0,0,.77778],8791:[.22958,.72958,0,0,.77778],8796:[.08198,.91667,0,0,.77778],8806:[.25583,.75583,0,0,.77778],8807:[.25583,.75583,0,0,.77778],8808:[.25142,.75726,0,0,.77778],8809:[.25142,.75726,0,0,.77778],8812:[.25583,.75583,0,0,.5],8814:[.20576,.70576,0,0,.77778],8815:[.20576,.70576,0,0,.77778],8816:[.30274,.79383,0,0,.77778],8817:[.30274,.79383,0,0,.77778],8818:[.22958,.72958,0,0,.77778],8819:[.22958,.72958,0,0,.77778],8822:[.1808,.675,0,0,.77778],8823:[.1808,.675,0,0,.77778],8828:[.13667,.63667,0,0,.77778],8829:[.13667,.63667,0,0,.77778],8830:[.22958,.72958,0,0,.77778],8831:[.22958,.72958,0,0,.77778],8832:[.20576,.70576,0,0,.77778],8833:[.20576,.70576,0,0,.77778],8840:[.30274,.79383,0,0,.77778],8841:[.30274,.79383,0,0,.77778],8842:[.13597,.63597,0,0,.77778],8843:[.13597,.63597,0,0,.77778],8847:[.03517,.54986,0,0,.77778],8848:[.03517,.54986,0,0,.77778],8858:[.08198,.58198,0,0,.77778],8859:[.08198,.58198,0,0,.77778],8861:[.08198,.58198,0,0,.77778],8862:[0,.675,0,0,.77778],8863:[0,.675,0,0,.77778],8864:[0,.675,0,0,.77778],8865:[0,.675,0,0,.77778],8872:[0,.69224,0,0,.61111],8873:[0,.69224,0,0,.72222],8874:[0,.69224,0,0,.88889],8876:[0,.68889,0,0,.61111],8877:[0,.68889,0,0,.61111],8878:[0,.68889,0,0,.72222],8879:[0,.68889,0,0,.72222],8882:[.03517,.54986,0,0,.77778],8883:[.03517,.54986,0,0,.77778],8884:[.13667,.63667,0,0,.77778],8885:[.13667,.63667,0,0,.77778],8888:[0,.54986,0,0,1.11111],8890:[.19444,.43056,0,0,.55556],8891:[.19444,.69224,0,0,.61111],8892:[.19444,.69224,0,0,.61111],8901:[0,.54986,0,0,.27778],8903:[.08167,.58167,0,0,.77778],8905:[.08167,.58167,0,0,.77778],8906:[.08167,.58167,0,0,.77778],8907:[0,.69224,0,0,.77778],8908:[0,.69224,0,0,.77778],8909:[-.03598,.46402,0,0,.77778],8910:[0,.54986,0,0,.76042],8911:[0,.54986,0,0,.76042],8912:[.03517,.54986,0,0,.77778],8913:[.03517,.54986,0,0,.77778],8914:[0,.54986,0,0,.66667],8915:[0,.54986,0,0,.66667],8916:[0,.69224,0,0,.66667],8918:[.0391,.5391,0,0,.77778],8919:[.0391,.5391,0,0,.77778],8920:[.03517,.54986,0,0,1.33334],8921:[.03517,.54986,0,0,1.33334],8922:[.38569,.88569,0,0,.77778],8923:[.38569,.88569,0,0,.77778],8926:[.13667,.63667,0,0,.77778],8927:[.13667,.63667,0,0,.77778],8928:[.30274,.79383,0,0,.77778],8929:[.30274,.79383,0,0,.77778],8934:[.23222,.74111,0,0,.77778],8935:[.23222,.74111,0,0,.77778],8936:[.23222,.74111,0,0,.77778],8937:[.23222,.74111,0,0,.77778],8938:[.20576,.70576,0,0,.77778],8939:[.20576,.70576,0,0,.77778],8940:[.30274,.79383,0,0,.77778],8941:[.30274,.79383,0,0,.77778],8994:[.19444,.69224,0,0,.77778],8995:[.19444,.69224,0,0,.77778],9416:[.15559,.69224,0,0,.90222],9484:[0,.69224,0,0,.5],9488:[0,.69224,0,0,.5],9492:[0,.37788,0,0,.5],9496:[0,.37788,0,0,.5],9585:[.19444,.68889,0,0,.88889],9586:[.19444,.74111,0,0,.88889],9632:[0,.675,0,0,.77778],9633:[0,.675,0,0,.77778],9650:[0,.54986,0,0,.72222],9651:[0,.54986,0,0,.72222],9654:[.03517,.54986,0,0,.77778],9660:[0,.54986,0,0,.72222],9661:[0,.54986,0,0,.72222],9664:[.03517,.54986,0,0,.77778],9674:[.11111,.69224,0,0,.66667],9733:[.19444,.69224,0,0,.94445],10003:[0,.69224,0,0,.83334],10016:[0,.69224,0,0,.83334],10731:[.11111,.69224,0,0,.66667],10846:[.19444,.75583,0,0,.61111],10877:[.13667,.63667,0,0,.77778],10878:[.13667,.63667,0,0,.77778],10885:[.25583,.75583,0,0,.77778],10886:[.25583,.75583,0,0,.77778],10887:[.13597,.63597,0,0,.77778],10888:[.13597,.63597,0,0,.77778],10889:[.26167,.75726,0,0,.77778],10890:[.26167,.75726,0,0,.77778],10891:[.48256,.98256,0,0,.77778],10892:[.48256,.98256,0,0,.77778],10901:[.13667,.63667,0,0,.77778],10902:[.13667,.63667,0,0,.77778],10933:[.25142,.75726,0,0,.77778],10934:[.25142,.75726,0,0,.77778],10935:[.26167,.75726,0,0,.77778],10936:[.26167,.75726,0,0,.77778],10937:[.26167,.75726,0,0,.77778],10938:[.26167,.75726,0,0,.77778],10949:[.25583,.75583,0,0,.77778],10950:[.25583,.75583,0,0,.77778],10955:[.28481,.79383,0,0,.77778],10956:[.28481,.79383,0,0,.77778],57350:[.08167,.58167,0,0,.22222],57351:[.08167,.58167,0,0,.38889],57352:[.08167,.58167,0,0,.77778],57353:[0,.43056,.04028,0,.66667],57356:[.25142,.75726,0,0,.77778],57357:[.25142,.75726,0,0,.77778],57358:[.41951,.91951,0,0,.77778],57359:[.30274,.79383,0,0,.77778],57360:[.30274,.79383,0,0,.77778],57361:[.41951,.91951,0,0,.77778],57366:[.25142,.75726,0,0,.77778],57367:[.25142,.75726,0,0,.77778],57368:[.25142,.75726,0,0,.77778],57369:[.25142,.75726,0,0,.77778],57370:[.13597,.63597,0,0,.77778],57371:[.13597,.63597,0,0,.77778]},"Caligraphic-Regular":{32:[0,0,0,0,.25],65:[0,.68333,0,.19445,.79847],66:[0,.68333,.03041,.13889,.65681],67:[0,.68333,.05834,.13889,.52653],68:[0,.68333,.02778,.08334,.77139],69:[0,.68333,.08944,.11111,.52778],70:[0,.68333,.09931,.11111,.71875],71:[.09722,.68333,.0593,.11111,.59487],72:[0,.68333,.00965,.11111,.84452],73:[0,.68333,.07382,0,.54452],74:[.09722,.68333,.18472,.16667,.67778],75:[0,.68333,.01445,.05556,.76195],76:[0,.68333,0,.13889,.68972],77:[0,.68333,0,.13889,1.2009],78:[0,.68333,.14736,.08334,.82049],79:[0,.68333,.02778,.11111,.79611],80:[0,.68333,.08222,.08334,.69556],81:[.09722,.68333,0,.11111,.81667],82:[0,.68333,0,.08334,.8475],83:[0,.68333,.075,.13889,.60556],84:[0,.68333,.25417,0,.54464],85:[0,.68333,.09931,.08334,.62583],86:[0,.68333,.08222,0,.61278],87:[0,.68333,.08222,.08334,.98778],88:[0,.68333,.14643,.13889,.7133],89:[.09722,.68333,.08222,.08334,.66834],90:[0,.68333,.07944,.13889,.72473],160:[0,0,0,0,.25]},"Fraktur-Regular":{32:[0,0,0,0,.25],33:[0,.69141,0,0,.29574],34:[0,.69141,0,0,.21471],38:[0,.69141,0,0,.73786],39:[0,.69141,0,0,.21201],40:[.24982,.74947,0,0,.38865],41:[.24982,.74947,0,0,.38865],42:[0,.62119,0,0,.27764],43:[.08319,.58283,0,0,.75623],44:[0,.10803,0,0,.27764],45:[.08319,.58283,0,0,.75623],46:[0,.10803,0,0,.27764],47:[.24982,.74947,0,0,.50181],48:[0,.47534,0,0,.50181],49:[0,.47534,0,0,.50181],50:[0,.47534,0,0,.50181],51:[.18906,.47534,0,0,.50181],52:[.18906,.47534,0,0,.50181],53:[.18906,.47534,0,0,.50181],54:[0,.69141,0,0,.50181],55:[.18906,.47534,0,0,.50181],56:[0,.69141,0,0,.50181],57:[.18906,.47534,0,0,.50181],58:[0,.47534,0,0,.21606],59:[.12604,.47534,0,0,.21606],61:[-.13099,.36866,0,0,.75623],63:[0,.69141,0,0,.36245],65:[0,.69141,0,0,.7176],66:[0,.69141,0,0,.88397],67:[0,.69141,0,0,.61254],68:[0,.69141,0,0,.83158],69:[0,.69141,0,0,.66278],70:[.12604,.69141,0,0,.61119],71:[0,.69141,0,0,.78539],72:[.06302,.69141,0,0,.7203],73:[0,.69141,0,0,.55448],74:[.12604,.69141,0,0,.55231],75:[0,.69141,0,0,.66845],76:[0,.69141,0,0,.66602],77:[0,.69141,0,0,1.04953],78:[0,.69141,0,0,.83212],79:[0,.69141,0,0,.82699],80:[.18906,.69141,0,0,.82753],81:[.03781,.69141,0,0,.82699],82:[0,.69141,0,0,.82807],83:[0,.69141,0,0,.82861],84:[0,.69141,0,0,.66899],85:[0,.69141,0,0,.64576],86:[0,.69141,0,0,.83131],87:[0,.69141,0,0,1.04602],88:[0,.69141,0,0,.71922],89:[.18906,.69141,0,0,.83293],90:[.12604,.69141,0,0,.60201],91:[.24982,.74947,0,0,.27764],93:[.24982,.74947,0,0,.27764],94:[0,.69141,0,0,.49965],97:[0,.47534,0,0,.50046],98:[0,.69141,0,0,.51315],99:[0,.47534,0,0,.38946],100:[0,.62119,0,0,.49857],101:[0,.47534,0,0,.40053],102:[.18906,.69141,0,0,.32626],103:[.18906,.47534,0,0,.5037],104:[.18906,.69141,0,0,.52126],105:[0,.69141,0,0,.27899],106:[0,.69141,0,0,.28088],107:[0,.69141,0,0,.38946],108:[0,.69141,0,0,.27953],109:[0,.47534,0,0,.76676],110:[0,.47534,0,0,.52666],111:[0,.47534,0,0,.48885],112:[.18906,.52396,0,0,.50046],113:[.18906,.47534,0,0,.48912],114:[0,.47534,0,0,.38919],115:[0,.47534,0,0,.44266],116:[0,.62119,0,0,.33301],117:[0,.47534,0,0,.5172],118:[0,.52396,0,0,.5118],119:[0,.52396,0,0,.77351],120:[.18906,.47534,0,0,.38865],121:[.18906,.47534,0,0,.49884],122:[.18906,.47534,0,0,.39054],160:[0,0,0,0,.25],8216:[0,.69141,0,0,.21471],8217:[0,.69141,0,0,.21471],58112:[0,.62119,0,0,.49749],58113:[0,.62119,0,0,.4983],58114:[.18906,.69141,0,0,.33328],58115:[.18906,.69141,0,0,.32923],58116:[.18906,.47534,0,0,.50343],58117:[0,.69141,0,0,.33301],58118:[0,.62119,0,0,.33409],58119:[0,.47534,0,0,.50073]},"Main-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.35],34:[0,.69444,0,0,.60278],35:[.19444,.69444,0,0,.95833],36:[.05556,.75,0,0,.575],37:[.05556,.75,0,0,.95833],38:[0,.69444,0,0,.89444],39:[0,.69444,0,0,.31944],40:[.25,.75,0,0,.44722],41:[.25,.75,0,0,.44722],42:[0,.75,0,0,.575],43:[.13333,.63333,0,0,.89444],44:[.19444,.15556,0,0,.31944],45:[0,.44444,0,0,.38333],46:[0,.15556,0,0,.31944],47:[.25,.75,0,0,.575],48:[0,.64444,0,0,.575],49:[0,.64444,0,0,.575],50:[0,.64444,0,0,.575],51:[0,.64444,0,0,.575],52:[0,.64444,0,0,.575],53:[0,.64444,0,0,.575],54:[0,.64444,0,0,.575],55:[0,.64444,0,0,.575],56:[0,.64444,0,0,.575],57:[0,.64444,0,0,.575],58:[0,.44444,0,0,.31944],59:[.19444,.44444,0,0,.31944],60:[.08556,.58556,0,0,.89444],61:[-.10889,.39111,0,0,.89444],62:[.08556,.58556,0,0,.89444],63:[0,.69444,0,0,.54305],64:[0,.69444,0,0,.89444],65:[0,.68611,0,0,.86944],66:[0,.68611,0,0,.81805],67:[0,.68611,0,0,.83055],68:[0,.68611,0,0,.88194],69:[0,.68611,0,0,.75555],70:[0,.68611,0,0,.72361],71:[0,.68611,0,0,.90416],72:[0,.68611,0,0,.9],73:[0,.68611,0,0,.43611],74:[0,.68611,0,0,.59444],75:[0,.68611,0,0,.90138],76:[0,.68611,0,0,.69166],77:[0,.68611,0,0,1.09166],78:[0,.68611,0,0,.9],79:[0,.68611,0,0,.86388],80:[0,.68611,0,0,.78611],81:[.19444,.68611,0,0,.86388],82:[0,.68611,0,0,.8625],83:[0,.68611,0,0,.63889],84:[0,.68611,0,0,.8],85:[0,.68611,0,0,.88472],86:[0,.68611,.01597,0,.86944],87:[0,.68611,.01597,0,1.18888],88:[0,.68611,0,0,.86944],89:[0,.68611,.02875,0,.86944],90:[0,.68611,0,0,.70277],91:[.25,.75,0,0,.31944],92:[.25,.75,0,0,.575],93:[.25,.75,0,0,.31944],94:[0,.69444,0,0,.575],95:[.31,.13444,.03194,0,.575],97:[0,.44444,0,0,.55902],98:[0,.69444,0,0,.63889],99:[0,.44444,0,0,.51111],100:[0,.69444,0,0,.63889],101:[0,.44444,0,0,.52708],102:[0,.69444,.10903,0,.35139],103:[.19444,.44444,.01597,0,.575],104:[0,.69444,0,0,.63889],105:[0,.69444,0,0,.31944],106:[.19444,.69444,0,0,.35139],107:[0,.69444,0,0,.60694],108:[0,.69444,0,0,.31944],109:[0,.44444,0,0,.95833],110:[0,.44444,0,0,.63889],111:[0,.44444,0,0,.575],112:[.19444,.44444,0,0,.63889],113:[.19444,.44444,0,0,.60694],114:[0,.44444,0,0,.47361],115:[0,.44444,0,0,.45361],116:[0,.63492,0,0,.44722],117:[0,.44444,0,0,.63889],118:[0,.44444,.01597,0,.60694],119:[0,.44444,.01597,0,.83055],120:[0,.44444,0,0,.60694],121:[.19444,.44444,.01597,0,.60694],122:[0,.44444,0,0,.51111],123:[.25,.75,0,0,.575],124:[.25,.75,0,0,.31944],125:[.25,.75,0,0,.575],126:[.35,.34444,0,0,.575],160:[0,0,0,0,.25],163:[0,.69444,0,0,.86853],168:[0,.69444,0,0,.575],172:[0,.44444,0,0,.76666],176:[0,.69444,0,0,.86944],177:[.13333,.63333,0,0,.89444],184:[.17014,0,0,0,.51111],198:[0,.68611,0,0,1.04166],215:[.13333,.63333,0,0,.89444],216:[.04861,.73472,0,0,.89444],223:[0,.69444,0,0,.59722],230:[0,.44444,0,0,.83055],247:[.13333,.63333,0,0,.89444],248:[.09722,.54167,0,0,.575],305:[0,.44444,0,0,.31944],338:[0,.68611,0,0,1.16944],339:[0,.44444,0,0,.89444],567:[.19444,.44444,0,0,.35139],710:[0,.69444,0,0,.575],711:[0,.63194,0,0,.575],713:[0,.59611,0,0,.575],714:[0,.69444,0,0,.575],715:[0,.69444,0,0,.575],728:[0,.69444,0,0,.575],729:[0,.69444,0,0,.31944],730:[0,.69444,0,0,.86944],732:[0,.69444,0,0,.575],733:[0,.69444,0,0,.575],915:[0,.68611,0,0,.69166],916:[0,.68611,0,0,.95833],920:[0,.68611,0,0,.89444],923:[0,.68611,0,0,.80555],926:[0,.68611,0,0,.76666],928:[0,.68611,0,0,.9],931:[0,.68611,0,0,.83055],933:[0,.68611,0,0,.89444],934:[0,.68611,0,0,.83055],936:[0,.68611,0,0,.89444],937:[0,.68611,0,0,.83055],8211:[0,.44444,.03194,0,.575],8212:[0,.44444,.03194,0,1.14999],8216:[0,.69444,0,0,.31944],8217:[0,.69444,0,0,.31944],8220:[0,.69444,0,0,.60278],8221:[0,.69444,0,0,.60278],8224:[.19444,.69444,0,0,.51111],8225:[.19444,.69444,0,0,.51111],8242:[0,.55556,0,0,.34444],8407:[0,.72444,.15486,0,.575],8463:[0,.69444,0,0,.66759],8465:[0,.69444,0,0,.83055],8467:[0,.69444,0,0,.47361],8472:[.19444,.44444,0,0,.74027],8476:[0,.69444,0,0,.83055],8501:[0,.69444,0,0,.70277],8592:[-.10889,.39111,0,0,1.14999],8593:[.19444,.69444,0,0,.575],8594:[-.10889,.39111,0,0,1.14999],8595:[.19444,.69444,0,0,.575],8596:[-.10889,.39111,0,0,1.14999],8597:[.25,.75,0,0,.575],8598:[.19444,.69444,0,0,1.14999],8599:[.19444,.69444,0,0,1.14999],8600:[.19444,.69444,0,0,1.14999],8601:[.19444,.69444,0,0,1.14999],8636:[-.10889,.39111,0,0,1.14999],8637:[-.10889,.39111,0,0,1.14999],8640:[-.10889,.39111,0,0,1.14999],8641:[-.10889,.39111,0,0,1.14999],8656:[-.10889,.39111,0,0,1.14999],8657:[.19444,.69444,0,0,.70277],8658:[-.10889,.39111,0,0,1.14999],8659:[.19444,.69444,0,0,.70277],8660:[-.10889,.39111,0,0,1.14999],8661:[.25,.75,0,0,.70277],8704:[0,.69444,0,0,.63889],8706:[0,.69444,.06389,0,.62847],8707:[0,.69444,0,0,.63889],8709:[.05556,.75,0,0,.575],8711:[0,.68611,0,0,.95833],8712:[.08556,.58556,0,0,.76666],8715:[.08556,.58556,0,0,.76666],8722:[.13333,.63333,0,0,.89444],8723:[.13333,.63333,0,0,.89444],8725:[.25,.75,0,0,.575],8726:[.25,.75,0,0,.575],8727:[-.02778,.47222,0,0,.575],8728:[-.02639,.47361,0,0,.575],8729:[-.02639,.47361,0,0,.575],8730:[.18,.82,0,0,.95833],8733:[0,.44444,0,0,.89444],8734:[0,.44444,0,0,1.14999],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.31944],8741:[.25,.75,0,0,.575],8743:[0,.55556,0,0,.76666],8744:[0,.55556,0,0,.76666],8745:[0,.55556,0,0,.76666],8746:[0,.55556,0,0,.76666],8747:[.19444,.69444,.12778,0,.56875],8764:[-.10889,.39111,0,0,.89444],8768:[.19444,.69444,0,0,.31944],8771:[.00222,.50222,0,0,.89444],8773:[.027,.638,0,0,.894],8776:[.02444,.52444,0,0,.89444],8781:[.00222,.50222,0,0,.89444],8801:[.00222,.50222,0,0,.89444],8804:[.19667,.69667,0,0,.89444],8805:[.19667,.69667,0,0,.89444],8810:[.08556,.58556,0,0,1.14999],8811:[.08556,.58556,0,0,1.14999],8826:[.08556,.58556,0,0,.89444],8827:[.08556,.58556,0,0,.89444],8834:[.08556,.58556,0,0,.89444],8835:[.08556,.58556,0,0,.89444],8838:[.19667,.69667,0,0,.89444],8839:[.19667,.69667,0,0,.89444],8846:[0,.55556,0,0,.76666],8849:[.19667,.69667,0,0,.89444],8850:[.19667,.69667,0,0,.89444],8851:[0,.55556,0,0,.76666],8852:[0,.55556,0,0,.76666],8853:[.13333,.63333,0,0,.89444],8854:[.13333,.63333,0,0,.89444],8855:[.13333,.63333,0,0,.89444],8856:[.13333,.63333,0,0,.89444],8857:[.13333,.63333,0,0,.89444],8866:[0,.69444,0,0,.70277],8867:[0,.69444,0,0,.70277],8868:[0,.69444,0,0,.89444],8869:[0,.69444,0,0,.89444],8900:[-.02639,.47361,0,0,.575],8901:[-.02639,.47361,0,0,.31944],8902:[-.02778,.47222,0,0,.575],8968:[.25,.75,0,0,.51111],8969:[.25,.75,0,0,.51111],8970:[.25,.75,0,0,.51111],8971:[.25,.75,0,0,.51111],8994:[-.13889,.36111,0,0,1.14999],8995:[-.13889,.36111,0,0,1.14999],9651:[.19444,.69444,0,0,1.02222],9657:[-.02778,.47222,0,0,.575],9661:[.19444,.69444,0,0,1.02222],9667:[-.02778,.47222,0,0,.575],9711:[.19444,.69444,0,0,1.14999],9824:[.12963,.69444,0,0,.89444],9825:[.12963,.69444,0,0,.89444],9826:[.12963,.69444,0,0,.89444],9827:[.12963,.69444,0,0,.89444],9837:[0,.75,0,0,.44722],9838:[.19444,.69444,0,0,.44722],9839:[.19444,.69444,0,0,.44722],10216:[.25,.75,0,0,.44722],10217:[.25,.75,0,0,.44722],10815:[0,.68611,0,0,.9],10927:[.19667,.69667,0,0,.89444],10928:[.19667,.69667,0,0,.89444],57376:[.19444,.69444,0,0,0]},"Main-BoldItalic":{32:[0,0,0,0,.25],33:[0,.69444,.11417,0,.38611],34:[0,.69444,.07939,0,.62055],35:[.19444,.69444,.06833,0,.94444],37:[.05556,.75,.12861,0,.94444],38:[0,.69444,.08528,0,.88555],39:[0,.69444,.12945,0,.35555],40:[.25,.75,.15806,0,.47333],41:[.25,.75,.03306,0,.47333],42:[0,.75,.14333,0,.59111],43:[.10333,.60333,.03306,0,.88555],44:[.19444,.14722,0,0,.35555],45:[0,.44444,.02611,0,.41444],46:[0,.14722,0,0,.35555],47:[.25,.75,.15806,0,.59111],48:[0,.64444,.13167,0,.59111],49:[0,.64444,.13167,0,.59111],50:[0,.64444,.13167,0,.59111],51:[0,.64444,.13167,0,.59111],52:[.19444,.64444,.13167,0,.59111],53:[0,.64444,.13167,0,.59111],54:[0,.64444,.13167,0,.59111],55:[.19444,.64444,.13167,0,.59111],56:[0,.64444,.13167,0,.59111],57:[0,.64444,.13167,0,.59111],58:[0,.44444,.06695,0,.35555],59:[.19444,.44444,.06695,0,.35555],61:[-.10889,.39111,.06833,0,.88555],63:[0,.69444,.11472,0,.59111],64:[0,.69444,.09208,0,.88555],65:[0,.68611,0,0,.86555],66:[0,.68611,.0992,0,.81666],67:[0,.68611,.14208,0,.82666],68:[0,.68611,.09062,0,.87555],69:[0,.68611,.11431,0,.75666],70:[0,.68611,.12903,0,.72722],71:[0,.68611,.07347,0,.89527],72:[0,.68611,.17208,0,.8961],73:[0,.68611,.15681,0,.47166],74:[0,.68611,.145,0,.61055],75:[0,.68611,.14208,0,.89499],76:[0,.68611,0,0,.69777],77:[0,.68611,.17208,0,1.07277],78:[0,.68611,.17208,0,.8961],79:[0,.68611,.09062,0,.85499],80:[0,.68611,.0992,0,.78721],81:[.19444,.68611,.09062,0,.85499],82:[0,.68611,.02559,0,.85944],83:[0,.68611,.11264,0,.64999],84:[0,.68611,.12903,0,.7961],85:[0,.68611,.17208,0,.88083],86:[0,.68611,.18625,0,.86555],87:[0,.68611,.18625,0,1.15999],88:[0,.68611,.15681,0,.86555],89:[0,.68611,.19803,0,.86555],90:[0,.68611,.14208,0,.70888],91:[.25,.75,.1875,0,.35611],93:[.25,.75,.09972,0,.35611],94:[0,.69444,.06709,0,.59111],95:[.31,.13444,.09811,0,.59111],97:[0,.44444,.09426,0,.59111],98:[0,.69444,.07861,0,.53222],99:[0,.44444,.05222,0,.53222],100:[0,.69444,.10861,0,.59111],101:[0,.44444,.085,0,.53222],102:[.19444,.69444,.21778,0,.4],103:[.19444,.44444,.105,0,.53222],104:[0,.69444,.09426,0,.59111],105:[0,.69326,.11387,0,.35555],106:[.19444,.69326,.1672,0,.35555],107:[0,.69444,.11111,0,.53222],108:[0,.69444,.10861,0,.29666],109:[0,.44444,.09426,0,.94444],110:[0,.44444,.09426,0,.64999],111:[0,.44444,.07861,0,.59111],112:[.19444,.44444,.07861,0,.59111],113:[.19444,.44444,.105,0,.53222],114:[0,.44444,.11111,0,.50167],115:[0,.44444,.08167,0,.48694],116:[0,.63492,.09639,0,.385],117:[0,.44444,.09426,0,.62055],118:[0,.44444,.11111,0,.53222],119:[0,.44444,.11111,0,.76777],120:[0,.44444,.12583,0,.56055],121:[.19444,.44444,.105,0,.56166],122:[0,.44444,.13889,0,.49055],126:[.35,.34444,.11472,0,.59111],160:[0,0,0,0,.25],168:[0,.69444,.11473,0,.59111],176:[0,.69444,0,0,.94888],184:[.17014,0,0,0,.53222],198:[0,.68611,.11431,0,1.02277],216:[.04861,.73472,.09062,0,.88555],223:[.19444,.69444,.09736,0,.665],230:[0,.44444,.085,0,.82666],248:[.09722,.54167,.09458,0,.59111],305:[0,.44444,.09426,0,.35555],338:[0,.68611,.11431,0,1.14054],339:[0,.44444,.085,0,.82666],567:[.19444,.44444,.04611,0,.385],710:[0,.69444,.06709,0,.59111],711:[0,.63194,.08271,0,.59111],713:[0,.59444,.10444,0,.59111],714:[0,.69444,.08528,0,.59111],715:[0,.69444,0,0,.59111],728:[0,.69444,.10333,0,.59111],729:[0,.69444,.12945,0,.35555],730:[0,.69444,0,0,.94888],732:[0,.69444,.11472,0,.59111],733:[0,.69444,.11472,0,.59111],915:[0,.68611,.12903,0,.69777],916:[0,.68611,0,0,.94444],920:[0,.68611,.09062,0,.88555],923:[0,.68611,0,0,.80666],926:[0,.68611,.15092,0,.76777],928:[0,.68611,.17208,0,.8961],931:[0,.68611,.11431,0,.82666],933:[0,.68611,.10778,0,.88555],934:[0,.68611,.05632,0,.82666],936:[0,.68611,.10778,0,.88555],937:[0,.68611,.0992,0,.82666],8211:[0,.44444,.09811,0,.59111],8212:[0,.44444,.09811,0,1.18221],8216:[0,.69444,.12945,0,.35555],8217:[0,.69444,.12945,0,.35555],8220:[0,.69444,.16772,0,.62055],8221:[0,.69444,.07939,0,.62055]},"Main-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.12417,0,.30667],34:[0,.69444,.06961,0,.51444],35:[.19444,.69444,.06616,0,.81777],37:[.05556,.75,.13639,0,.81777],38:[0,.69444,.09694,0,.76666],39:[0,.69444,.12417,0,.30667],40:[.25,.75,.16194,0,.40889],41:[.25,.75,.03694,0,.40889],42:[0,.75,.14917,0,.51111],43:[.05667,.56167,.03694,0,.76666],44:[.19444,.10556,0,0,.30667],45:[0,.43056,.02826,0,.35778],46:[0,.10556,0,0,.30667],47:[.25,.75,.16194,0,.51111],48:[0,.64444,.13556,0,.51111],49:[0,.64444,.13556,0,.51111],50:[0,.64444,.13556,0,.51111],51:[0,.64444,.13556,0,.51111],52:[.19444,.64444,.13556,0,.51111],53:[0,.64444,.13556,0,.51111],54:[0,.64444,.13556,0,.51111],55:[.19444,.64444,.13556,0,.51111],56:[0,.64444,.13556,0,.51111],57:[0,.64444,.13556,0,.51111],58:[0,.43056,.0582,0,.30667],59:[.19444,.43056,.0582,0,.30667],61:[-.13313,.36687,.06616,0,.76666],63:[0,.69444,.1225,0,.51111],64:[0,.69444,.09597,0,.76666],65:[0,.68333,0,0,.74333],66:[0,.68333,.10257,0,.70389],67:[0,.68333,.14528,0,.71555],68:[0,.68333,.09403,0,.755],69:[0,.68333,.12028,0,.67833],70:[0,.68333,.13305,0,.65277],71:[0,.68333,.08722,0,.77361],72:[0,.68333,.16389,0,.74333],73:[0,.68333,.15806,0,.38555],74:[0,.68333,.14028,0,.525],75:[0,.68333,.14528,0,.76888],76:[0,.68333,0,0,.62722],77:[0,.68333,.16389,0,.89666],78:[0,.68333,.16389,0,.74333],79:[0,.68333,.09403,0,.76666],80:[0,.68333,.10257,0,.67833],81:[.19444,.68333,.09403,0,.76666],82:[0,.68333,.03868,0,.72944],83:[0,.68333,.11972,0,.56222],84:[0,.68333,.13305,0,.71555],85:[0,.68333,.16389,0,.74333],86:[0,.68333,.18361,0,.74333],87:[0,.68333,.18361,0,.99888],88:[0,.68333,.15806,0,.74333],89:[0,.68333,.19383,0,.74333],90:[0,.68333,.14528,0,.61333],91:[.25,.75,.1875,0,.30667],93:[.25,.75,.10528,0,.30667],94:[0,.69444,.06646,0,.51111],95:[.31,.12056,.09208,0,.51111],97:[0,.43056,.07671,0,.51111],98:[0,.69444,.06312,0,.46],99:[0,.43056,.05653,0,.46],100:[0,.69444,.10333,0,.51111],101:[0,.43056,.07514,0,.46],102:[.19444,.69444,.21194,0,.30667],103:[.19444,.43056,.08847,0,.46],104:[0,.69444,.07671,0,.51111],105:[0,.65536,.1019,0,.30667],106:[.19444,.65536,.14467,0,.30667],107:[0,.69444,.10764,0,.46],108:[0,.69444,.10333,0,.25555],109:[0,.43056,.07671,0,.81777],110:[0,.43056,.07671,0,.56222],111:[0,.43056,.06312,0,.51111],112:[.19444,.43056,.06312,0,.51111],113:[.19444,.43056,.08847,0,.46],114:[0,.43056,.10764,0,.42166],115:[0,.43056,.08208,0,.40889],116:[0,.61508,.09486,0,.33222],117:[0,.43056,.07671,0,.53666],118:[0,.43056,.10764,0,.46],119:[0,.43056,.10764,0,.66444],120:[0,.43056,.12042,0,.46389],121:[.19444,.43056,.08847,0,.48555],122:[0,.43056,.12292,0,.40889],126:[.35,.31786,.11585,0,.51111],160:[0,0,0,0,.25],168:[0,.66786,.10474,0,.51111],176:[0,.69444,0,0,.83129],184:[.17014,0,0,0,.46],198:[0,.68333,.12028,0,.88277],216:[.04861,.73194,.09403,0,.76666],223:[.19444,.69444,.10514,0,.53666],230:[0,.43056,.07514,0,.71555],248:[.09722,.52778,.09194,0,.51111],338:[0,.68333,.12028,0,.98499],339:[0,.43056,.07514,0,.71555],710:[0,.69444,.06646,0,.51111],711:[0,.62847,.08295,0,.51111],713:[0,.56167,.10333,0,.51111],714:[0,.69444,.09694,0,.51111],715:[0,.69444,0,0,.51111],728:[0,.69444,.10806,0,.51111],729:[0,.66786,.11752,0,.30667],730:[0,.69444,0,0,.83129],732:[0,.66786,.11585,0,.51111],733:[0,.69444,.1225,0,.51111],915:[0,.68333,.13305,0,.62722],916:[0,.68333,0,0,.81777],920:[0,.68333,.09403,0,.76666],923:[0,.68333,0,0,.69222],926:[0,.68333,.15294,0,.66444],928:[0,.68333,.16389,0,.74333],931:[0,.68333,.12028,0,.71555],933:[0,.68333,.11111,0,.76666],934:[0,.68333,.05986,0,.71555],936:[0,.68333,.11111,0,.76666],937:[0,.68333,.10257,0,.71555],8211:[0,.43056,.09208,0,.51111],8212:[0,.43056,.09208,0,1.02222],8216:[0,.69444,.12417,0,.30667],8217:[0,.69444,.12417,0,.30667],8220:[0,.69444,.1685,0,.51444],8221:[0,.69444,.06961,0,.51444],8463:[0,.68889,0,0,.54028]},"Main-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.27778],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.77778],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.19444,.10556,0,0,.27778],45:[0,.43056,0,0,.33333],46:[0,.10556,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.64444,0,0,.5],49:[0,.64444,0,0,.5],50:[0,.64444,0,0,.5],51:[0,.64444,0,0,.5],52:[0,.64444,0,0,.5],53:[0,.64444,0,0,.5],54:[0,.64444,0,0,.5],55:[0,.64444,0,0,.5],56:[0,.64444,0,0,.5],57:[0,.64444,0,0,.5],58:[0,.43056,0,0,.27778],59:[.19444,.43056,0,0,.27778],60:[.0391,.5391,0,0,.77778],61:[-.13313,.36687,0,0,.77778],62:[.0391,.5391,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.77778],65:[0,.68333,0,0,.75],66:[0,.68333,0,0,.70834],67:[0,.68333,0,0,.72222],68:[0,.68333,0,0,.76389],69:[0,.68333,0,0,.68056],70:[0,.68333,0,0,.65278],71:[0,.68333,0,0,.78472],72:[0,.68333,0,0,.75],73:[0,.68333,0,0,.36111],74:[0,.68333,0,0,.51389],75:[0,.68333,0,0,.77778],76:[0,.68333,0,0,.625],77:[0,.68333,0,0,.91667],78:[0,.68333,0,0,.75],79:[0,.68333,0,0,.77778],80:[0,.68333,0,0,.68056],81:[.19444,.68333,0,0,.77778],82:[0,.68333,0,0,.73611],83:[0,.68333,0,0,.55556],84:[0,.68333,0,0,.72222],85:[0,.68333,0,0,.75],86:[0,.68333,.01389,0,.75],87:[0,.68333,.01389,0,1.02778],88:[0,.68333,0,0,.75],89:[0,.68333,.025,0,.75],90:[0,.68333,0,0,.61111],91:[.25,.75,0,0,.27778],92:[.25,.75,0,0,.5],93:[.25,.75,0,0,.27778],94:[0,.69444,0,0,.5],95:[.31,.12056,.02778,0,.5],97:[0,.43056,0,0,.5],98:[0,.69444,0,0,.55556],99:[0,.43056,0,0,.44445],100:[0,.69444,0,0,.55556],101:[0,.43056,0,0,.44445],102:[0,.69444,.07778,0,.30556],103:[.19444,.43056,.01389,0,.5],104:[0,.69444,0,0,.55556],105:[0,.66786,0,0,.27778],106:[.19444,.66786,0,0,.30556],107:[0,.69444,0,0,.52778],108:[0,.69444,0,0,.27778],109:[0,.43056,0,0,.83334],110:[0,.43056,0,0,.55556],111:[0,.43056,0,0,.5],112:[.19444,.43056,0,0,.55556],113:[.19444,.43056,0,0,.52778],114:[0,.43056,0,0,.39167],115:[0,.43056,0,0,.39445],116:[0,.61508,0,0,.38889],117:[0,.43056,0,0,.55556],118:[0,.43056,.01389,0,.52778],119:[0,.43056,.01389,0,.72222],120:[0,.43056,0,0,.52778],121:[.19444,.43056,.01389,0,.52778],122:[0,.43056,0,0,.44445],123:[.25,.75,0,0,.5],124:[.25,.75,0,0,.27778],125:[.25,.75,0,0,.5],126:[.35,.31786,0,0,.5],160:[0,0,0,0,.25],163:[0,.69444,0,0,.76909],167:[.19444,.69444,0,0,.44445],168:[0,.66786,0,0,.5],172:[0,.43056,0,0,.66667],176:[0,.69444,0,0,.75],177:[.08333,.58333,0,0,.77778],182:[.19444,.69444,0,0,.61111],184:[.17014,0,0,0,.44445],198:[0,.68333,0,0,.90278],215:[.08333,.58333,0,0,.77778],216:[.04861,.73194,0,0,.77778],223:[0,.69444,0,0,.5],230:[0,.43056,0,0,.72222],247:[.08333,.58333,0,0,.77778],248:[.09722,.52778,0,0,.5],305:[0,.43056,0,0,.27778],338:[0,.68333,0,0,1.01389],339:[0,.43056,0,0,.77778],567:[.19444,.43056,0,0,.30556],710:[0,.69444,0,0,.5],711:[0,.62847,0,0,.5],713:[0,.56778,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.66786,0,0,.27778],730:[0,.69444,0,0,.75],732:[0,.66786,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.68333,0,0,.625],916:[0,.68333,0,0,.83334],920:[0,.68333,0,0,.77778],923:[0,.68333,0,0,.69445],926:[0,.68333,0,0,.66667],928:[0,.68333,0,0,.75],931:[0,.68333,0,0,.72222],933:[0,.68333,0,0,.77778],934:[0,.68333,0,0,.72222],936:[0,.68333,0,0,.77778],937:[0,.68333,0,0,.72222],8211:[0,.43056,.02778,0,.5],8212:[0,.43056,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5],8224:[.19444,.69444,0,0,.44445],8225:[.19444,.69444,0,0,.44445],8230:[0,.123,0,0,1.172],8242:[0,.55556,0,0,.275],8407:[0,.71444,.15382,0,.5],8463:[0,.68889,0,0,.54028],8465:[0,.69444,0,0,.72222],8467:[0,.69444,0,.11111,.41667],8472:[.19444,.43056,0,.11111,.63646],8476:[0,.69444,0,0,.72222],8501:[0,.69444,0,0,.61111],8592:[-.13313,.36687,0,0,1],8593:[.19444,.69444,0,0,.5],8594:[-.13313,.36687,0,0,1],8595:[.19444,.69444,0,0,.5],8596:[-.13313,.36687,0,0,1],8597:[.25,.75,0,0,.5],8598:[.19444,.69444,0,0,1],8599:[.19444,.69444,0,0,1],8600:[.19444,.69444,0,0,1],8601:[.19444,.69444,0,0,1],8614:[.011,.511,0,0,1],8617:[.011,.511,0,0,1.126],8618:[.011,.511,0,0,1.126],8636:[-.13313,.36687,0,0,1],8637:[-.13313,.36687,0,0,1],8640:[-.13313,.36687,0,0,1],8641:[-.13313,.36687,0,0,1],8652:[.011,.671,0,0,1],8656:[-.13313,.36687,0,0,1],8657:[.19444,.69444,0,0,.61111],8658:[-.13313,.36687,0,0,1],8659:[.19444,.69444,0,0,.61111],8660:[-.13313,.36687,0,0,1],8661:[.25,.75,0,0,.61111],8704:[0,.69444,0,0,.55556],8706:[0,.69444,.05556,.08334,.5309],8707:[0,.69444,0,0,.55556],8709:[.05556,.75,0,0,.5],8711:[0,.68333,0,0,.83334],8712:[.0391,.5391,0,0,.66667],8715:[.0391,.5391,0,0,.66667],8722:[.08333,.58333,0,0,.77778],8723:[.08333,.58333,0,0,.77778],8725:[.25,.75,0,0,.5],8726:[.25,.75,0,0,.5],8727:[-.03472,.46528,0,0,.5],8728:[-.05555,.44445,0,0,.5],8729:[-.05555,.44445,0,0,.5],8730:[.2,.8,0,0,.83334],8733:[0,.43056,0,0,.77778],8734:[0,.43056,0,0,1],8736:[0,.69224,0,0,.72222],8739:[.25,.75,0,0,.27778],8741:[.25,.75,0,0,.5],8743:[0,.55556,0,0,.66667],8744:[0,.55556,0,0,.66667],8745:[0,.55556,0,0,.66667],8746:[0,.55556,0,0,.66667],8747:[.19444,.69444,.11111,0,.41667],8764:[-.13313,.36687,0,0,.77778],8768:[.19444,.69444,0,0,.27778],8771:[-.03625,.46375,0,0,.77778],8773:[-.022,.589,0,0,.778],8776:[-.01688,.48312,0,0,.77778],8781:[-.03625,.46375,0,0,.77778],8784:[-.133,.673,0,0,.778],8801:[-.03625,.46375,0,0,.77778],8804:[.13597,.63597,0,0,.77778],8805:[.13597,.63597,0,0,.77778],8810:[.0391,.5391,0,0,1],8811:[.0391,.5391,0,0,1],8826:[.0391,.5391,0,0,.77778],8827:[.0391,.5391,0,0,.77778],8834:[.0391,.5391,0,0,.77778],8835:[.0391,.5391,0,0,.77778],8838:[.13597,.63597,0,0,.77778],8839:[.13597,.63597,0,0,.77778],8846:[0,.55556,0,0,.66667],8849:[.13597,.63597,0,0,.77778],8850:[.13597,.63597,0,0,.77778],8851:[0,.55556,0,0,.66667],8852:[0,.55556,0,0,.66667],8853:[.08333,.58333,0,0,.77778],8854:[.08333,.58333,0,0,.77778],8855:[.08333,.58333,0,0,.77778],8856:[.08333,.58333,0,0,.77778],8857:[.08333,.58333,0,0,.77778],8866:[0,.69444,0,0,.61111],8867:[0,.69444,0,0,.61111],8868:[0,.69444,0,0,.77778],8869:[0,.69444,0,0,.77778],8872:[.249,.75,0,0,.867],8900:[-.05555,.44445,0,0,.5],8901:[-.05555,.44445,0,0,.27778],8902:[-.03472,.46528,0,0,.5],8904:[.005,.505,0,0,.9],8942:[.03,.903,0,0,.278],8943:[-.19,.313,0,0,1.172],8945:[-.1,.823,0,0,1.282],8968:[.25,.75,0,0,.44445],8969:[.25,.75,0,0,.44445],8970:[.25,.75,0,0,.44445],8971:[.25,.75,0,0,.44445],8994:[-.14236,.35764,0,0,1],8995:[-.14236,.35764,0,0,1],9136:[.244,.744,0,0,.412],9137:[.244,.745,0,0,.412],9651:[.19444,.69444,0,0,.88889],9657:[-.03472,.46528,0,0,.5],9661:[.19444,.69444,0,0,.88889],9667:[-.03472,.46528,0,0,.5],9711:[.19444,.69444,0,0,1],9824:[.12963,.69444,0,0,.77778],9825:[.12963,.69444,0,0,.77778],9826:[.12963,.69444,0,0,.77778],9827:[.12963,.69444,0,0,.77778],9837:[0,.75,0,0,.38889],9838:[.19444,.69444,0,0,.38889],9839:[.19444,.69444,0,0,.38889],10216:[.25,.75,0,0,.38889],10217:[.25,.75,0,0,.38889],10222:[.244,.744,0,0,.412],10223:[.244,.745,0,0,.412],10229:[.011,.511,0,0,1.609],10230:[.011,.511,0,0,1.638],10231:[.011,.511,0,0,1.859],10232:[.024,.525,0,0,1.609],10233:[.024,.525,0,0,1.638],10234:[.024,.525,0,0,1.858],10236:[.011,.511,0,0,1.638],10815:[0,.68333,0,0,.75],10927:[.13597,.63597,0,0,.77778],10928:[.13597,.63597,0,0,.77778],57376:[.19444,.69444,0,0,0]},"Math-BoldItalic":{32:[0,0,0,0,.25],48:[0,.44444,0,0,.575],49:[0,.44444,0,0,.575],50:[0,.44444,0,0,.575],51:[.19444,.44444,0,0,.575],52:[.19444,.44444,0,0,.575],53:[.19444,.44444,0,0,.575],54:[0,.64444,0,0,.575],55:[.19444,.44444,0,0,.575],56:[0,.64444,0,0,.575],57:[.19444,.44444,0,0,.575],65:[0,.68611,0,0,.86944],66:[0,.68611,.04835,0,.8664],67:[0,.68611,.06979,0,.81694],68:[0,.68611,.03194,0,.93812],69:[0,.68611,.05451,0,.81007],70:[0,.68611,.15972,0,.68889],71:[0,.68611,0,0,.88673],72:[0,.68611,.08229,0,.98229],73:[0,.68611,.07778,0,.51111],74:[0,.68611,.10069,0,.63125],75:[0,.68611,.06979,0,.97118],76:[0,.68611,0,0,.75555],77:[0,.68611,.11424,0,1.14201],78:[0,.68611,.11424,0,.95034],79:[0,.68611,.03194,0,.83666],80:[0,.68611,.15972,0,.72309],81:[.19444,.68611,0,0,.86861],82:[0,.68611,.00421,0,.87235],83:[0,.68611,.05382,0,.69271],84:[0,.68611,.15972,0,.63663],85:[0,.68611,.11424,0,.80027],86:[0,.68611,.25555,0,.67778],87:[0,.68611,.15972,0,1.09305],88:[0,.68611,.07778,0,.94722],89:[0,.68611,.25555,0,.67458],90:[0,.68611,.06979,0,.77257],97:[0,.44444,0,0,.63287],98:[0,.69444,0,0,.52083],99:[0,.44444,0,0,.51342],100:[0,.69444,0,0,.60972],101:[0,.44444,0,0,.55361],102:[.19444,.69444,.11042,0,.56806],103:[.19444,.44444,.03704,0,.5449],104:[0,.69444,0,0,.66759],105:[0,.69326,0,0,.4048],106:[.19444,.69326,.0622,0,.47083],107:[0,.69444,.01852,0,.6037],108:[0,.69444,.0088,0,.34815],109:[0,.44444,0,0,1.0324],110:[0,.44444,0,0,.71296],111:[0,.44444,0,0,.58472],112:[.19444,.44444,0,0,.60092],113:[.19444,.44444,.03704,0,.54213],114:[0,.44444,.03194,0,.5287],115:[0,.44444,0,0,.53125],116:[0,.63492,0,0,.41528],117:[0,.44444,0,0,.68102],118:[0,.44444,.03704,0,.56666],119:[0,.44444,.02778,0,.83148],120:[0,.44444,0,0,.65903],121:[.19444,.44444,.03704,0,.59028],122:[0,.44444,.04213,0,.55509],160:[0,0,0,0,.25],915:[0,.68611,.15972,0,.65694],916:[0,.68611,0,0,.95833],920:[0,.68611,.03194,0,.86722],923:[0,.68611,0,0,.80555],926:[0,.68611,.07458,0,.84125],928:[0,.68611,.08229,0,.98229],931:[0,.68611,.05451,0,.88507],933:[0,.68611,.15972,0,.67083],934:[0,.68611,0,0,.76666],936:[0,.68611,.11653,0,.71402],937:[0,.68611,.04835,0,.8789],945:[0,.44444,0,0,.76064],946:[.19444,.69444,.03403,0,.65972],947:[.19444,.44444,.06389,0,.59003],948:[0,.69444,.03819,0,.52222],949:[0,.44444,0,0,.52882],950:[.19444,.69444,.06215,0,.50833],951:[.19444,.44444,.03704,0,.6],952:[0,.69444,.03194,0,.5618],953:[0,.44444,0,0,.41204],954:[0,.44444,0,0,.66759],955:[0,.69444,0,0,.67083],956:[.19444,.44444,0,0,.70787],957:[0,.44444,.06898,0,.57685],958:[.19444,.69444,.03021,0,.50833],959:[0,.44444,0,0,.58472],960:[0,.44444,.03704,0,.68241],961:[.19444,.44444,0,0,.6118],962:[.09722,.44444,.07917,0,.42361],963:[0,.44444,.03704,0,.68588],964:[0,.44444,.13472,0,.52083],965:[0,.44444,.03704,0,.63055],966:[.19444,.44444,0,0,.74722],967:[.19444,.44444,0,0,.71805],968:[.19444,.69444,.03704,0,.75833],969:[0,.44444,.03704,0,.71782],977:[0,.69444,0,0,.69155],981:[.19444,.69444,0,0,.7125],982:[0,.44444,.03194,0,.975],1009:[.19444,.44444,0,0,.6118],1013:[0,.44444,0,0,.48333],57649:[0,.44444,0,0,.39352],57911:[.19444,.44444,0,0,.43889]},"Math-Italic":{32:[0,0,0,0,.25],48:[0,.43056,0,0,.5],49:[0,.43056,0,0,.5],50:[0,.43056,0,0,.5],51:[.19444,.43056,0,0,.5],52:[.19444,.43056,0,0,.5],53:[.19444,.43056,0,0,.5],54:[0,.64444,0,0,.5],55:[.19444,.43056,0,0,.5],56:[0,.64444,0,0,.5],57:[.19444,.43056,0,0,.5],65:[0,.68333,0,.13889,.75],66:[0,.68333,.05017,.08334,.75851],67:[0,.68333,.07153,.08334,.71472],68:[0,.68333,.02778,.05556,.82792],69:[0,.68333,.05764,.08334,.7382],70:[0,.68333,.13889,.08334,.64306],71:[0,.68333,0,.08334,.78625],72:[0,.68333,.08125,.05556,.83125],73:[0,.68333,.07847,.11111,.43958],74:[0,.68333,.09618,.16667,.55451],75:[0,.68333,.07153,.05556,.84931],76:[0,.68333,0,.02778,.68056],77:[0,.68333,.10903,.08334,.97014],78:[0,.68333,.10903,.08334,.80347],79:[0,.68333,.02778,.08334,.76278],80:[0,.68333,.13889,.08334,.64201],81:[.19444,.68333,0,.08334,.79056],82:[0,.68333,.00773,.08334,.75929],83:[0,.68333,.05764,.08334,.6132],84:[0,.68333,.13889,.08334,.58438],85:[0,.68333,.10903,.02778,.68278],86:[0,.68333,.22222,0,.58333],87:[0,.68333,.13889,0,.94445],88:[0,.68333,.07847,.08334,.82847],89:[0,.68333,.22222,0,.58056],90:[0,.68333,.07153,.08334,.68264],97:[0,.43056,0,0,.52859],98:[0,.69444,0,0,.42917],99:[0,.43056,0,.05556,.43276],100:[0,.69444,0,.16667,.52049],101:[0,.43056,0,.05556,.46563],102:[.19444,.69444,.10764,.16667,.48959],103:[.19444,.43056,.03588,.02778,.47697],104:[0,.69444,0,0,.57616],105:[0,.65952,0,0,.34451],106:[.19444,.65952,.05724,0,.41181],107:[0,.69444,.03148,0,.5206],108:[0,.69444,.01968,.08334,.29838],109:[0,.43056,0,0,.87801],110:[0,.43056,0,0,.60023],111:[0,.43056,0,.05556,.48472],112:[.19444,.43056,0,.08334,.50313],113:[.19444,.43056,.03588,.08334,.44641],114:[0,.43056,.02778,.05556,.45116],115:[0,.43056,0,.05556,.46875],116:[0,.61508,0,.08334,.36111],117:[0,.43056,0,.02778,.57246],118:[0,.43056,.03588,.02778,.48472],119:[0,.43056,.02691,.08334,.71592],120:[0,.43056,0,.02778,.57153],121:[.19444,.43056,.03588,.05556,.49028],122:[0,.43056,.04398,.05556,.46505],160:[0,0,0,0,.25],915:[0,.68333,.13889,.08334,.61528],916:[0,.68333,0,.16667,.83334],920:[0,.68333,.02778,.08334,.76278],923:[0,.68333,0,.16667,.69445],926:[0,.68333,.07569,.08334,.74236],928:[0,.68333,.08125,.05556,.83125],931:[0,.68333,.05764,.08334,.77986],933:[0,.68333,.13889,.05556,.58333],934:[0,.68333,0,.08334,.66667],936:[0,.68333,.11,.05556,.61222],937:[0,.68333,.05017,.08334,.7724],945:[0,.43056,.0037,.02778,.6397],946:[.19444,.69444,.05278,.08334,.56563],947:[.19444,.43056,.05556,0,.51773],948:[0,.69444,.03785,.05556,.44444],949:[0,.43056,0,.08334,.46632],950:[.19444,.69444,.07378,.08334,.4375],951:[.19444,.43056,.03588,.05556,.49653],952:[0,.69444,.02778,.08334,.46944],953:[0,.43056,0,.05556,.35394],954:[0,.43056,0,0,.57616],955:[0,.69444,0,0,.58334],956:[.19444,.43056,0,.02778,.60255],957:[0,.43056,.06366,.02778,.49398],958:[.19444,.69444,.04601,.11111,.4375],959:[0,.43056,0,.05556,.48472],960:[0,.43056,.03588,0,.57003],961:[.19444,.43056,0,.08334,.51702],962:[.09722,.43056,.07986,.08334,.36285],963:[0,.43056,.03588,0,.57141],964:[0,.43056,.1132,.02778,.43715],965:[0,.43056,.03588,.02778,.54028],966:[.19444,.43056,0,.08334,.65417],967:[.19444,.43056,0,.05556,.62569],968:[.19444,.69444,.03588,.11111,.65139],969:[0,.43056,.03588,0,.62245],977:[0,.69444,0,.08334,.59144],981:[.19444,.69444,0,.08334,.59583],982:[0,.43056,.02778,0,.82813],1009:[.19444,.43056,0,.08334,.51702],1013:[0,.43056,0,.05556,.4059],57649:[0,.43056,0,.02778,.32246],57911:[.19444,.43056,0,.08334,.38403]},"SansSerif-Bold":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.36667],34:[0,.69444,0,0,.55834],35:[.19444,.69444,0,0,.91667],36:[.05556,.75,0,0,.55],37:[.05556,.75,0,0,1.02912],38:[0,.69444,0,0,.83056],39:[0,.69444,0,0,.30556],40:[.25,.75,0,0,.42778],41:[.25,.75,0,0,.42778],42:[0,.75,0,0,.55],43:[.11667,.61667,0,0,.85556],44:[.10556,.13056,0,0,.30556],45:[0,.45833,0,0,.36667],46:[0,.13056,0,0,.30556],47:[.25,.75,0,0,.55],48:[0,.69444,0,0,.55],49:[0,.69444,0,0,.55],50:[0,.69444,0,0,.55],51:[0,.69444,0,0,.55],52:[0,.69444,0,0,.55],53:[0,.69444,0,0,.55],54:[0,.69444,0,0,.55],55:[0,.69444,0,0,.55],56:[0,.69444,0,0,.55],57:[0,.69444,0,0,.55],58:[0,.45833,0,0,.30556],59:[.10556,.45833,0,0,.30556],61:[-.09375,.40625,0,0,.85556],63:[0,.69444,0,0,.51945],64:[0,.69444,0,0,.73334],65:[0,.69444,0,0,.73334],66:[0,.69444,0,0,.73334],67:[0,.69444,0,0,.70278],68:[0,.69444,0,0,.79445],69:[0,.69444,0,0,.64167],70:[0,.69444,0,0,.61111],71:[0,.69444,0,0,.73334],72:[0,.69444,0,0,.79445],73:[0,.69444,0,0,.33056],74:[0,.69444,0,0,.51945],75:[0,.69444,0,0,.76389],76:[0,.69444,0,0,.58056],77:[0,.69444,0,0,.97778],78:[0,.69444,0,0,.79445],79:[0,.69444,0,0,.79445],80:[0,.69444,0,0,.70278],81:[.10556,.69444,0,0,.79445],82:[0,.69444,0,0,.70278],83:[0,.69444,0,0,.61111],84:[0,.69444,0,0,.73334],85:[0,.69444,0,0,.76389],86:[0,.69444,.01528,0,.73334],87:[0,.69444,.01528,0,1.03889],88:[0,.69444,0,0,.73334],89:[0,.69444,.0275,0,.73334],90:[0,.69444,0,0,.67223],91:[.25,.75,0,0,.34306],93:[.25,.75,0,0,.34306],94:[0,.69444,0,0,.55],95:[.35,.10833,.03056,0,.55],97:[0,.45833,0,0,.525],98:[0,.69444,0,0,.56111],99:[0,.45833,0,0,.48889],100:[0,.69444,0,0,.56111],101:[0,.45833,0,0,.51111],102:[0,.69444,.07639,0,.33611],103:[.19444,.45833,.01528,0,.55],104:[0,.69444,0,0,.56111],105:[0,.69444,0,0,.25556],106:[.19444,.69444,0,0,.28611],107:[0,.69444,0,0,.53056],108:[0,.69444,0,0,.25556],109:[0,.45833,0,0,.86667],110:[0,.45833,0,0,.56111],111:[0,.45833,0,0,.55],112:[.19444,.45833,0,0,.56111],113:[.19444,.45833,0,0,.56111],114:[0,.45833,.01528,0,.37222],115:[0,.45833,0,0,.42167],116:[0,.58929,0,0,.40417],117:[0,.45833,0,0,.56111],118:[0,.45833,.01528,0,.5],119:[0,.45833,.01528,0,.74445],120:[0,.45833,0,0,.5],121:[.19444,.45833,.01528,0,.5],122:[0,.45833,0,0,.47639],126:[.35,.34444,0,0,.55],160:[0,0,0,0,.25],168:[0,.69444,0,0,.55],176:[0,.69444,0,0,.73334],180:[0,.69444,0,0,.55],184:[.17014,0,0,0,.48889],305:[0,.45833,0,0,.25556],567:[.19444,.45833,0,0,.28611],710:[0,.69444,0,0,.55],711:[0,.63542,0,0,.55],713:[0,.63778,0,0,.55],728:[0,.69444,0,0,.55],729:[0,.69444,0,0,.30556],730:[0,.69444,0,0,.73334],732:[0,.69444,0,0,.55],733:[0,.69444,0,0,.55],915:[0,.69444,0,0,.58056],916:[0,.69444,0,0,.91667],920:[0,.69444,0,0,.85556],923:[0,.69444,0,0,.67223],926:[0,.69444,0,0,.73334],928:[0,.69444,0,0,.79445],931:[0,.69444,0,0,.79445],933:[0,.69444,0,0,.85556],934:[0,.69444,0,0,.79445],936:[0,.69444,0,0,.85556],937:[0,.69444,0,0,.79445],8211:[0,.45833,.03056,0,.55],8212:[0,.45833,.03056,0,1.10001],8216:[0,.69444,0,0,.30556],8217:[0,.69444,0,0,.30556],8220:[0,.69444,0,0,.55834],8221:[0,.69444,0,0,.55834]},"SansSerif-Italic":{32:[0,0,0,0,.25],33:[0,.69444,.05733,0,.31945],34:[0,.69444,.00316,0,.5],35:[.19444,.69444,.05087,0,.83334],36:[.05556,.75,.11156,0,.5],37:[.05556,.75,.03126,0,.83334],38:[0,.69444,.03058,0,.75834],39:[0,.69444,.07816,0,.27778],40:[.25,.75,.13164,0,.38889],41:[.25,.75,.02536,0,.38889],42:[0,.75,.11775,0,.5],43:[.08333,.58333,.02536,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,.01946,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,.13164,0,.5],48:[0,.65556,.11156,0,.5],49:[0,.65556,.11156,0,.5],50:[0,.65556,.11156,0,.5],51:[0,.65556,.11156,0,.5],52:[0,.65556,.11156,0,.5],53:[0,.65556,.11156,0,.5],54:[0,.65556,.11156,0,.5],55:[0,.65556,.11156,0,.5],56:[0,.65556,.11156,0,.5],57:[0,.65556,.11156,0,.5],58:[0,.44444,.02502,0,.27778],59:[.125,.44444,.02502,0,.27778],61:[-.13,.37,.05087,0,.77778],63:[0,.69444,.11809,0,.47222],64:[0,.69444,.07555,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,.08293,0,.66667],67:[0,.69444,.11983,0,.63889],68:[0,.69444,.07555,0,.72223],69:[0,.69444,.11983,0,.59722],70:[0,.69444,.13372,0,.56945],71:[0,.69444,.11983,0,.66667],72:[0,.69444,.08094,0,.70834],73:[0,.69444,.13372,0,.27778],74:[0,.69444,.08094,0,.47222],75:[0,.69444,.11983,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,.08094,0,.875],78:[0,.69444,.08094,0,.70834],79:[0,.69444,.07555,0,.73611],80:[0,.69444,.08293,0,.63889],81:[.125,.69444,.07555,0,.73611],82:[0,.69444,.08293,0,.64584],83:[0,.69444,.09205,0,.55556],84:[0,.69444,.13372,0,.68056],85:[0,.69444,.08094,0,.6875],86:[0,.69444,.1615,0,.66667],87:[0,.69444,.1615,0,.94445],88:[0,.69444,.13372,0,.66667],89:[0,.69444,.17261,0,.66667],90:[0,.69444,.11983,0,.61111],91:[.25,.75,.15942,0,.28889],93:[.25,.75,.08719,0,.28889],94:[0,.69444,.0799,0,.5],95:[.35,.09444,.08616,0,.5],97:[0,.44444,.00981,0,.48056],98:[0,.69444,.03057,0,.51667],99:[0,.44444,.08336,0,.44445],100:[0,.69444,.09483,0,.51667],101:[0,.44444,.06778,0,.44445],102:[0,.69444,.21705,0,.30556],103:[.19444,.44444,.10836,0,.5],104:[0,.69444,.01778,0,.51667],105:[0,.67937,.09718,0,.23889],106:[.19444,.67937,.09162,0,.26667],107:[0,.69444,.08336,0,.48889],108:[0,.69444,.09483,0,.23889],109:[0,.44444,.01778,0,.79445],110:[0,.44444,.01778,0,.51667],111:[0,.44444,.06613,0,.5],112:[.19444,.44444,.0389,0,.51667],113:[.19444,.44444,.04169,0,.51667],114:[0,.44444,.10836,0,.34167],115:[0,.44444,.0778,0,.38333],116:[0,.57143,.07225,0,.36111],117:[0,.44444,.04169,0,.51667],118:[0,.44444,.10836,0,.46111],119:[0,.44444,.10836,0,.68334],120:[0,.44444,.09169,0,.46111],121:[.19444,.44444,.10836,0,.46111],122:[0,.44444,.08752,0,.43472],126:[.35,.32659,.08826,0,.5],160:[0,0,0,0,.25],168:[0,.67937,.06385,0,.5],176:[0,.69444,0,0,.73752],184:[.17014,0,0,0,.44445],305:[0,.44444,.04169,0,.23889],567:[.19444,.44444,.04169,0,.26667],710:[0,.69444,.0799,0,.5],711:[0,.63194,.08432,0,.5],713:[0,.60889,.08776,0,.5],714:[0,.69444,.09205,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,.09483,0,.5],729:[0,.67937,.07774,0,.27778],730:[0,.69444,0,0,.73752],732:[0,.67659,.08826,0,.5],733:[0,.69444,.09205,0,.5],915:[0,.69444,.13372,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,.07555,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,.12816,0,.66667],928:[0,.69444,.08094,0,.70834],931:[0,.69444,.11983,0,.72222],933:[0,.69444,.09031,0,.77778],934:[0,.69444,.04603,0,.72222],936:[0,.69444,.09031,0,.77778],937:[0,.69444,.08293,0,.72222],8211:[0,.44444,.08616,0,.5],8212:[0,.44444,.08616,0,1],8216:[0,.69444,.07816,0,.27778],8217:[0,.69444,.07816,0,.27778],8220:[0,.69444,.14205,0,.5],8221:[0,.69444,.00316,0,.5]},"SansSerif-Regular":{32:[0,0,0,0,.25],33:[0,.69444,0,0,.31945],34:[0,.69444,0,0,.5],35:[.19444,.69444,0,0,.83334],36:[.05556,.75,0,0,.5],37:[.05556,.75,0,0,.83334],38:[0,.69444,0,0,.75834],39:[0,.69444,0,0,.27778],40:[.25,.75,0,0,.38889],41:[.25,.75,0,0,.38889],42:[0,.75,0,0,.5],43:[.08333,.58333,0,0,.77778],44:[.125,.08333,0,0,.27778],45:[0,.44444,0,0,.33333],46:[0,.08333,0,0,.27778],47:[.25,.75,0,0,.5],48:[0,.65556,0,0,.5],49:[0,.65556,0,0,.5],50:[0,.65556,0,0,.5],51:[0,.65556,0,0,.5],52:[0,.65556,0,0,.5],53:[0,.65556,0,0,.5],54:[0,.65556,0,0,.5],55:[0,.65556,0,0,.5],56:[0,.65556,0,0,.5],57:[0,.65556,0,0,.5],58:[0,.44444,0,0,.27778],59:[.125,.44444,0,0,.27778],61:[-.13,.37,0,0,.77778],63:[0,.69444,0,0,.47222],64:[0,.69444,0,0,.66667],65:[0,.69444,0,0,.66667],66:[0,.69444,0,0,.66667],67:[0,.69444,0,0,.63889],68:[0,.69444,0,0,.72223],69:[0,.69444,0,0,.59722],70:[0,.69444,0,0,.56945],71:[0,.69444,0,0,.66667],72:[0,.69444,0,0,.70834],73:[0,.69444,0,0,.27778],74:[0,.69444,0,0,.47222],75:[0,.69444,0,0,.69445],76:[0,.69444,0,0,.54167],77:[0,.69444,0,0,.875],78:[0,.69444,0,0,.70834],79:[0,.69444,0,0,.73611],80:[0,.69444,0,0,.63889],81:[.125,.69444,0,0,.73611],82:[0,.69444,0,0,.64584],83:[0,.69444,0,0,.55556],84:[0,.69444,0,0,.68056],85:[0,.69444,0,0,.6875],86:[0,.69444,.01389,0,.66667],87:[0,.69444,.01389,0,.94445],88:[0,.69444,0,0,.66667],89:[0,.69444,.025,0,.66667],90:[0,.69444,0,0,.61111],91:[.25,.75,0,0,.28889],93:[.25,.75,0,0,.28889],94:[0,.69444,0,0,.5],95:[.35,.09444,.02778,0,.5],97:[0,.44444,0,0,.48056],98:[0,.69444,0,0,.51667],99:[0,.44444,0,0,.44445],100:[0,.69444,0,0,.51667],101:[0,.44444,0,0,.44445],102:[0,.69444,.06944,0,.30556],103:[.19444,.44444,.01389,0,.5],104:[0,.69444,0,0,.51667],105:[0,.67937,0,0,.23889],106:[.19444,.67937,0,0,.26667],107:[0,.69444,0,0,.48889],108:[0,.69444,0,0,.23889],109:[0,.44444,0,0,.79445],110:[0,.44444,0,0,.51667],111:[0,.44444,0,0,.5],112:[.19444,.44444,0,0,.51667],113:[.19444,.44444,0,0,.51667],114:[0,.44444,.01389,0,.34167],115:[0,.44444,0,0,.38333],116:[0,.57143,0,0,.36111],117:[0,.44444,0,0,.51667],118:[0,.44444,.01389,0,.46111],119:[0,.44444,.01389,0,.68334],120:[0,.44444,0,0,.46111],121:[.19444,.44444,.01389,0,.46111],122:[0,.44444,0,0,.43472],126:[.35,.32659,0,0,.5],160:[0,0,0,0,.25],168:[0,.67937,0,0,.5],176:[0,.69444,0,0,.66667],184:[.17014,0,0,0,.44445],305:[0,.44444,0,0,.23889],567:[.19444,.44444,0,0,.26667],710:[0,.69444,0,0,.5],711:[0,.63194,0,0,.5],713:[0,.60889,0,0,.5],714:[0,.69444,0,0,.5],715:[0,.69444,0,0,.5],728:[0,.69444,0,0,.5],729:[0,.67937,0,0,.27778],730:[0,.69444,0,0,.66667],732:[0,.67659,0,0,.5],733:[0,.69444,0,0,.5],915:[0,.69444,0,0,.54167],916:[0,.69444,0,0,.83334],920:[0,.69444,0,0,.77778],923:[0,.69444,0,0,.61111],926:[0,.69444,0,0,.66667],928:[0,.69444,0,0,.70834],931:[0,.69444,0,0,.72222],933:[0,.69444,0,0,.77778],934:[0,.69444,0,0,.72222],936:[0,.69444,0,0,.77778],937:[0,.69444,0,0,.72222],8211:[0,.44444,.02778,0,.5],8212:[0,.44444,.02778,0,1],8216:[0,.69444,0,0,.27778],8217:[0,.69444,0,0,.27778],8220:[0,.69444,0,0,.5],8221:[0,.69444,0,0,.5]},"Script-Regular":{32:[0,0,0,0,.25],65:[0,.7,.22925,0,.80253],66:[0,.7,.04087,0,.90757],67:[0,.7,.1689,0,.66619],68:[0,.7,.09371,0,.77443],69:[0,.7,.18583,0,.56162],70:[0,.7,.13634,0,.89544],71:[0,.7,.17322,0,.60961],72:[0,.7,.29694,0,.96919],73:[0,.7,.19189,0,.80907],74:[.27778,.7,.19189,0,1.05159],75:[0,.7,.31259,0,.91364],76:[0,.7,.19189,0,.87373],77:[0,.7,.15981,0,1.08031],78:[0,.7,.3525,0,.9015],79:[0,.7,.08078,0,.73787],80:[0,.7,.08078,0,1.01262],81:[0,.7,.03305,0,.88282],82:[0,.7,.06259,0,.85],83:[0,.7,.19189,0,.86767],84:[0,.7,.29087,0,.74697],85:[0,.7,.25815,0,.79996],86:[0,.7,.27523,0,.62204],87:[0,.7,.27523,0,.80532],88:[0,.7,.26006,0,.94445],89:[0,.7,.2939,0,.70961],90:[0,.7,.24037,0,.8212],160:[0,0,0,0,.25]},"Size1-Regular":{32:[0,0,0,0,.25],40:[.35001,.85,0,0,.45834],41:[.35001,.85,0,0,.45834],47:[.35001,.85,0,0,.57778],91:[.35001,.85,0,0,.41667],92:[.35001,.85,0,0,.57778],93:[.35001,.85,0,0,.41667],123:[.35001,.85,0,0,.58334],125:[.35001,.85,0,0,.58334],160:[0,0,0,0,.25],710:[0,.72222,0,0,.55556],732:[0,.72222,0,0,.55556],770:[0,.72222,0,0,.55556],771:[0,.72222,0,0,.55556],8214:[-99e-5,.601,0,0,.77778],8593:[1e-5,.6,0,0,.66667],8595:[1e-5,.6,0,0,.66667],8657:[1e-5,.6,0,0,.77778],8659:[1e-5,.6,0,0,.77778],8719:[.25001,.75,0,0,.94445],8720:[.25001,.75,0,0,.94445],8721:[.25001,.75,0,0,1.05556],8730:[.35001,.85,0,0,1],8739:[-.00599,.606,0,0,.33333],8741:[-.00599,.606,0,0,.55556],8747:[.30612,.805,.19445,0,.47222],8748:[.306,.805,.19445,0,.47222],8749:[.306,.805,.19445,0,.47222],8750:[.30612,.805,.19445,0,.47222],8896:[.25001,.75,0,0,.83334],8897:[.25001,.75,0,0,.83334],8898:[.25001,.75,0,0,.83334],8899:[.25001,.75,0,0,.83334],8968:[.35001,.85,0,0,.47222],8969:[.35001,.85,0,0,.47222],8970:[.35001,.85,0,0,.47222],8971:[.35001,.85,0,0,.47222],9168:[-99e-5,.601,0,0,.66667],10216:[.35001,.85,0,0,.47222],10217:[.35001,.85,0,0,.47222],10752:[.25001,.75,0,0,1.11111],10753:[.25001,.75,0,0,1.11111],10754:[.25001,.75,0,0,1.11111],10756:[.25001,.75,0,0,.83334],10758:[.25001,.75,0,0,.83334]},"Size2-Regular":{32:[0,0,0,0,.25],40:[.65002,1.15,0,0,.59722],41:[.65002,1.15,0,0,.59722],47:[.65002,1.15,0,0,.81111],91:[.65002,1.15,0,0,.47222],92:[.65002,1.15,0,0,.81111],93:[.65002,1.15,0,0,.47222],123:[.65002,1.15,0,0,.66667],125:[.65002,1.15,0,0,.66667],160:[0,0,0,0,.25],710:[0,.75,0,0,1],732:[0,.75,0,0,1],770:[0,.75,0,0,1],771:[0,.75,0,0,1],8719:[.55001,1.05,0,0,1.27778],8720:[.55001,1.05,0,0,1.27778],8721:[.55001,1.05,0,0,1.44445],8730:[.65002,1.15,0,0,1],8747:[.86225,1.36,.44445,0,.55556],8748:[.862,1.36,.44445,0,.55556],8749:[.862,1.36,.44445,0,.55556],8750:[.86225,1.36,.44445,0,.55556],8896:[.55001,1.05,0,0,1.11111],8897:[.55001,1.05,0,0,1.11111],8898:[.55001,1.05,0,0,1.11111],8899:[.55001,1.05,0,0,1.11111],8968:[.65002,1.15,0,0,.52778],8969:[.65002,1.15,0,0,.52778],8970:[.65002,1.15,0,0,.52778],8971:[.65002,1.15,0,0,.52778],10216:[.65002,1.15,0,0,.61111],10217:[.65002,1.15,0,0,.61111],10752:[.55001,1.05,0,0,1.51112],10753:[.55001,1.05,0,0,1.51112],10754:[.55001,1.05,0,0,1.51112],10756:[.55001,1.05,0,0,1.11111],10758:[.55001,1.05,0,0,1.11111]},"Size3-Regular":{32:[0,0,0,0,.25],40:[.95003,1.45,0,0,.73611],41:[.95003,1.45,0,0,.73611],47:[.95003,1.45,0,0,1.04445],91:[.95003,1.45,0,0,.52778],92:[.95003,1.45,0,0,1.04445],93:[.95003,1.45,0,0,.52778],123:[.95003,1.45,0,0,.75],125:[.95003,1.45,0,0,.75],160:[0,0,0,0,.25],710:[0,.75,0,0,1.44445],732:[0,.75,0,0,1.44445],770:[0,.75,0,0,1.44445],771:[0,.75,0,0,1.44445],8730:[.95003,1.45,0,0,1],8968:[.95003,1.45,0,0,.58334],8969:[.95003,1.45,0,0,.58334],8970:[.95003,1.45,0,0,.58334],8971:[.95003,1.45,0,0,.58334],10216:[.95003,1.45,0,0,.75],10217:[.95003,1.45,0,0,.75]},"Size4-Regular":{32:[0,0,0,0,.25],40:[1.25003,1.75,0,0,.79167],41:[1.25003,1.75,0,0,.79167],47:[1.25003,1.75,0,0,1.27778],91:[1.25003,1.75,0,0,.58334],92:[1.25003,1.75,0,0,1.27778],93:[1.25003,1.75,0,0,.58334],123:[1.25003,1.75,0,0,.80556],125:[1.25003,1.75,0,0,.80556],160:[0,0,0,0,.25],710:[0,.825,0,0,1.8889],732:[0,.825,0,0,1.8889],770:[0,.825,0,0,1.8889],771:[0,.825,0,0,1.8889],8730:[1.25003,1.75,0,0,1],8968:[1.25003,1.75,0,0,.63889],8969:[1.25003,1.75,0,0,.63889],8970:[1.25003,1.75,0,0,.63889],8971:[1.25003,1.75,0,0,.63889],9115:[.64502,1.155,0,0,.875],9116:[1e-5,.6,0,0,.875],9117:[.64502,1.155,0,0,.875],9118:[.64502,1.155,0,0,.875],9119:[1e-5,.6,0,0,.875],9120:[.64502,1.155,0,0,.875],9121:[.64502,1.155,0,0,.66667],9122:[-99e-5,.601,0,0,.66667],9123:[.64502,1.155,0,0,.66667],9124:[.64502,1.155,0,0,.66667],9125:[-99e-5,.601,0,0,.66667],9126:[.64502,1.155,0,0,.66667],9127:[1e-5,.9,0,0,.88889],9128:[.65002,1.15,0,0,.88889],9129:[.90001,0,0,0,.88889],9130:[0,.3,0,0,.88889],9131:[1e-5,.9,0,0,.88889],9132:[.65002,1.15,0,0,.88889],9133:[.90001,0,0,0,.88889],9143:[.88502,.915,0,0,1.05556],10216:[1.25003,1.75,0,0,.80556],10217:[1.25003,1.75,0,0,.80556],57344:[-.00499,.605,0,0,1.05556],57345:[-.00499,.605,0,0,1.05556],57680:[0,.12,0,0,.45],57681:[0,.12,0,0,.45],57682:[0,.12,0,0,.45],57683:[0,.12,0,0,.45]},"Typewriter-Regular":{32:[0,0,0,0,.525],33:[0,.61111,0,0,.525],34:[0,.61111,0,0,.525],35:[0,.61111,0,0,.525],36:[.08333,.69444,0,0,.525],37:[.08333,.69444,0,0,.525],38:[0,.61111,0,0,.525],39:[0,.61111,0,0,.525],40:[.08333,.69444,0,0,.525],41:[.08333,.69444,0,0,.525],42:[0,.52083,0,0,.525],43:[-.08056,.53055,0,0,.525],44:[.13889,.125,0,0,.525],45:[-.08056,.53055,0,0,.525],46:[0,.125,0,0,.525],47:[.08333,.69444,0,0,.525],48:[0,.61111,0,0,.525],49:[0,.61111,0,0,.525],50:[0,.61111,0,0,.525],51:[0,.61111,0,0,.525],52:[0,.61111,0,0,.525],53:[0,.61111,0,0,.525],54:[0,.61111,0,0,.525],55:[0,.61111,0,0,.525],56:[0,.61111,0,0,.525],57:[0,.61111,0,0,.525],58:[0,.43056,0,0,.525],59:[.13889,.43056,0,0,.525],60:[-.05556,.55556,0,0,.525],61:[-.19549,.41562,0,0,.525],62:[-.05556,.55556,0,0,.525],63:[0,.61111,0,0,.525],64:[0,.61111,0,0,.525],65:[0,.61111,0,0,.525],66:[0,.61111,0,0,.525],67:[0,.61111,0,0,.525],68:[0,.61111,0,0,.525],69:[0,.61111,0,0,.525],70:[0,.61111,0,0,.525],71:[0,.61111,0,0,.525],72:[0,.61111,0,0,.525],73:[0,.61111,0,0,.525],74:[0,.61111,0,0,.525],75:[0,.61111,0,0,.525],76:[0,.61111,0,0,.525],77:[0,.61111,0,0,.525],78:[0,.61111,0,0,.525],79:[0,.61111,0,0,.525],80:[0,.61111,0,0,.525],81:[.13889,.61111,0,0,.525],82:[0,.61111,0,0,.525],83:[0,.61111,0,0,.525],84:[0,.61111,0,0,.525],85:[0,.61111,0,0,.525],86:[0,.61111,0,0,.525],87:[0,.61111,0,0,.525],88:[0,.61111,0,0,.525],89:[0,.61111,0,0,.525],90:[0,.61111,0,0,.525],91:[.08333,.69444,0,0,.525],92:[.08333,.69444,0,0,.525],93:[.08333,.69444,0,0,.525],94:[0,.61111,0,0,.525],95:[.09514,0,0,0,.525],96:[0,.61111,0,0,.525],97:[0,.43056,0,0,.525],98:[0,.61111,0,0,.525],99:[0,.43056,0,0,.525],100:[0,.61111,0,0,.525],101:[0,.43056,0,0,.525],102:[0,.61111,0,0,.525],103:[.22222,.43056,0,0,.525],104:[0,.61111,0,0,.525],105:[0,.61111,0,0,.525],106:[.22222,.61111,0,0,.525],107:[0,.61111,0,0,.525],108:[0,.61111,0,0,.525],109:[0,.43056,0,0,.525],110:[0,.43056,0,0,.525],111:[0,.43056,0,0,.525],112:[.22222,.43056,0,0,.525],113:[.22222,.43056,0,0,.525],114:[0,.43056,0,0,.525],115:[0,.43056,0,0,.525],116:[0,.55358,0,0,.525],117:[0,.43056,0,0,.525],118:[0,.43056,0,0,.525],119:[0,.43056,0,0,.525],120:[0,.43056,0,0,.525],121:[.22222,.43056,0,0,.525],122:[0,.43056,0,0,.525],123:[.08333,.69444,0,0,.525],124:[.08333,.69444,0,0,.525],125:[.08333,.69444,0,0,.525],126:[0,.61111,0,0,.525],127:[0,.61111,0,0,.525],160:[0,0,0,0,.525],176:[0,.61111,0,0,.525],184:[.19445,0,0,0,.525],305:[0,.43056,0,0,.525],567:[.22222,.43056,0,0,.525],711:[0,.56597,0,0,.525],713:[0,.56555,0,0,.525],714:[0,.61111,0,0,.525],715:[0,.61111,0,0,.525],728:[0,.61111,0,0,.525],730:[0,.61111,0,0,.525],770:[0,.61111,0,0,.525],771:[0,.61111,0,0,.525],776:[0,.61111,0,0,.525],915:[0,.61111,0,0,.525],916:[0,.61111,0,0,.525],920:[0,.61111,0,0,.525],923:[0,.61111,0,0,.525],926:[0,.61111,0,0,.525],928:[0,.61111,0,0,.525],931:[0,.61111,0,0,.525],933:[0,.61111,0,0,.525],934:[0,.61111,0,0,.525],936:[0,.61111,0,0,.525],937:[0,.61111,0,0,.525],8216:[0,.61111,0,0,.525],8217:[0,.61111,0,0,.525],8242:[0,.61111,0,0,.525],9251:[.11111,.21944,0,0,.525]}};const B={slant:[.25,.25,.25],space:[0,0,0],stretch:[0,0,0],shrink:[0,0,0],xHeight:[.431,.431,.431],quad:[1,1.171,1.472],extraSpace:[0,0,0],num1:[.677,.732,.925],num2:[.394,.384,.387],num3:[.444,.471,.504],denom1:[.686,.752,1.025],denom2:[.345,.344,.532],sup1:[.413,.503,.504],sup2:[.363,.431,.404],sup3:[.289,.286,.294],sub1:[.15,.143,.2],sub2:[.247,.286,.4],supDrop:[.386,.353,.494],subDrop:[.05,.071,.1],delim1:[2.39,1.7,1.98],delim2:[1.01,1.157,1.42],axisHeight:[.25,.25,.25],defaultRuleThickness:[.04,.049,.049],bigOpSpacing1:[.111,.111,.111],bigOpSpacing2:[.166,.166,.166],bigOpSpacing3:[.2,.2,.2],bigOpSpacing4:[.6,.611,.611],bigOpSpacing5:[.1,.143,.143],sqrtRuleThickness:[.04,.04,.04],ptPerEm:[10,10,10],doubleRuleSep:[.2,.2,.2],arrayRuleWidth:[.04,.04,.04],fboxsep:[.3,.3,.3],fboxrule:[.04,.04,.04]},C={"\xc5":"A","\xd0":"D","\xde":"o","\xe5":"a","\xf0":"d","\xfe":"o","\u0410":"A","\u0411":"B","\u0412":"B","\u0413":"F","\u0414":"A","\u0415":"E","\u0416":"K","\u0417":"3","\u0418":"N","\u0419":"N","\u041a":"K","\u041b":"N","\u041c":"M","\u041d":"H","\u041e":"O","\u041f":"N","\u0420":"P","\u0421":"C","\u0422":"T","\u0423":"y","\u0424":"O","\u0425":"X","\u0426":"U","\u0427":"h","\u0428":"W","\u0429":"W","\u042a":"B","\u042b":"X","\u042c":"B","\u042d":"3","\u042e":"X","\u042f":"R","\u0430":"a","\u0431":"b","\u0432":"a","\u0433":"r","\u0434":"y","\u0435":"e","\u0436":"m","\u0437":"e","\u0438":"n","\u0439":"n","\u043a":"n","\u043b":"n","\u043c":"m","\u043d":"n","\u043e":"o","\u043f":"n","\u0440":"p","\u0441":"c","\u0442":"o","\u0443":"y","\u0444":"b","\u0445":"x","\u0446":"n","\u0447":"n","\u0448":"w","\u0449":"w","\u044a":"a","\u044b":"m","\u044c":"a","\u044d":"e","\u044e":"m","\u044f":"r"};function N(e,t,r){if(!T[t])throw new Error("Font metrics not found for font: "+t+".");let n=e.charCodeAt(0),o=T[t][n];if(!o&&e[0]in C&&(n=C[e[0]].charCodeAt(0),o=T[t][n]),o||"text"!==r||S(n)&&(o=T[t][77]),o)return{depth:o[0],height:o[1],italic:o[2],skew:o[3],width:o[4]}}const q={};const I=[[1,1,1],[2,1,1],[3,1,1],[4,2,1],[5,2,1],[6,3,1],[7,4,2],[8,6,3],[9,7,6],[10,8,7],[11,10,9]],R=[.5,.6,.7,.8,.9,1,1.2,1.44,1.728,2.074,2.488],H=function(e,t){return t.size<2?e:I[e-1][t.size-1]};class O{constructor(e){this.style=void 0,this.color=void 0,this.size=void 0,this.textSize=void 0,this.phantom=void 0,this.font=void 0,this.fontFamily=void 0,this.fontWeight=void 0,this.fontShape=void 0,this.sizeMultiplier=void 0,this.maxSize=void 0,this.minRuleThickness=void 0,this._fontMetrics=void 0,this.style=e.style,this.color=e.color,this.size=e.size||O.BASESIZE,this.textSize=e.textSize||this.size,this.phantom=!!e.phantom,this.font=e.font||"",this.fontFamily=e.fontFamily||"",this.fontWeight=e.fontWeight||"",this.fontShape=e.fontShape||"",this.sizeMultiplier=R[this.size-1],this.maxSize=e.maxSize,this.minRuleThickness=e.minRuleThickness,this._fontMetrics=void 0}extend(e){const t={style:this.style,size:this.size,textSize:this.textSize,color:this.color,phantom:this.phantom,font:this.font,fontFamily:this.fontFamily,fontWeight:this.fontWeight,fontShape:this.fontShape,maxSize:this.maxSize,minRuleThickness:this.minRuleThickness};for(const r in e)e.hasOwnProperty(r)&&(t[r]=e[r]);return new O(t)}havingStyle(e){return this.style===e?this:this.extend({style:e,size:H(this.textSize,e)})}havingCrampedStyle(){return this.havingStyle(this.style.cramp())}havingSize(e){return this.size===e&&this.textSize===e?this:this.extend({style:this.style.text(),size:e,textSize:e,sizeMultiplier:R[e-1]})}havingBaseStyle(e){e=e||this.style.text();const t=H(O.BASESIZE,e);return this.size===t&&this.textSize===O.BASESIZE&&this.style===e?this:this.extend({style:e,size:t})}havingBaseSizing(){let e;switch(this.style.id){case 4:case 5:e=3;break;case 6:case 7:e=1;break;default:e=6}return this.extend({style:this.style.text(),size:e})}withColor(e){return this.extend({color:e})}withPhantom(){return this.extend({phantom:!0})}withFont(e){return this.extend({font:e})}withTextFontFamily(e){return this.extend({fontFamily:e,font:""})}withTextFontWeight(e){return this.extend({fontWeight:e,font:""})}withTextFontShape(e){return this.extend({fontShape:e,font:""})}sizingClasses(e){return e.size!==this.size?["sizing","reset-size"+e.size,"size"+this.size]:[]}baseSizingClasses(){return this.size!==O.BASESIZE?["sizing","reset-size"+this.size,"size"+O.BASESIZE]:[]}fontMetrics(){return this._fontMetrics||(this._fontMetrics=function(e){let t;if(t=e>=5?0:e>=3?1:2,!q[t]){const e=q[t]={cssEmPerMu:B.quad[t]/18};for(const r in B)B.hasOwnProperty(r)&&(e[r]=B[r][t])}return q[t]}(this.size)),this._fontMetrics}getColor(){return this.phantom?"transparent":this.color}}O.BASESIZE=6;var E=O;const L={pt:1,mm:7227/2540,cm:7227/254,in:72.27,bp:1.00375,pc:12,dd:1238/1157,cc:14856/1157,nd:685/642,nc:1370/107,sp:1/65536,px:1.00375},D={ex:!0,em:!0,mu:!0},V=function(e){return"string"!=typeof e&&(e=e.unit),e in L||e in D||"ex"===e},P=function(e,t){let r;if(e.unit in L)r=L[e.unit]/t.fontMetrics().ptPerEm/t.sizeMultiplier;else if("mu"===e.unit)r=t.fontMetrics().cssEmPerMu;else{let o;if(o=t.style.isTight()?t.havingStyle(t.style.text()):t,"ex"===e.unit)r=o.fontMetrics().xHeight;else{if("em"!==e.unit)throw new n("Invalid unit: '"+e.unit+"'");r=o.fontMetrics().quad}o!==t&&(r*=o.sizeMultiplier/t.sizeMultiplier)}return Math.min(e.number*r,t.maxSize)},F=function(e){return+e.toFixed(4)+"em"},G=function(e){return e.filter((e=>e)).join(" ")},U=function(e,t,r){if(this.classes=e||[],this.attributes={},this.height=0,this.depth=0,this.maxFontSize=0,this.style=r||{},t){t.style.isTight()&&this.classes.push("mtight");const e=t.getColor();e&&(this.style.color=e)}},Y=function(e){const t=document.createElement(e);t.className=G(this.classes);for(const e in this.style)this.style.hasOwnProperty(e)&&(t.style[e]=this.style[e]);for(const e in this.attributes)this.attributes.hasOwnProperty(e)&&t.setAttribute(e,this.attributes[e]);for(let e=0;e",t};class W{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.width=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,e,r,n),this.children=t||[]}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"span")}toMarkup(){return X.call(this,"span")}}class _{constructor(e,t,r,n){this.children=void 0,this.attributes=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,U.call(this,t,n),this.children=r||[],this.setAttribute("href",e)}setAttribute(e,t){this.attributes[e]=t}hasClass(e){return l.contains(this.classes,e)}toNode(){return Y.call(this,"a")}toMarkup(){return X.call(this,"a")}}class j{constructor(e,t,r){this.src=void 0,this.alt=void 0,this.classes=void 0,this.height=void 0,this.depth=void 0,this.maxFontSize=void 0,this.style=void 0,this.alt=t,this.src=e,this.classes=["mord"],this.style=r}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createElement("img");e.src=this.src,e.alt=this.alt,e.className="mord";for(const t in this.style)this.style.hasOwnProperty(t)&&(e.style[t]=this.style[t]);return e}toMarkup(){let e=''+l.escape(this.alt)+'=n[0]&&e<=n[1])return r.name}}return null}(this.text.charCodeAt(0));l&&this.classes.push(l+"_fallback"),/[\xee\xef\xed\xec]/.test(this.text)&&(this.text=$[this.text])}hasClass(e){return l.contains(this.classes,e)}toNode(){const e=document.createTextNode(this.text);let t=null;this.italic>0&&(t=document.createElement("span"),t.style.marginRight=F(this.italic)),this.classes.length>0&&(t=t||document.createElement("span"),t.className=G(this.classes));for(const e in this.style)this.style.hasOwnProperty(e)&&(t=t||document.createElement("span"),t.style[e]=this.style[e]);return t?(t.appendChild(e),t):e}toMarkup(){let e=!1,t="0&&(r+="margin-right:"+this.italic+"em;");for(const e in this.style)this.style.hasOwnProperty(e)&&(r+=l.hyphenate(e)+":"+this.style[e]+";");r&&(e=!0,t+=' style="'+l.escape(r)+'"');const n=l.escape(this.text);return e?(t+=">",t+=n,t+="",t):n}}class K{constructor(e,t){this.children=void 0,this.attributes=void 0,this.children=e||[],this.attributes=t||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","svg");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);for(let t=0;t':''}}class Q{constructor(e){this.attributes=void 0,this.attributes=e||{}}toNode(){const e=document.createElementNS("http://www.w3.org/2000/svg","line");for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);return e}toMarkup(){let e="","\\gt",!0),se(ie,le,ye,"\u2208","\\in",!0),se(ie,le,ye,"\ue020","\\@not"),se(ie,le,ye,"\u2282","\\subset",!0),se(ie,le,ye,"\u2283","\\supset",!0),se(ie,le,ye,"\u2286","\\subseteq",!0),se(ie,le,ye,"\u2287","\\supseteq",!0),se(ie,he,ye,"\u2288","\\nsubseteq",!0),se(ie,he,ye,"\u2289","\\nsupseteq",!0),se(ie,le,ye,"\u22a8","\\models"),se(ie,le,ye,"\u2190","\\leftarrow",!0),se(ie,le,ye,"\u2264","\\le"),se(ie,le,ye,"\u2264","\\leq",!0),se(ie,le,ye,"<","\\lt",!0),se(ie,le,ye,"\u2192","\\rightarrow",!0),se(ie,le,ye,"\u2192","\\to"),se(ie,he,ye,"\u2271","\\ngeq",!0),se(ie,he,ye,"\u2270","\\nleq",!0),se(ie,le,xe,"\xa0","\\ "),se(ie,le,xe,"\xa0","\\space"),se(ie,le,xe,"\xa0","\\nobreakspace"),se(ae,le,xe,"\xa0","\\ "),se(ae,le,xe,"\xa0"," "),se(ae,le,xe,"\xa0","\\space"),se(ae,le,xe,"\xa0","\\nobreakspace"),se(ie,le,xe,null,"\\nobreak"),se(ie,le,xe,null,"\\allowbreak"),se(ie,le,be,",",","),se(ie,le,be,";",";"),se(ie,he,me,"\u22bc","\\barwedge",!0),se(ie,he,me,"\u22bb","\\veebar",!0),se(ie,le,me,"\u2299","\\odot",!0),se(ie,le,me,"\u2295","\\oplus",!0),se(ie,le,me,"\u2297","\\otimes",!0),se(ie,le,we,"\u2202","\\partial",!0),se(ie,le,me,"\u2298","\\oslash",!0),se(ie,he,me,"\u229a","\\circledcirc",!0),se(ie,he,me,"\u22a1","\\boxdot",!0),se(ie,le,me,"\u25b3","\\bigtriangleup"),se(ie,le,me,"\u25bd","\\bigtriangledown"),se(ie,le,me,"\u2020","\\dagger"),se(ie,le,me,"\u22c4","\\diamond"),se(ie,le,me,"\u22c6","\\star"),se(ie,le,me,"\u25c3","\\triangleleft"),se(ie,le,me,"\u25b9","\\triangleright"),se(ie,le,fe,"{","\\{"),se(ae,le,we,"{","\\{"),se(ae,le,we,"{","\\textbraceleft"),se(ie,le,pe,"}","\\}"),se(ae,le,we,"}","\\}"),se(ae,le,we,"}","\\textbraceright"),se(ie,le,fe,"{","\\lbrace"),se(ie,le,pe,"}","\\rbrace"),se(ie,le,fe,"[","\\lbrack",!0),se(ae,le,we,"[","\\lbrack",!0),se(ie,le,pe,"]","\\rbrack",!0),se(ae,le,we,"]","\\rbrack",!0),se(ie,le,fe,"(","\\lparen",!0),se(ie,le,pe,")","\\rparen",!0),se(ae,le,we,"<","\\textless",!0),se(ae,le,we,">","\\textgreater",!0),se(ie,le,fe,"\u230a","\\lfloor",!0),se(ie,le,pe,"\u230b","\\rfloor",!0),se(ie,le,fe,"\u2308","\\lceil",!0),se(ie,le,pe,"\u2309","\\rceil",!0),se(ie,le,we,"\\","\\backslash"),se(ie,le,we,"\u2223","|"),se(ie,le,we,"\u2223","\\vert"),se(ae,le,we,"|","\\textbar",!0),se(ie,le,we,"\u2225","\\|"),se(ie,le,we,"\u2225","\\Vert"),se(ae,le,we,"\u2225","\\textbardbl"),se(ae,le,we,"~","\\textasciitilde"),se(ae,le,we,"\\","\\textbackslash"),se(ae,le,we,"^","\\textasciicircum"),se(ie,le,ye,"\u2191","\\uparrow",!0),se(ie,le,ye,"\u21d1","\\Uparrow",!0),se(ie,le,ye,"\u2193","\\downarrow",!0),se(ie,le,ye,"\u21d3","\\Downarrow",!0),se(ie,le,ye,"\u2195","\\updownarrow",!0),se(ie,le,ye,"\u21d5","\\Updownarrow",!0),se(ie,le,ge,"\u2210","\\coprod"),se(ie,le,ge,"\u22c1","\\bigvee"),se(ie,le,ge,"\u22c0","\\bigwedge"),se(ie,le,ge,"\u2a04","\\biguplus"),se(ie,le,ge,"\u22c2","\\bigcap"),se(ie,le,ge,"\u22c3","\\bigcup"),se(ie,le,ge,"\u222b","\\int"),se(ie,le,ge,"\u222b","\\intop"),se(ie,le,ge,"\u222c","\\iint"),se(ie,le,ge,"\u222d","\\iiint"),se(ie,le,ge,"\u220f","\\prod"),se(ie,le,ge,"\u2211","\\sum"),se(ie,le,ge,"\u2a02","\\bigotimes"),se(ie,le,ge,"\u2a01","\\bigoplus"),se(ie,le,ge,"\u2a00","\\bigodot"),se(ie,le,ge,"\u222e","\\oint"),se(ie,le,ge,"\u222f","\\oiint"),se(ie,le,ge,"\u2230","\\oiiint"),se(ie,le,ge,"\u2a06","\\bigsqcup"),se(ie,le,ge,"\u222b","\\smallint"),se(ae,le,ue,"\u2026","\\textellipsis"),se(ie,le,ue,"\u2026","\\mathellipsis"),se(ae,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u2026","\\ldots",!0),se(ie,le,ue,"\u22ef","\\@cdots",!0),se(ie,le,ue,"\u22f1","\\ddots",!0),se(ie,le,we,"\u22ee","\\varvdots"),se(ie,le,ce,"\u02ca","\\acute"),se(ie,le,ce,"\u02cb","\\grave"),se(ie,le,ce,"\xa8","\\ddot"),se(ie,le,ce,"~","\\tilde"),se(ie,le,ce,"\u02c9","\\bar"),se(ie,le,ce,"\u02d8","\\breve"),se(ie,le,ce,"\u02c7","\\check"),se(ie,le,ce,"^","\\hat"),se(ie,le,ce,"\u20d7","\\vec"),se(ie,le,ce,"\u02d9","\\dot"),se(ie,le,ce,"\u02da","\\mathring"),se(ie,le,de,"\ue131","\\@imath"),se(ie,le,de,"\ue237","\\@jmath"),se(ie,le,we,"\u0131","\u0131"),se(ie,le,we,"\u0237","\u0237"),se(ae,le,we,"\u0131","\\i",!0),se(ae,le,we,"\u0237","\\j",!0),se(ae,le,we,"\xdf","\\ss",!0),se(ae,le,we,"\xe6","\\ae",!0),se(ae,le,we,"\u0153","\\oe",!0),se(ae,le,we,"\xf8","\\o",!0),se(ae,le,we,"\xc6","\\AE",!0),se(ae,le,we,"\u0152","\\OE",!0),se(ae,le,we,"\xd8","\\O",!0),se(ae,le,ce,"\u02ca","\\'"),se(ae,le,ce,"\u02cb","\\`"),se(ae,le,ce,"\u02c6","\\^"),se(ae,le,ce,"\u02dc","\\~"),se(ae,le,ce,"\u02c9","\\="),se(ae,le,ce,"\u02d8","\\u"),se(ae,le,ce,"\u02d9","\\."),se(ae,le,ce,"\xb8","\\c"),se(ae,le,ce,"\u02da","\\r"),se(ae,le,ce,"\u02c7","\\v"),se(ae,le,ce,"\xa8",'\\"'),se(ae,le,ce,"\u02dd","\\H"),se(ae,le,ce,"\u25ef","\\textcircled");const ve={"--":!0,"---":!0,"``":!0,"''":!0};se(ae,le,we,"\u2013","--",!0),se(ae,le,we,"\u2013","\\textendash"),se(ae,le,we,"\u2014","---",!0),se(ae,le,we,"\u2014","\\textemdash"),se(ae,le,we,"\u2018","`",!0),se(ae,le,we,"\u2018","\\textquoteleft"),se(ae,le,we,"\u2019","'",!0),se(ae,le,we,"\u2019","\\textquoteright"),se(ae,le,we,"\u201c","``",!0),se(ae,le,we,"\u201c","\\textquotedblleft"),se(ae,le,we,"\u201d","''",!0),se(ae,le,we,"\u201d","\\textquotedblright"),se(ie,le,we,"\xb0","\\degree",!0),se(ae,le,we,"\xb0","\\degree"),se(ae,le,we,"\xb0","\\textdegree",!0),se(ie,le,we,"\xa3","\\pounds"),se(ie,le,we,"\xa3","\\mathsterling",!0),se(ae,le,we,"\xa3","\\pounds"),se(ae,le,we,"\xa3","\\textsterling",!0),se(ie,he,we,"\u2720","\\maltese"),se(ae,he,we,"\u2720","\\maltese");const ke='0123456789/@."';for(let e=0;e{if(G(e.classes)!==G(t.classes)||e.skew!==t.skew||e.maxFontSize!==t.maxFontSize)return!1;if(1===e.classes.length){const t=e.classes[0];if("mbin"===t||"mord"===t)return!1}for(const r in e.style)if(e.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;for(const r in t.style)if(t.style.hasOwnProperty(r)&&e.style[r]!==t.style[r])return!1;return!0},Ie=function(e){let t=0,r=0,n=0;for(let o=0;ot&&(t=s.height),s.depth>r&&(r=s.depth),s.maxFontSize>n&&(n=s.maxFontSize)}e.height=t,e.depth=r,e.maxFontSize=n},Re=function(e,t,r,n){const o=new W(e,t,r,n);return Ie(o),o},He=(e,t,r,n)=>new W(e,t,r,n),Oe=function(e){const t=new A(e);return Ie(t),t},Ee=function(e,t,r){let n,o="";switch(e){case"amsrm":o="AMS";break;case"textrm":o="Main";break;case"textsf":o="SansSerif";break;case"texttt":o="Typewriter";break;default:o=e}return n="textbf"===t&&"textit"===r?"BoldItalic":"textbf"===t?"Bold":"textit"===t?"Italic":"Regular",o+"-"+n},Le={mathbf:{variant:"bold",fontName:"Main-Bold"},mathrm:{variant:"normal",fontName:"Main-Regular"},textit:{variant:"italic",fontName:"Main-Italic"},mathit:{variant:"italic",fontName:"Main-Italic"},mathnormal:{variant:"italic",fontName:"Math-Italic"},mathbb:{variant:"double-struck",fontName:"AMS-Regular"},mathcal:{variant:"script",fontName:"Caligraphic-Regular"},mathfrak:{variant:"fraktur",fontName:"Fraktur-Regular"},mathscr:{variant:"script",fontName:"Script-Regular"},mathsf:{variant:"sans-serif",fontName:"SansSerif-Regular"},mathtt:{variant:"monospace",fontName:"Typewriter-Regular"}},De={vec:["vec",.471,.714],oiintSize1:["oiintSize1",.957,.499],oiintSize2:["oiintSize2",1.472,.659],oiiintSize1:["oiiintSize1",1.304,.499],oiiintSize2:["oiiintSize2",1.98,.659]};var Ve={fontMap:Le,makeSymbol:Ne,mathsym:function(e,t,r,n){return void 0===n&&(n=[]),"boldsymbol"===r.font&&Ce(e,"Main-Bold",t).metrics?Ne(e,"Main-Bold",t,r,n.concat(["mathbf"])):"\\"===e||"main"===oe[t][e].font?Ne(e,"Main-Regular",t,r,n):Ne(e,"AMS-Regular",t,r,n.concat(["amsrm"]))},makeSpan:Re,makeSvgSpan:He,makeLineSpan:function(e,t,r){const n=Re([e],[],t);return n.height=Math.max(r||t.fontMetrics().defaultRuleThickness,t.minRuleThickness),n.style.borderBottomWidth=F(n.height),n.maxFontSize=1,n},makeAnchor:function(e,t,r,n){const o=new _(e,t,r,n);return Ie(o),o},makeFragment:Oe,wrapFragment:function(e,t){return e instanceof A?Re([],[e],t):e},makeVList:function(e,t){const{children:r,depth:n}=function(e){if("individualShift"===e.positionType){const t=e.children,r=[t[0]],n=-t[0].shift-t[0].elem.depth;let o=n;for(let e=1;e0)return Ne(s,h,o,t,i.concat(c));if(l){let e,n;if("boldsymbol"===l){const t=function(e,t,r,n,o){return"textord"!==o&&Ce(e,"Math-BoldItalic",t).metrics?{fontName:"Math-BoldItalic",fontClass:"boldsymbol"}:{fontName:"Main-Bold",fontClass:"mathbf"}}(s,o,0,0,r);e=t.fontName,n=[t.fontClass]}else a?(e=Le[l].fontName,n=[l]):(e=Ee(l,t.fontWeight,t.fontShape),n=[l,t.fontWeight,t.fontShape]);if(Ce(s,e,o).metrics)return Ne(s,e,o,t,i.concat(n));if(ve.hasOwnProperty(s)&&"Typewriter"===e.slice(0,10)){const r=[];for(let a=0;a{const r=Re(["mspace"],[],t),n=P(e,t);return r.style.marginRight=F(n),r},staticSvg:function(e,t){const[r,n,o]=De[e],s=new J(r),i=new K([s],{width:F(n),height:F(o),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+1e3*o,preserveAspectRatio:"xMinYMin"}),a=He(["overlay"],[i],t);return a.height=o,a.style.height=F(o),a.style.width=F(n),a},svgData:De,tryCombineChars:e=>{for(let t=0;t{const r=t.classes[0],n=e.classes[0];"mbin"===r&&l.contains(et,n)?t.classes[0]="mord":"mbin"===n&&l.contains(Qe,r)&&(e.classes[0]="mord")}),{node:i},a,h),ot(o,((e,t)=>{const r=at(t),n=at(e),o=r&&n?e.hasClass("mtight")?Ye[r][n]:Ue[r][n]:null;if(o)return Ve.makeGlue(o,s)}),{node:i},a,h),o},ot=function(e,t,r,n,o){n&&e.push(n);let s=0;for(;sr=>{e.splice(t+1,0,r),s++})(s)}n&&e.pop()},st=function(e){return e instanceof A||e instanceof _||e instanceof W&&e.hasClass("enclosing")?e:null},it=function(e,t){const r=st(e);if(r){const e=r.children;if(e.length){if("right"===t)return it(e[e.length-1],"right");if("left"===t)return it(e[0],"left")}}return e},at=function(e,t){return e?(t&&(e=it(e,t)),rt[e.classes[0]]||null):null},lt=function(e,t){const r=["nulldelimiter"].concat(e.baseSizingClasses());return Je(t.concat(r))},ht=function(e,t,r){if(!e)return Je();if(We[e.type]){let n=We[e.type](e,t);if(r&&t.size!==r.size){n=Je(t.sizingClasses(r),[n],t);const e=t.sizeMultiplier/r.sizeMultiplier;n.height*=e,n.depth*=e}return n}throw new n("Got group of unknown type: '"+e.type+"'")};function ct(e,t){const r=Je(["base"],e,t),n=Je(["strut"]);return n.style.height=F(r.height+r.depth),r.depth&&(n.style.verticalAlign=F(-r.depth)),r.children.unshift(n),r}function mt(e,t){let r=null;1===e.length&&"tag"===e[0].type&&(r=e[0].tag,e=e[0].body);const n=nt(e,t,"root");let o;2===n.length&&n[1].hasClass("tag")&&(o=n.pop());const s=[];let i,a=[];for(let e=0;e0&&(s.push(ct(a,t)),a=[]),s.push(n[e]));a.length>0&&s.push(ct(a,t)),r?(i=ct(nt(r,t,!0)),i.classes=["tag"],s.push(i)):o&&s.push(o);const l=Je(["katex-html"],s);if(l.setAttribute("aria-hidden","true"),i){const e=i.children[0];e.style.height=F(l.height+l.depth),l.depth&&(e.style.verticalAlign=F(-l.depth))}return l}function pt(e){return new A(e)}class ut{constructor(e,t,r){this.type=void 0,this.attributes=void 0,this.children=void 0,this.classes=void 0,this.type=e,this.attributes={},this.children=t||[],this.classes=r||[]}setAttribute(e,t){this.attributes[e]=t}getAttribute(e){return this.attributes[e]}toNode(){const e=document.createElementNS("http://www.w3.org/1998/Math/MathML",this.type);for(const t in this.attributes)Object.prototype.hasOwnProperty.call(this.attributes,t)&&e.setAttribute(t,this.attributes[t]);this.classes.length>0&&(e.className=G(this.classes));for(let t=0;t0&&(e+=' class ="'+l.escape(G(this.classes))+'"'),e+=">";for(let t=0;t",e}toText(){return this.children.map((e=>e.toText())).join("")}}class dt{constructor(e){this.text=void 0,this.text=e}toNode(){return document.createTextNode(this.text)}toMarkup(){return l.escape(this.toText())}toText(){return this.text}}var gt={MathNode:ut,TextNode:dt,SpaceNode:class{constructor(e){this.width=void 0,this.character=void 0,this.width=e,this.character=e>=.05555&&e<=.05556?"\u200a":e>=.1666&&e<=.1667?"\u2009":e>=.2222&&e<=.2223?"\u2005":e>=.2777&&e<=.2778?"\u2005\u200a":e>=-.05556&&e<=-.05555?"\u200a\u2063":e>=-.1667&&e<=-.1666?"\u2009\u2063":e>=-.2223&&e<=-.2222?"\u205f\u2063":e>=-.2778&&e<=-.2777?"\u2005\u2063":null}toNode(){if(this.character)return document.createTextNode(this.character);{const e=document.createElementNS("http://www.w3.org/1998/Math/MathML","mspace");return e.setAttribute("width",F(this.width)),e}}toMarkup(){return this.character?""+this.character+"":''}toText(){return this.character?this.character:" "}},newDocumentFragment:pt};const ft=function(e,t,r){return!oe[t][e]||!oe[t][e].replace||55349===e.charCodeAt(0)||ve.hasOwnProperty(e)&&r&&(r.fontFamily&&"tt"===r.fontFamily.slice(4,6)||r.font&&"tt"===r.font.slice(4,6))||(e=oe[t][e].replace),new gt.TextNode(e)},bt=function(e){return 1===e.length?e[0]:new gt.MathNode("mrow",e)},yt=function(e,t){if("texttt"===t.fontFamily)return"monospace";if("textsf"===t.fontFamily)return"textit"===t.fontShape&&"textbf"===t.fontWeight?"sans-serif-bold-italic":"textit"===t.fontShape?"sans-serif-italic":"textbf"===t.fontWeight?"bold-sans-serif":"sans-serif";if("textit"===t.fontShape&&"textbf"===t.fontWeight)return"bold-italic";if("textit"===t.fontShape)return"italic";if("textbf"===t.fontWeight)return"bold";const r=t.font;if(!r||"mathnormal"===r)return null;const n=e.mode;if("mathit"===r)return"italic";if("boldsymbol"===r)return"textord"===e.type?"bold":"bold-italic";if("mathbf"===r)return"bold";if("mathbb"===r)return"double-struck";if("mathfrak"===r)return"fraktur";if("mathscr"===r||"mathcal"===r)return"script";if("mathsf"===r)return"sans-serif";if("mathtt"===r)return"monospace";let o=e.text;if(l.contains(["\\imath","\\jmath"],o))return null;oe[n][o]&&oe[n][o].replace&&(o=oe[n][o].replace);return N(o,Ve.fontMap[r].fontName,n)?Ve.fontMap[r].variant:null},xt=function(e,t,r){if(1===e.length){const n=vt(e[0],t);return r&&n instanceof ut&&"mo"===n.type&&(n.setAttribute("lspace","0em"),n.setAttribute("rspace","0em")),[n]}const n=[];let o;for(let r=0;r0&&(e.text=e.text.slice(0,1)+"\u0338"+e.text.slice(1),n.pop())}}}n.push(s),o=s}return n},wt=function(e,t,r){return bt(xt(e,t,r))},vt=function(e,t){if(!e)return new gt.MathNode("mrow");if(_e[e.type]){return _e[e.type](e,t)}throw new n("Got group of unknown type: '"+e.type+"'")};function kt(e,t,r,n,o){const s=xt(e,r);let i;i=1===s.length&&s[0]instanceof ut&&l.contains(["mrow","mtable"],s[0].type)?s[0]:new gt.MathNode("mrow",s);const a=new gt.MathNode("annotation",[new gt.TextNode(t)]);a.setAttribute("encoding","application/x-tex");const h=new gt.MathNode("semantics",[i,a]),c=new gt.MathNode("math",[h]);c.setAttribute("xmlns","http://www.w3.org/1998/Math/MathML"),n&&c.setAttribute("display","block");const m=o?"katex":"katex-mathml";return Ve.makeSpan([m],[c])}const St=function(e){return new E({style:e.displayMode?w.DISPLAY:w.TEXT,maxSize:e.maxSize,minRuleThickness:e.minRuleThickness})},Mt=function(e,t){if(t.displayMode){const r=["katex-display"];t.leqno&&r.push("leqno"),t.fleqn&&r.push("fleqn"),e=Ve.makeSpan(r,[e])}return e},zt=function(e,t,r){const n=St(r);let o;if("mathml"===r.output)return kt(e,t,n,r.displayMode,!0);if("html"===r.output){const t=mt(e,n);o=Ve.makeSpan(["katex"],[t])}else{const s=kt(e,t,n,r.displayMode,!1),i=mt(e,n);o=Ve.makeSpan(["katex"],[s,i])}return Mt(o,r)};const At={widehat:"^",widecheck:"\u02c7",widetilde:"~",utilde:"~",overleftarrow:"\u2190",underleftarrow:"\u2190",xleftarrow:"\u2190",overrightarrow:"\u2192",underrightarrow:"\u2192",xrightarrow:"\u2192",underbrace:"\u23df",overbrace:"\u23de",overgroup:"\u23e0",undergroup:"\u23e1",overleftrightarrow:"\u2194",underleftrightarrow:"\u2194",xleftrightarrow:"\u2194",Overrightarrow:"\u21d2",xRightarrow:"\u21d2",overleftharpoon:"\u21bc",xleftharpoonup:"\u21bc",overrightharpoon:"\u21c0",xrightharpoonup:"\u21c0",xLeftarrow:"\u21d0",xLeftrightarrow:"\u21d4",xhookleftarrow:"\u21a9",xhookrightarrow:"\u21aa",xmapsto:"\u21a6",xrightharpoondown:"\u21c1",xleftharpoondown:"\u21bd",xrightleftharpoons:"\u21cc",xleftrightharpoons:"\u21cb",xtwoheadleftarrow:"\u219e",xtwoheadrightarrow:"\u21a0",xlongequal:"=",xtofrom:"\u21c4",xrightleftarrows:"\u21c4",xrightequilibrium:"\u21cc",xleftequilibrium:"\u21cb","\\cdrightarrow":"\u2192","\\cdleftarrow":"\u2190","\\cdlongequal":"="},Tt={overrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],overleftarrow:[["leftarrow"],.888,522,"xMinYMin"],underrightarrow:[["rightarrow"],.888,522,"xMaxYMin"],underleftarrow:[["leftarrow"],.888,522,"xMinYMin"],xrightarrow:[["rightarrow"],1.469,522,"xMaxYMin"],"\\cdrightarrow":[["rightarrow"],3,522,"xMaxYMin"],xleftarrow:[["leftarrow"],1.469,522,"xMinYMin"],"\\cdleftarrow":[["leftarrow"],3,522,"xMinYMin"],Overrightarrow:[["doublerightarrow"],.888,560,"xMaxYMin"],xRightarrow:[["doublerightarrow"],1.526,560,"xMaxYMin"],xLeftarrow:[["doubleleftarrow"],1.526,560,"xMinYMin"],overleftharpoon:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoonup:[["leftharpoon"],.888,522,"xMinYMin"],xleftharpoondown:[["leftharpoondown"],.888,522,"xMinYMin"],overrightharpoon:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoonup:[["rightharpoon"],.888,522,"xMaxYMin"],xrightharpoondown:[["rightharpoondown"],.888,522,"xMaxYMin"],xlongequal:[["longequal"],.888,334,"xMinYMin"],"\\cdlongequal":[["longequal"],3,334,"xMinYMin"],xtwoheadleftarrow:[["twoheadleftarrow"],.888,334,"xMinYMin"],xtwoheadrightarrow:[["twoheadrightarrow"],.888,334,"xMaxYMin"],overleftrightarrow:[["leftarrow","rightarrow"],.888,522],overbrace:[["leftbrace","midbrace","rightbrace"],1.6,548],underbrace:[["leftbraceunder","midbraceunder","rightbraceunder"],1.6,548],underleftrightarrow:[["leftarrow","rightarrow"],.888,522],xleftrightarrow:[["leftarrow","rightarrow"],1.75,522],xLeftrightarrow:[["doubleleftarrow","doublerightarrow"],1.75,560],xrightleftharpoons:[["leftharpoondownplus","rightharpoonplus"],1.75,716],xleftrightharpoons:[["leftharpoonplus","rightharpoondownplus"],1.75,716],xhookleftarrow:[["leftarrow","righthook"],1.08,522],xhookrightarrow:[["lefthook","rightarrow"],1.08,522],overlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],underlinesegment:[["leftlinesegment","rightlinesegment"],.888,522],overgroup:[["leftgroup","rightgroup"],.888,342],undergroup:[["leftgroupunder","rightgroupunder"],.888,342],xmapsto:[["leftmapsto","rightarrow"],1.5,522],xtofrom:[["leftToFrom","rightToFrom"],1.75,528],xrightleftarrows:[["baraboveleftarrow","rightarrowabovebar"],1.75,901],xrightequilibrium:[["baraboveshortleftharpoon","rightharpoonaboveshortbar"],1.75,716],xleftequilibrium:[["shortbaraboveleftharpoon","shortrightharpoonabovebar"],1.75,716]};var Bt=function(e,t,r,n,o){let s;const i=e.height+e.depth+r+n;if(/fbox|color|angl/.test(t)){if(s=Ve.makeSpan(["stretchy",t],[],o),"fbox"===t){const e=o.color&&o.getColor();e&&(s.style.borderColor=e)}}else{const e=[];/^[bx]cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"0",x2:"100%",y2:"100%","stroke-width":"0.046em"})),/^x?cancel$/.test(t)&&e.push(new Q({x1:"0",y1:"100%",x2:"100%",y2:"0","stroke-width":"0.046em"}));const r=new K(e,{width:"100%",height:F(i)});s=Ve.makeSvgSpan([],[r],o)}return s.height=i,s.style.height=F(i),s},Ct=function(e){const t=new gt.MathNode("mo",[new gt.TextNode(At[e.replace(/^\\/,"")])]);return t.setAttribute("stretchy","true"),t},Nt=function(e,t){const{span:r,minWidth:n,height:o}=function(){let r=4e5;const n=e.label.slice(1);if(l.contains(["widehat","widecheck","widetilde","utilde"],n)){const s="ordgroup"===(o=e.base).type?o.body.length:1;let i,a,l;if(s>5)"widehat"===n||"widecheck"===n?(i=420,r=2364,l=.42,a=n+"4"):(i=312,r=2340,l=.34,a="tilde4");else{const e=[1,1,2,2,3,3][s];"widehat"===n||"widecheck"===n?(r=[0,1062,2364,2364,2364][e],i=[0,239,300,360,420][e],l=[0,.24,.3,.3,.36,.42][e],a=n+e):(r=[0,600,1033,2339,2340][e],i=[0,260,286,306,312][e],l=[0,.26,.286,.3,.306,.34][e],a="tilde"+e)}const h=new J(a),c=new K([h],{width:"100%",height:F(l),viewBox:"0 0 "+r+" "+i,preserveAspectRatio:"none"});return{span:Ve.makeSvgSpan([],[c],t),minWidth:0,height:l}}{const e=[],o=Tt[n],[s,i,a]=o,l=a/1e3,h=s.length;let c,m;if(1===h){c=["hide-tail"],m=[o[3]]}else if(2===h)c=["halfarrow-left","halfarrow-right"],m=["xMinYMin","xMaxYMin"];else{if(3!==h)throw new Error("Correct katexImagesData or update code here to support\n "+h+" children.");c=["brace-left","brace-center","brace-right"],m=["xMinYMin","xMidYMin","xMaxYMin"]}for(let n=0;n0&&(r.style.minWidth=F(n)),r};function qt(e,t){if(!e||e.type!==t)throw new Error("Expected node of type "+t+", but got "+(e?"node of type "+e.type:String(e)));return e}function It(e){const t=Rt(e);if(!t)throw new Error("Expected node of symbol group type, but got "+(e?"node of type "+e.type:String(e)));return t}function Rt(e){return e&&("atom"===e.type||re.hasOwnProperty(e.type))?e:null}const Ht=(e,t)=>{let r,n,o;e&&"supsub"===e.type?(n=qt(e.base,"accent"),r=n.base,e.base=r,o=function(e){if(e instanceof W)return e;throw new Error("Expected span but got "+String(e)+".")}(ht(e,t)),e.base=n):(n=qt(e,"accent"),r=n.base);const s=ht(r,t.havingCrampedStyle());let i=0;if(n.isShifty&&l.isCharacterBox(r)){const e=l.getBaseElem(r);i=ee(ht(e,t.havingCrampedStyle())).skew}const a="\\c"===n.label;let h,c=a?s.height+s.depth:Math.min(s.height,t.fontMetrics().xHeight);if(n.isStretchy)h=Nt(n,t),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"elem",elem:h,wrapperClasses:["svg-align"],wrapperStyle:i>0?{width:"calc(100% - "+F(2*i)+")",marginLeft:F(2*i)}:void 0}]},t);else{let e,r;"\\vec"===n.label?(e=Ve.staticSvg("vec",t),r=Ve.svgData.vec[1]):(e=Ve.makeOrd({mode:n.mode,text:n.label},t,"textord"),e=ee(e),e.italic=0,r=e.width,a&&(c+=e.depth)),h=Ve.makeSpan(["accent-body"],[e]);const o="\\textcircled"===n.label;o&&(h.classes.push("accent-full"),c=s.height);let l=i;o||(l-=r/2),h.style.left=F(l),"\\textcircled"===n.label&&(h.style.top=".2em"),h=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:-c},{type:"elem",elem:h}]},t)}const m=Ve.makeSpan(["mord","accent"],[h],t);return o?(o.children[0]=m,o.height=Math.max(m.height,o.height),o.classes[0]="mord",o):m},Ot=(e,t)=>{const r=e.isStretchy?Ct(e.label):new gt.MathNode("mo",[ft(e.label,e.mode)]),n=new gt.MathNode("mover",[vt(e.base,t),r]);return n.setAttribute("accent","true"),n},Et=new RegExp(["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring"].map((e=>"\\"+e)).join("|"));je({type:"accent",names:["\\acute","\\grave","\\ddot","\\tilde","\\bar","\\breve","\\check","\\hat","\\vec","\\dot","\\mathring","\\widecheck","\\widehat","\\widetilde","\\overrightarrow","\\overleftarrow","\\Overrightarrow","\\overleftrightarrow","\\overgroup","\\overlinesegment","\\overleftharpoon","\\overrightharpoon"],props:{numArgs:1},handler:(e,t)=>{const r=Ze(t[0]),n=!Et.test(e.funcName),o=!n||"\\widehat"===e.funcName||"\\widetilde"===e.funcName||"\\widecheck"===e.funcName;return{type:"accent",mode:e.parser.mode,label:e.funcName,isStretchy:n,isShifty:o,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accent",names:["\\'","\\`","\\^","\\~","\\=","\\u","\\.",'\\"',"\\c","\\r","\\H","\\v","\\textcircled"],props:{numArgs:1,allowedInText:!0,allowedInMath:!0,argTypes:["primitive"]},handler:(e,t)=>{const r=t[0];let n=e.parser.mode;return"math"===n&&(e.parser.settings.reportNonstrict("mathVsTextAccents","LaTeX's accent "+e.funcName+" works only in text mode"),n="text"),{type:"accent",mode:n,label:e.funcName,isStretchy:!1,isShifty:!0,base:r}},htmlBuilder:Ht,mathmlBuilder:Ot}),je({type:"accentUnder",names:["\\underleftarrow","\\underrightarrow","\\underleftrightarrow","\\undergroup","\\underlinesegment","\\utilde"],props:{numArgs:1},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"accentUnder",mode:r.mode,label:n,base:o}},htmlBuilder:(e,t)=>{const r=ht(e.base,t),n=Nt(e,t),o="\\utilde"===e.label?.12:0,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"elem",elem:n,wrapperClasses:["svg-align"]},{type:"kern",size:o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","accentunder"],[s],t)},mathmlBuilder:(e,t)=>{const r=Ct(e.label),n=new gt.MathNode("munder",[vt(e.base,t),r]);return n.setAttribute("accentunder","true"),n}});const Lt=e=>{const t=new gt.MathNode("mpadded",e?[e]:[]);return t.setAttribute("width","+0.6em"),t.setAttribute("lspace","0.3em"),t};je({type:"xArrow",names:["\\xleftarrow","\\xrightarrow","\\xLeftarrow","\\xRightarrow","\\xleftrightarrow","\\xLeftrightarrow","\\xhookleftarrow","\\xhookrightarrow","\\xmapsto","\\xrightharpoondown","\\xrightharpoonup","\\xleftharpoondown","\\xleftharpoonup","\\xrightleftharpoons","\\xleftrightharpoons","\\xlongequal","\\xtwoheadrightarrow","\\xtwoheadleftarrow","\\xtofrom","\\xrightleftarrows","\\xrightequilibrium","\\xleftequilibrium","\\\\cdrightarrow","\\\\cdleftarrow","\\\\cdlongequal"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n,funcName:o}=e;return{type:"xArrow",mode:n.mode,label:o,body:t[0],below:r[0]}},htmlBuilder(e,t){const r=t.style;let n=t.havingStyle(r.sup());const o=Ve.wrapFragment(ht(e.body,n,t),t),s="\\x"===e.label.slice(0,2)?"x":"cd";let i;o.classes.push(s+"-arrow-pad"),e.below&&(n=t.havingStyle(r.sub()),i=Ve.wrapFragment(ht(e.below,n,t),t),i.classes.push(s+"-arrow-pad"));const a=Nt(e,t),l=-t.fontMetrics().axisHeight+.5*a.height;let h,c=-t.fontMetrics().axisHeight-.5*a.height-.111;if((o.depth>.25||"\\xleftequilibrium"===e.label)&&(c-=o.depth),i){const e=-t.fontMetrics().axisHeight+i.height+.5*a.height+.111;h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l},{type:"elem",elem:i,shift:e}]},t)}else h=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:c},{type:"elem",elem:a,shift:l}]},t);return h.children[0].children[0].children[1].classes.push("svg-align"),Ve.makeSpan(["mrel","x-arrow"],[h],t)},mathmlBuilder(e,t){const r=Ct(e.label);let n;if(r.setAttribute("minsize","x"===e.label.charAt(0)?"1.75em":"3.0em"),e.body){const o=Lt(vt(e.body,t));if(e.below){const s=Lt(vt(e.below,t));n=new gt.MathNode("munderover",[r,s,o])}else n=new gt.MathNode("mover",[r,o])}else if(e.below){const o=Lt(vt(e.below,t));n=new gt.MathNode("munder",[r,o])}else n=Lt(),n=new gt.MathNode("mover",[r,n]);return n}});const Dt=Ve.makeSpan;function Vt(e,t){const r=nt(e.body,t,!0);return Dt([e.mclass],r,t)}function Pt(e,t){let r;const n=xt(e.body,t);return"minner"===e.mclass?r=new gt.MathNode("mpadded",n):"mord"===e.mclass?e.isCharacterBox?(r=n[0],r.type="mi"):r=new gt.MathNode("mi",n):(e.isCharacterBox?(r=n[0],r.type="mo"):r=new gt.MathNode("mo",n),"mbin"===e.mclass?(r.attributes.lspace="0.22em",r.attributes.rspace="0.22em"):"mpunct"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0.17em"):"mopen"===e.mclass||"mclose"===e.mclass?(r.attributes.lspace="0em",r.attributes.rspace="0em"):"minner"===e.mclass&&(r.attributes.lspace="0.0556em",r.attributes.width="+0.1111em")),r}je({type:"mclass",names:["\\mathord","\\mathbin","\\mathrel","\\mathopen","\\mathclose","\\mathpunct","\\mathinner"],props:{numArgs:1,primitive:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"mclass",mode:r.mode,mclass:"m"+n.slice(5),body:Ke(o),isCharacterBox:l.isCharacterBox(o)}},htmlBuilder:Vt,mathmlBuilder:Pt});const Ft=e=>{const t="ordgroup"===e.type&&e.body.length?e.body[0]:e;return"atom"!==t.type||"bin"!==t.family&&"rel"!==t.family?"mord":"m"+t.family};je({type:"mclass",names:["\\@binrel"],props:{numArgs:2},handler(e,t){let{parser:r}=e;return{type:"mclass",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[1]),isCharacterBox:l.isCharacterBox(t[1])}}}),je({type:"mclass",names:["\\stackrel","\\overset","\\underset"],props:{numArgs:2},handler(e,t){let{parser:r,funcName:n}=e;const o=t[1],s=t[0];let i;i="\\stackrel"!==n?Ft(o):"mrel";const a={type:"op",mode:o.mode,limits:!0,alwaysHandleSupSub:!0,parentIsSupSub:!1,symbol:!1,suppressBaseShift:"\\stackrel"!==n,body:Ke(o)},h={type:"supsub",mode:s.mode,base:a,sup:"\\underset"===n?null:s,sub:"\\underset"===n?s:null};return{type:"mclass",mode:r.mode,mclass:i,body:[h],isCharacterBox:l.isCharacterBox(h)}},htmlBuilder:Vt,mathmlBuilder:Pt}),je({type:"pmb",names:["\\pmb"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"pmb",mode:r.mode,mclass:Ft(t[0]),body:Ke(t[0])}},htmlBuilder(e,t){const r=nt(e.body,t,!0),n=Ve.makeSpan([e.mclass],r,t);return n.style.textShadow="0.02em 0.01em 0.04px",n},mathmlBuilder(e,t){const r=xt(e.body,t),n=new gt.MathNode("mstyle",r);return n.setAttribute("style","text-shadow: 0.02em 0.01em 0.04px"),n}});const Gt={">":"\\\\cdrightarrow","<":"\\\\cdleftarrow","=":"\\\\cdlongequal",A:"\\uparrow",V:"\\downarrow","|":"\\Vert",".":"no arrow"},Ut=e=>"textord"===e.type&&"@"===e.text;function Yt(e,t,r){const n=Gt[e];switch(n){case"\\\\cdrightarrow":case"\\\\cdleftarrow":return r.callFunction(n,[t[0]],[t[1]]);case"\\uparrow":case"\\downarrow":{const e={type:"atom",text:n,mode:"math",family:"rel"},o={type:"ordgroup",mode:"math",body:[r.callFunction("\\\\cdleft",[t[0]],[]),r.callFunction("\\Big",[e],[]),r.callFunction("\\\\cdright",[t[1]],[])]};return r.callFunction("\\\\cdparent",[o],[])}case"\\\\cdlongequal":return r.callFunction("\\\\cdlongequal",[],[]);case"\\Vert":{const e={type:"textord",text:"\\Vert",mode:"math"};return r.callFunction("\\Big",[e],[])}default:return{type:"textord",text:" ",mode:"math"}}}je({type:"cdlabel",names:["\\\\cdleft","\\\\cdright"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"cdlabel",mode:r.mode,side:n.slice(4),label:t[0]}},htmlBuilder(e,t){const r=t.havingStyle(t.style.sup()),n=Ve.wrapFragment(ht(e.label,r,t),t);return n.classes.push("cd-label-"+e.side),n.style.bottom=F(.8-n.depth),n.height=0,n.depth=0,n},mathmlBuilder(e,t){let r=new gt.MathNode("mrow",[vt(e.label,t)]);return r=new gt.MathNode("mpadded",[r]),r.setAttribute("width","0"),"left"===e.side&&r.setAttribute("lspace","-1width"),r.setAttribute("voffset","0.7em"),r=new gt.MathNode("mstyle",[r]),r.setAttribute("displaystyle","false"),r.setAttribute("scriptlevel","1"),r}}),je({type:"cdlabelparent",names:["\\\\cdparent"],props:{numArgs:1},handler(e,t){let{parser:r}=e;return{type:"cdlabelparent",mode:r.mode,fragment:t[0]}},htmlBuilder(e,t){const r=Ve.wrapFragment(ht(e.fragment,t),t);return r.classes.push("cd-vert-arrow"),r},mathmlBuilder(e,t){return new gt.MathNode("mrow",[vt(e.fragment,t)])}}),je({type:"textord",names:["\\@char"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;const o=qt(t[0],"ordgroup").body;let s="";for(let e=0;e=1114111)throw new n("\\@char with invalid code point "+s);return a<=65535?i=String.fromCharCode(a):(a-=65536,i=String.fromCharCode(55296+(a>>10),56320+(1023&a))),{type:"textord",mode:r.mode,text:i}}});const Xt=(e,t)=>{const r=nt(e.body,t.withColor(e.color),!1);return Ve.makeFragment(r)},Wt=(e,t)=>{const r=xt(e.body,t.withColor(e.color)),n=new gt.MathNode("mstyle",r);return n.setAttribute("mathcolor",e.color),n};je({type:"color",names:["\\textcolor"],props:{numArgs:2,allowedInText:!0,argTypes:["color","original"]},handler(e,t){let{parser:r}=e;const n=qt(t[0],"color-token").color,o=t[1];return{type:"color",mode:r.mode,color:n,body:Ke(o)}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"color",names:["\\color"],props:{numArgs:1,allowedInText:!0,argTypes:["color"]},handler(e,t){let{parser:r,breakOnTokenText:n}=e;const o=qt(t[0],"color-token").color;r.gullet.macros.set("\\current@color",o);const s=r.parseExpression(!0,n);return{type:"color",mode:r.mode,color:o,body:s}},htmlBuilder:Xt,mathmlBuilder:Wt}),je({type:"cr",names:["\\\\"],props:{numArgs:0,numOptionalArgs:0,allowedInText:!0},handler(e,t,r){let{parser:n}=e;const o="["===n.gullet.future().text?n.parseSizeGroup(!0):null,s=!n.settings.displayMode||!n.settings.useStrictBehavior("newLineInDisplayMode","In LaTeX, \\\\ or \\newline does nothing in display mode");return{type:"cr",mode:n.mode,newLine:s,size:o&&qt(o,"size").value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mspace"],[],t);return e.newLine&&(r.classes.push("newline"),e.size&&(r.style.marginTop=F(P(e.size,t)))),r},mathmlBuilder(e,t){const r=new gt.MathNode("mspace");return e.newLine&&(r.setAttribute("linebreak","newline"),e.size&&r.setAttribute("height",F(P(e.size,t)))),r}});const _t={"\\global":"\\global","\\long":"\\\\globallong","\\\\globallong":"\\\\globallong","\\def":"\\gdef","\\gdef":"\\gdef","\\edef":"\\xdef","\\xdef":"\\xdef","\\let":"\\\\globallet","\\futurelet":"\\\\globalfuture"},jt=e=>{const t=e.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(t))throw new n("Expected a control sequence",e);return t},$t=(e,t,r,n)=>{let o=e.gullet.macros.get(r.text);null==o&&(r.noexpand=!0,o={tokens:[r],numArgs:0,unexpandable:!e.gullet.isExpandable(r.text)}),e.gullet.macros.set(t,o,n)};je({type:"internal",names:["\\global","\\long","\\\\globallong"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t,funcName:r}=e;t.consumeSpaces();const o=t.fetch();if(_t[o.text])return"\\global"!==r&&"\\\\globallong"!==r||(o.text=_t[o.text]),qt(t.parseFunction(),"internal");throw new n("Invalid token after macro prefix",o)}}),je({type:"internal",names:["\\def","\\gdef","\\edef","\\xdef"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e,o=t.gullet.popToken();const s=o.text;if(/^(?:[\\{}$&#^_]|EOF)$/.test(s))throw new n("Expected a control sequence",o);let i,a=0;const l=[[]];for(;"{"!==t.gullet.future().text;)if(o=t.gullet.popToken(),"#"===o.text){if("{"===t.gullet.future().text){i=t.gullet.future(),l[a].push("{");break}if(o=t.gullet.popToken(),!/^[1-9]$/.test(o.text))throw new n('Invalid argument number "'+o.text+'"');if(parseInt(o.text)!==a+1)throw new n('Argument number "'+o.text+'" out of order');a++,l.push([])}else{if("EOF"===o.text)throw new n("Expected a macro definition");l[a].push(o.text)}let{tokens:h}=t.gullet.consumeArg();return i&&h.unshift(i),"\\edef"!==r&&"\\xdef"!==r||(h=t.gullet.expandTokens(h),h.reverse()),t.gullet.macros.set(s,{tokens:h,numArgs:a,delimiters:l},r===_t[r]),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\let","\\\\globallet"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken());t.gullet.consumeSpaces();const o=(e=>{let t=e.gullet.popToken();return"="===t.text&&(t=e.gullet.popToken()," "===t.text&&(t=e.gullet.popToken())),t})(t);return $t(t,n,o,"\\\\globallet"===r),{type:"internal",mode:t.mode}}}),je({type:"internal",names:["\\futurelet","\\\\globalfuture"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e){let{parser:t,funcName:r}=e;const n=jt(t.gullet.popToken()),o=t.gullet.popToken(),s=t.gullet.popToken();return $t(t,n,s,"\\\\globalfuture"===r),t.gullet.pushToken(s),t.gullet.pushToken(o),{type:"internal",mode:t.mode}}});const Zt=function(e,t,r){const n=N(oe.math[e]&&oe.math[e].replace||e,t,r);if(!n)throw new Error("Unsupported symbol "+e+" and font size "+t+".");return n},Kt=function(e,t,r,n){const o=r.havingBaseStyle(t),s=Ve.makeSpan(n.concat(o.sizingClasses(r)),[e],r),i=o.sizeMultiplier/r.sizeMultiplier;return s.height*=i,s.depth*=i,s.maxFontSize=o.sizeMultiplier,s},Jt=function(e,t,r){const n=t.havingBaseStyle(r),o=(1-t.sizeMultiplier/n.sizeMultiplier)*t.fontMetrics().axisHeight;e.classes.push("delimcenter"),e.style.top=F(o),e.height-=o,e.depth+=o},Qt=function(e,t,r,n,o,s){const i=function(e,t,r,n){return Ve.makeSymbol(e,"Size"+t+"-Regular",r,n)}(e,t,o,n),a=Kt(Ve.makeSpan(["delimsizing","size"+t],[i],n),w.TEXT,n,s);return r&&Jt(a,n,w.TEXT),a},er=function(e,t,r){let n;n="Size1-Regular"===t?"delim-size1":"delim-size4";return{type:"elem",elem:Ve.makeSpan(["delimsizinginner",n],[Ve.makeSpan([],[Ve.makeSymbol(e,t,r)])])}},tr=function(e,t,r){const n=T["Size4-Regular"][e.charCodeAt(0)]?T["Size4-Regular"][e.charCodeAt(0)][4]:T["Size1-Regular"][e.charCodeAt(0)][4],o=new J("inner",function(e,t){switch(e){case"\u239c":return"M291 0 H417 V"+t+" H291z M291 0 H417 V"+t+" H291z";case"\u2223":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145z";case"\u2225":return"M145 0 H188 V"+t+" H145z M145 0 H188 V"+t+" H145zM367 0 H410 V"+t+" H367z M367 0 H410 V"+t+" H367z";case"\u239f":return"M457 0 H583 V"+t+" H457z M457 0 H583 V"+t+" H457z";case"\u23a2":return"M319 0 H403 V"+t+" H319z M319 0 H403 V"+t+" H319z";case"\u23a5":return"M263 0 H347 V"+t+" H263z M263 0 H347 V"+t+" H263z";case"\u23aa":return"M384 0 H504 V"+t+" H384z M384 0 H504 V"+t+" H384z";case"\u23d0":return"M312 0 H355 V"+t+" H312z M312 0 H355 V"+t+" H312z";case"\u2016":return"M257 0 H300 V"+t+" H257z M257 0 H300 V"+t+" H257zM478 0 H521 V"+t+" H478z M478 0 H521 V"+t+" H478z";default:return""}}(e,Math.round(1e3*t))),s=new K([o],{width:F(n),height:F(t),style:"width:"+F(n),viewBox:"0 0 "+1e3*n+" "+Math.round(1e3*t),preserveAspectRatio:"xMinYMin"}),i=Ve.makeSvgSpan([],[s],r);return i.height=t,i.style.height=F(t),i.style.width=F(n),{type:"elem",elem:i}},rr={type:"kern",size:-.008},nr=["|","\\lvert","\\rvert","\\vert"],or=["\\|","\\lVert","\\rVert","\\Vert"],sr=function(e,t,r,n,o,s){let i,a,h,c,m="",p=0;i=h=c=e,a=null;let u="Size1-Regular";"\\uparrow"===e?h=c="\u23d0":"\\Uparrow"===e?h=c="\u2016":"\\downarrow"===e?i=h="\u23d0":"\\Downarrow"===e?i=h="\u2016":"\\updownarrow"===e?(i="\\uparrow",h="\u23d0",c="\\downarrow"):"\\Updownarrow"===e?(i="\\Uparrow",h="\u2016",c="\\Downarrow"):l.contains(nr,e)?(h="\u2223",m="vert",p=333):l.contains(or,e)?(h="\u2225",m="doublevert",p=556):"["===e||"\\lbrack"===e?(i="\u23a1",h="\u23a2",c="\u23a3",u="Size4-Regular",m="lbrack",p=667):"]"===e||"\\rbrack"===e?(i="\u23a4",h="\u23a5",c="\u23a6",u="Size4-Regular",m="rbrack",p=667):"\\lfloor"===e||"\u230a"===e?(h=i="\u23a2",c="\u23a3",u="Size4-Regular",m="lfloor",p=667):"\\lceil"===e||"\u2308"===e?(i="\u23a1",h=c="\u23a2",u="Size4-Regular",m="lceil",p=667):"\\rfloor"===e||"\u230b"===e?(h=i="\u23a5",c="\u23a6",u="Size4-Regular",m="rfloor",p=667):"\\rceil"===e||"\u2309"===e?(i="\u23a4",h=c="\u23a5",u="Size4-Regular",m="rceil",p=667):"("===e||"\\lparen"===e?(i="\u239b",h="\u239c",c="\u239d",u="Size4-Regular",m="lparen",p=875):")"===e||"\\rparen"===e?(i="\u239e",h="\u239f",c="\u23a0",u="Size4-Regular",m="rparen",p=875):"\\{"===e||"\\lbrace"===e?(i="\u23a7",a="\u23a8",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\}"===e||"\\rbrace"===e?(i="\u23ab",a="\u23ac",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lgroup"===e||"\u27ee"===e?(i="\u23a7",c="\u23a9",h="\u23aa",u="Size4-Regular"):"\\rgroup"===e||"\u27ef"===e?(i="\u23ab",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\lmoustache"===e||"\u23b0"===e?(i="\u23a7",c="\u23ad",h="\u23aa",u="Size4-Regular"):"\\rmoustache"!==e&&"\u23b1"!==e||(i="\u23ab",c="\u23a9",h="\u23aa",u="Size4-Regular");const d=Zt(i,u,o),g=d.height+d.depth,f=Zt(h,u,o),b=f.height+f.depth,y=Zt(c,u,o),x=y.height+y.depth;let v=0,k=1;if(null!==a){const e=Zt(a,u,o);v=e.height+e.depth,k=2}const S=g+x+v,M=S+Math.max(0,Math.ceil((t-S)/(k*b)))*k*b;let z=n.fontMetrics().axisHeight;r&&(z*=n.sizeMultiplier);const A=M/2-z,T=[];if(m.length>0){const e=M-g-x,t=Math.round(1e3*M),r=function(e,t){switch(e){case"lbrack":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v1759 h347 v-84\nH403z M403 1759 V0 H319 V1759 v"+t+" v1759 h84z";case"rbrack":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v1759 H0 v84 H347z\nM347 1759 V0 H263 V1759 v"+t+" v1759 h84z";case"vert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z";case"doublevert":return"M145 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M188 15 H145 v585 v"+t+" v585 h43z\nM367 15 v585 v"+t+" v585 c2.667,10,9.667,15,21,15\nc10,0,16.667,-5,20,-15 v-585 v"+-t+" v-585 c-2.667,-10,-9.667,-15,-21,-15\nc-10,0,-16.667,5,-20,15z M410 15 H367 v585 v"+t+" v585 h43z";case"lfloor":return"M319 602 V0 H403 V602 v"+t+" v1715 h263 v84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"rfloor":return"M319 602 V0 H403 V602 v"+t+" v1799 H0 v-84 H319z\nMM319 602 V0 H403 V602 v"+t+" v1715 H319z";case"lceil":return"M403 1759 V84 H666 V0 H319 V1759 v"+t+" v602 h84z\nM403 1759 V0 H319 V1759 v"+t+" v602 h84z";case"rceil":return"M347 1759 V0 H0 V84 H263 V1759 v"+t+" v602 h84z\nM347 1759 V0 h-84 V1759 v"+t+" v602 h84z";case"lparen":return"M863,9c0,-2,-2,-5,-6,-9c0,0,-17,0,-17,0c-12.7,0,-19.3,0.3,-20,1\nc-5.3,5.3,-10.3,11,-15,17c-242.7,294.7,-395.3,682,-458,1162c-21.3,163.3,-33.3,349,\n-36,557 l0,"+(t+84)+"c0.2,6,0,26,0,60c2,159.3,10,310.7,24,454c53.3,528,210,\n949.7,470,1265c4.7,6,9.7,11.7,15,17c0.7,0.7,7,1,19,1c0,0,18,0,18,0c4,-4,6,-7,6,-9\nc0,-2.7,-3.3,-8.7,-10,-18c-135.3,-192.7,-235.5,-414.3,-300.5,-665c-65,-250.7,-102.5,\n-544.7,-112.5,-882c-2,-104,-3,-167,-3,-189\nl0,-"+(t+92)+"c0,-162.7,5.7,-314,17,-454c20.7,-272,63.7,-513,129,-723c65.3,\n-210,155.3,-396.3,270,-559c6.7,-9.3,10,-15.3,10,-18z";case"rparen":return"M76,0c-16.7,0,-25,3,-25,9c0,2,2,6.3,6,13c21.3,28.7,42.3,60.3,\n63,95c96.7,156.7,172.8,332.5,228.5,527.5c55.7,195,92.8,416.5,111.5,664.5\nc11.3,139.3,17,290.7,17,454c0,28,1.7,43,3.3,45l0,"+(t+9)+"\nc-3,4,-3.3,16.7,-3.3,38c0,162,-5.7,313.7,-17,455c-18.7,248,-55.8,469.3,-111.5,664\nc-55.7,194.7,-131.8,370.3,-228.5,527c-20.7,34.7,-41.7,66.3,-63,95c-2,3.3,-4,7,-6,11\nc0,7.3,5.7,11,17,11c0,0,11,0,11,0c9.3,0,14.3,-0.3,15,-1c5.3,-5.3,10.3,-11,15,-17\nc242.7,-294.7,395.3,-681.7,458,-1161c21.3,-164.7,33.3,-350.7,36,-558\nl0,-"+(t+144)+"c-2,-159.3,-10,-310.7,-24,-454c-53.3,-528,-210,-949.7,\n-470,-1265c-4.7,-6,-9.7,-11.7,-15,-17c-0.7,-0.7,-6.7,-1,-18,-1z";default:throw new Error("Unknown stretchy delimiter.")}}(m,Math.round(1e3*e)),o=new J(m,r),s=(p/1e3).toFixed(3)+"em",i=(t/1e3).toFixed(3)+"em",a=new K([o],{width:s,height:i,viewBox:"0 0 "+p+" "+t}),l=Ve.makeSvgSpan([],[a],n);l.height=t/1e3,l.style.width=s,l.style.height=i,T.push({type:"elem",elem:l})}else{if(T.push(er(c,u,o)),T.push(rr),null===a){const e=M-g-x+.016;T.push(tr(h,e,n))}else{const e=(M-g-x-v)/2+.016;T.push(tr(h,e,n)),T.push(rr),T.push(er(a,u,o)),T.push(rr),T.push(tr(h,e,n))}T.push(rr),T.push(er(i,u,o))}const B=n.havingBaseStyle(w.TEXT),C=Ve.makeVList({positionType:"bottom",positionData:A,children:T},B);return Kt(Ve.makeSpan(["delimsizing","mult"],[C],B),w.TEXT,n,s)},ir=.08,ar=function(e,t,r,n,o){const s=function(e,t,r){t*=1e3;let n="";switch(e){case"sqrtMain":n=function(e,t){return"M95,"+(622+e+t)+"\nc-2.7,0,-7.17,-2.7,-13.5,-8c-5.8,-5.3,-9.5,-10,-9.5,-14\nc0,-2,0.3,-3.3,1,-4c1.3,-2.7,23.83,-20.7,67.5,-54\nc44.2,-33.3,65.8,-50.3,66.5,-51c1.3,-1.3,3,-2,5,-2c4.7,0,8.7,3.3,12,10\ns173,378,173,378c0.7,0,35.3,-71,104,-213c68.7,-142,137.5,-285,206.5,-429\nc69,-144,104.5,-217.7,106.5,-221\nl"+e/2.075+" -"+e+"\nc5.3,-9.3,12,-14,20,-14\nH400000v"+(40+e)+"H845.2724\ns-225.272,467,-225.272,467s-235,486,-235,486c-2.7,4.7,-9,7,-19,7\nc-6,0,-10,-1,-12,-3s-194,-422,-194,-422s-65,47,-65,47z\nM"+(834+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize1":n=function(e,t){return"M263,"+(601+e+t)+"c0.7,0,18,39.7,52,119\nc34,79.3,68.167,158.7,102.5,238c34.3,79.3,51.8,119.3,52.5,120\nc340,-704.7,510.7,-1060.3,512,-1067\nl"+e/2.084+" -"+e+"\nc4.7,-7.3,11,-11,19,-11\nH40000v"+(40+e)+"H1012.3\ns-271.3,567,-271.3,567c-38.7,80.7,-84,175,-136,283c-52,108,-89.167,185.3,-111.5,232\nc-22.3,46.7,-33.8,70.3,-34.5,71c-4.7,4.7,-12.3,7,-23,7s-12,-1,-12,-1\ns-109,-253,-109,-253c-72.7,-168,-109.3,-252,-110,-252c-10.7,8,-22,16.7,-34,26\nc-22,17.3,-33.3,26,-34,26s-26,-26,-26,-26s76,-59,76,-59s76,-60,76,-60z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize2":n=function(e,t){return"M983 "+(10+e+t)+"\nl"+e/3.13+" -"+e+"\nc4,-6.7,10,-10,18,-10 H400000v"+(40+e)+"\nH1013.1s-83.4,268,-264.1,840c-180.7,572,-277,876.3,-289,913c-4.7,4.7,-12.7,7,-24,7\ns-12,0,-12,0c-1.3,-3.3,-3.7,-11.7,-7,-25c-35.3,-125.3,-106.7,-373.3,-214,-744\nc-10,12,-21,25,-33,39s-32,39,-32,39c-6,-5.3,-15,-14,-27,-26s25,-30,25,-30\nc26.7,-32.7,52,-63,76,-91s52,-60,52,-60s208,722,208,722\nc56,-175.3,126.3,-397.3,211,-666c84.7,-268.7,153.8,-488.2,207.5,-658.5\nc53.7,-170.3,84.5,-266.8,92.5,-289.5z\nM"+(1001+e)+" "+t+"h400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize3":n=function(e,t){return"M424,"+(2398+e+t)+"\nc-1.3,-0.7,-38.5,-172,-111.5,-514c-73,-342,-109.8,-513.3,-110.5,-514\nc0,-2,-10.7,14.3,-32,49c-4.7,7.3,-9.8,15.7,-15.5,25c-5.7,9.3,-9.8,16,-12.5,20\ns-5,7,-5,7c-4,-3.3,-8.3,-7.7,-13,-13s-13,-13,-13,-13s76,-122,76,-122s77,-121,77,-121\ns209,968,209,968c0,-2,84.7,-361.7,254,-1079c169.3,-717.3,254.7,-1077.7,256,-1081\nl"+e/4.223+" -"+e+"c4,-6.7,10,-10,18,-10 H400000\nv"+(40+e)+"H1014.6\ns-87.3,378.7,-272.6,1166c-185.3,787.3,-279.3,1182.3,-282,1185\nc-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2z M"+(1001+e)+" "+t+"\nh400000v"+(40+e)+"h-400000z"}(t,M);break;case"sqrtSize4":n=function(e,t){return"M473,"+(2713+e+t)+"\nc339.3,-1799.3,509.3,-2700,510,-2702 l"+e/5.298+" -"+e+"\nc3.3,-7.3,9.3,-11,18,-11 H400000v"+(40+e)+"H1017.7\ns-90.5,478,-276.2,1466c-185.7,988,-279.5,1483,-281.5,1485c-2,6,-10,9,-24,9\nc-8,0,-12,-0.7,-12,-2c0,-1.3,-5.3,-32,-16,-92c-50.7,-293.3,-119.7,-693.3,-207,-1200\nc0,-1.3,-5.3,8.7,-16,30c-10.7,21.3,-21.3,42.7,-32,64s-16,33,-16,33s-26,-26,-26,-26\ns76,-153,76,-153s77,-151,77,-151c0.7,0.7,35.7,202,105,604c67.3,400.7,102,602.7,104,\n606zM"+(1001+e)+" "+t+"h400000v"+(40+e)+"H1017.7z"}(t,M);break;case"sqrtTall":n=function(e,t,r){return"M702 "+(e+t)+"H400000"+(40+e)+"\nH742v"+(r-54-t-e)+"l-4 4-4 4c-.667.7 -2 1.5-4 2.5s-4.167 1.833-6.5 2.5-5.5 1-9.5 1\nh-12l-28-84c-16.667-52-96.667 -294.333-240-727l-212 -643 -85 170\nc-4-3.333-8.333-7.667-13 -13l-13-13l77-155 77-156c66 199.333 139 419.667\n219 661 l218 661zM702 "+t+"H400000v"+(40+e)+"H742z"}(t,M,r)}return n}(e,n,r),i=new J(e,s),a=new K([i],{width:"400em",height:F(t),viewBox:"0 0 400000 "+r,preserveAspectRatio:"xMinYMin slice"});return Ve.makeSvgSpan(["hide-tail"],[a],o)},lr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","\\surd"],hr=["\\uparrow","\\downarrow","\\updownarrow","\\Uparrow","\\Downarrow","\\Updownarrow","|","\\|","\\vert","\\Vert","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1"],cr=["<",">","\\langle","\\rangle","/","\\backslash","\\lt","\\gt"],mr=[0,1.2,1.8,2.4,3],pr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4}],ur=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"stack"}],dr=[{type:"small",style:w.SCRIPTSCRIPT},{type:"small",style:w.SCRIPT},{type:"small",style:w.TEXT},{type:"large",size:1},{type:"large",size:2},{type:"large",size:3},{type:"large",size:4},{type:"stack"}],gr=function(e){if("small"===e.type)return"Main-Regular";if("large"===e.type)return"Size"+e.size+"-Regular";if("stack"===e.type)return"Size4-Regular";throw new Error("Add support for delim type '"+e.type+"' here.")},fr=function(e,t,r,n){for(let o=Math.min(2,3-n.style.size);ot)return r[o]}return r[r.length-1]},br=function(e,t,r,n,o,s){let i;"<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),i=l.contains(cr,e)?pr:l.contains(lr,e)?dr:ur;const a=fr(e,t,i,n);return"small"===a.type?function(e,t,r,n,o,s){const i=Ve.makeSymbol(e,"Main-Regular",o,n),a=Kt(i,t,n,s);return r&&Jt(a,n,t),a}(e,a.style,r,n,o,s):"large"===a.type?Qt(e,a.size,r,n,o,s):sr(e,t,r,n,o,s)};var yr={sqrtImage:function(e,t){const r=t.havingBaseSizing(),n=fr("\\surd",e*r.sizeMultiplier,dr,r);let o=r.sizeMultiplier;const s=Math.max(0,t.minRuleThickness-t.fontMetrics().sqrtRuleThickness);let i,a,l=0,h=0,c=0;return"small"===n.type?(c=1e3+1e3*s+80,e<1?o=1:e<1.4&&(o=.7),l=(1+s+ir)/o,h=(1+s)/o,i=ar("sqrtMain",l,c,s,t),i.style.minWidth="0.853em",a=.833/o):"large"===n.type?(c=1080*mr[n.size],h=(mr[n.size]+s)/o,l=(mr[n.size]+s+ir)/o,i=ar("sqrtSize"+n.size,l,c,s,t),i.style.minWidth="1.02em",a=1/o):(l=e+s+ir,h=e+s,c=Math.floor(1e3*e+s)+80,i=ar("sqrtTall",l,c,s,t),i.style.minWidth="0.742em",a=1.056),i.height=h,i.style.height=F(l),{span:i,advanceWidth:a,ruleWidth:(t.fontMetrics().sqrtRuleThickness+s)*o}},sizedDelim:function(e,t,r,o,s){if("<"===e||"\\lt"===e||"\u27e8"===e?e="\\langle":">"!==e&&"\\gt"!==e&&"\u27e9"!==e||(e="\\rangle"),l.contains(lr,e)||l.contains(cr,e))return Qt(e,t,!1,r,o,s);if(l.contains(hr,e))return sr(e,mr[t],!1,r,o,s);throw new n("Illegal delimiter: '"+e+"'")},sizeToMaxHeight:mr,customSizedDelim:br,leftRightDelim:function(e,t,r,n,o,s){const i=n.fontMetrics().axisHeight*n.sizeMultiplier,a=5/n.fontMetrics().ptPerEm,l=Math.max(t-i,r+i),h=Math.max(l/500*901,2*l-a);return br(e,h,!0,n,o,s)}};const xr={"\\bigl":{mclass:"mopen",size:1},"\\Bigl":{mclass:"mopen",size:2},"\\biggl":{mclass:"mopen",size:3},"\\Biggl":{mclass:"mopen",size:4},"\\bigr":{mclass:"mclose",size:1},"\\Bigr":{mclass:"mclose",size:2},"\\biggr":{mclass:"mclose",size:3},"\\Biggr":{mclass:"mclose",size:4},"\\bigm":{mclass:"mrel",size:1},"\\Bigm":{mclass:"mrel",size:2},"\\biggm":{mclass:"mrel",size:3},"\\Biggm":{mclass:"mrel",size:4},"\\big":{mclass:"mord",size:1},"\\Big":{mclass:"mord",size:2},"\\bigg":{mclass:"mord",size:3},"\\Bigg":{mclass:"mord",size:4}},wr=["(","\\lparen",")","\\rparen","[","\\lbrack","]","\\rbrack","\\{","\\lbrace","\\}","\\rbrace","\\lfloor","\\rfloor","\u230a","\u230b","\\lceil","\\rceil","\u2308","\u2309","<",">","\\langle","\u27e8","\\rangle","\u27e9","\\lt","\\gt","\\lvert","\\rvert","\\lVert","\\rVert","\\lgroup","\\rgroup","\u27ee","\u27ef","\\lmoustache","\\rmoustache","\u23b0","\u23b1","/","\\backslash","|","\\vert","\\|","\\Vert","\\uparrow","\\Uparrow","\\downarrow","\\Downarrow","\\updownarrow","\\Updownarrow","."];function vr(e,t){const r=Rt(e);if(r&&l.contains(wr,r.text))return r;throw new n(r?"Invalid delimiter '"+r.text+"' after '"+t.funcName+"'":"Invalid delimiter type '"+e.type+"'",e)}function kr(e){if(!e.body)throw new Error("Bug: The leftright ParseNode wasn't fully parsed.")}je({type:"delimsizing",names:["\\bigl","\\Bigl","\\biggl","\\Biggl","\\bigr","\\Bigr","\\biggr","\\Biggr","\\bigm","\\Bigm","\\biggm","\\Biggm","\\big","\\Big","\\bigg","\\Bigg"],props:{numArgs:1,argTypes:["primitive"]},handler:(e,t)=>{const r=vr(t[0],e);return{type:"delimsizing",mode:e.parser.mode,size:xr[e.funcName].size,mclass:xr[e.funcName].mclass,delim:r.text}},htmlBuilder:(e,t)=>"."===e.delim?Ve.makeSpan([e.mclass]):yr.sizedDelim(e.delim,e.size,t,e.mode,[e.mclass]),mathmlBuilder:e=>{const t=[];"."!==e.delim&&t.push(ft(e.delim,e.mode));const r=new gt.MathNode("mo",t);"mopen"===e.mclass||"mclose"===e.mclass?r.setAttribute("fence","true"):r.setAttribute("fence","false"),r.setAttribute("stretchy","true");const n=F(yr.sizeToMaxHeight[e.size]);return r.setAttribute("minsize",n),r.setAttribute("maxsize",n),r}}),je({type:"leftright-right",names:["\\right"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=e.parser.gullet.macros.get("\\current@color");if(r&&"string"!=typeof r)throw new n("\\current@color set to non-string in \\right");return{type:"leftright-right",mode:e.parser.mode,delim:vr(t[0],e).text,color:r}}}),je({type:"leftright",names:["\\left"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e),n=e.parser;++n.leftrightDepth;const o=n.parseExpression(!1);--n.leftrightDepth,n.expect("\\right",!1);const s=qt(n.parseFunction(),"leftright-right");return{type:"leftright",mode:n.mode,body:o,left:r.text,right:s.delim,rightColor:s.color}},htmlBuilder:(e,t)=>{kr(e);const r=nt(e.body,t,!0,["mopen","mclose"]);let n,o,s=0,i=0,a=!1;for(let e=0;e{kr(e);const r=xt(e.body,t);if("."!==e.left){const t=new gt.MathNode("mo",[ft(e.left,e.mode)]);t.setAttribute("fence","true"),r.unshift(t)}if("."!==e.right){const t=new gt.MathNode("mo",[ft(e.right,e.mode)]);t.setAttribute("fence","true"),e.rightColor&&t.setAttribute("mathcolor",e.rightColor),r.push(t)}return bt(r)}}),je({type:"middle",names:["\\middle"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{const r=vr(t[0],e);if(!e.parser.leftrightDepth)throw new n("\\middle without preceding \\left",r);return{type:"middle",mode:e.parser.mode,delim:r.text}},htmlBuilder:(e,t)=>{let r;if("."===e.delim)r=lt(t,[]);else{r=yr.sizedDelim(e.delim,1,t,e.mode,[]);const n={delim:e.delim,options:t};r.isMiddle=n}return r},mathmlBuilder:(e,t)=>{const r="\\vert"===e.delim||"|"===e.delim?ft("|","text"):ft(e.delim,e.mode),n=new gt.MathNode("mo",[r]);return n.setAttribute("fence","true"),n.setAttribute("lspace","0.05em"),n.setAttribute("rspace","0.05em"),n}});const Sr=(e,t)=>{const r=Ve.wrapFragment(ht(e.body,t),t),n=e.label.slice(1);let o,s=t.sizeMultiplier,i=0;const a=l.isCharacterBox(e.body);if("sout"===n)o=Ve.makeSpan(["stretchy","sout"]),o.height=t.fontMetrics().defaultRuleThickness/s,i=-.5*t.fontMetrics().xHeight;else if("phase"===n){const e=P({number:.6,unit:"pt"},t),n=P({number:.35,unit:"ex"},t);s/=t.havingBaseSizing().sizeMultiplier;const a=r.height+r.depth+e+n;r.style.paddingLeft=F(a/2+e);const l=Math.floor(1e3*a*s),c="M400000 "+(h=l)+" H0 L"+h/2+" 0 l65 45 L145 "+(h-80)+" H400000z",m=new K([new J("phase",c)],{width:"400em",height:F(l/1e3),viewBox:"0 0 400000 "+l,preserveAspectRatio:"xMinYMin slice"});o=Ve.makeSvgSpan(["hide-tail"],[m],t),o.style.height=F(a),i=r.depth+e+n}else{/cancel/.test(n)?a||r.classes.push("cancel-pad"):"angl"===n?r.classes.push("anglpad"):r.classes.push("boxpad");let s=0,l=0,h=0;/box/.test(n)?(h=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness),s=t.fontMetrics().fboxsep+("colorbox"===n?0:h),l=s):"angl"===n?(h=Math.max(t.fontMetrics().defaultRuleThickness,t.minRuleThickness),s=4*h,l=Math.max(0,.25-r.depth)):(s=a?.2:0,l=s),o=Bt(r,n,s,l,t),/fbox|boxed|fcolorbox/.test(n)?(o.style.borderStyle="solid",o.style.borderWidth=F(h)):"angl"===n&&.049!==h&&(o.style.borderTopWidth=F(h),o.style.borderRightWidth=F(h)),i=r.depth+l,e.backgroundColor&&(o.style.backgroundColor=e.backgroundColor,e.borderColor&&(o.style.borderColor=e.borderColor))}var h;let c;if(e.backgroundColor)c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:o,shift:i},{type:"elem",elem:r,shift:0}]},t);else{const e=/cancel|phase/.test(n)?["svg-align"]:[];c=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:r,shift:0},{type:"elem",elem:o,shift:i,wrapperClasses:e}]},t)}return/cancel/.test(n)&&(c.height=r.height,c.depth=r.depth),/cancel/.test(n)&&!a?Ve.makeSpan(["mord","cancel-lap"],[c],t):Ve.makeSpan(["mord"],[c],t)},Mr=(e,t)=>{let r=0;const n=new gt.MathNode(e.label.indexOf("colorbox")>-1?"mpadded":"menclose",[vt(e.body,t)]);switch(e.label){case"\\cancel":n.setAttribute("notation","updiagonalstrike");break;case"\\bcancel":n.setAttribute("notation","downdiagonalstrike");break;case"\\phase":n.setAttribute("notation","phasorangle");break;case"\\sout":n.setAttribute("notation","horizontalstrike");break;case"\\fbox":n.setAttribute("notation","box");break;case"\\angl":n.setAttribute("notation","actuarial");break;case"\\fcolorbox":case"\\colorbox":if(r=t.fontMetrics().fboxsep*t.fontMetrics().ptPerEm,n.setAttribute("width","+"+2*r+"pt"),n.setAttribute("height","+"+2*r+"pt"),n.setAttribute("lspace",r+"pt"),n.setAttribute("voffset",r+"pt"),"\\fcolorbox"===e.label){const r=Math.max(t.fontMetrics().fboxrule,t.minRuleThickness);n.setAttribute("style","border: "+r+"em solid "+String(e.borderColor))}break;case"\\xcancel":n.setAttribute("notation","updiagonalstrike downdiagonalstrike")}return e.backgroundColor&&n.setAttribute("mathbackground",e.backgroundColor),n};je({type:"enclose",names:["\\colorbox"],props:{numArgs:2,allowedInText:!0,argTypes:["color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=t[1];return{type:"enclose",mode:n.mode,label:o,backgroundColor:s,body:i}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fcolorbox"],props:{numArgs:3,allowedInText:!0,argTypes:["color","color","text"]},handler(e,t,r){let{parser:n,funcName:o}=e;const s=qt(t[0],"color-token").color,i=qt(t[1],"color-token").color,a=t[2];return{type:"enclose",mode:n.mode,label:o,backgroundColor:i,borderColor:s,body:a}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\fbox"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\fbox",body:t[0]}}}),je({type:"enclose",names:["\\cancel","\\bcancel","\\xcancel","\\sout","\\phase"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"enclose",mode:r.mode,label:n,body:o}},htmlBuilder:Sr,mathmlBuilder:Mr}),je({type:"enclose",names:["\\angl"],props:{numArgs:1,argTypes:["hbox"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"enclose",mode:r.mode,label:"\\angl",body:t[0]}}});const zr={};function Ar(e){let{type:t,names:r,props:n,handler:o,htmlBuilder:s,mathmlBuilder:i}=e;const a={type:t,numArgs:n.numArgs||0,allowedInText:!1,numOptionalArgs:0,handler:o};for(let e=0;e{if(!e.parser.settings.displayMode)throw new n("{"+e.envName+"} can be used only in display mode.")};function Rr(e){if(-1===e.indexOf("ed"))return-1===e.indexOf("*")}function Hr(e,t,r){let{hskipBeforeAndAfter:o,addJot:s,cols:i,arraystretch:a,colSeparationType:l,autoTag:h,singleRow:c,emptySingleRow:m,maxNumCols:p,leqno:u}=t;if(e.gullet.beginGroup(),c||e.gullet.macros.set("\\cr","\\\\\\relax"),!a){const t=e.gullet.expandMacroAsText("\\arraystretch");if(null==t)a=1;else if(a=parseFloat(t),!a||a<0)throw new n("Invalid \\arraystretch: "+t)}e.gullet.beginGroup();let d=[];const g=[d],f=[],b=[],y=null!=h?[]:void 0;function x(){h&&e.gullet.macros.set("\\@eqnsw","1",!0)}function w(){y&&(e.gullet.macros.get("\\df@tag")?(y.push(e.subparse([new Nr("\\df@tag")])),e.gullet.macros.set("\\df@tag",void 0,!0)):y.push(Boolean(h)&&"1"===e.gullet.macros.get("\\@eqnsw")))}for(x(),b.push(qr(e));;){let t=e.parseExpression(!1,c?"\\end":"\\\\");e.gullet.endGroup(),e.gullet.beginGroup(),t={type:"ordgroup",mode:e.mode,body:t},r&&(t={type:"styling",mode:e.mode,style:r,body:[t]}),d.push(t);const o=e.fetch().text;if("&"===o){if(p&&d.length===p){if(c||l)throw new n("Too many tab characters: &",e.nextToken);e.settings.reportNonstrict("textEnv","Too few columns specified in the {array} column argument.")}e.consume()}else{if("\\end"===o){w(),1===d.length&&"styling"===t.type&&0===t.body[0].body.length&&(g.length>1||!m)&&g.pop(),b.length0&&(x+=.25),c.push({pos:x,isDashed:e[t]})}for(v(i[0]),r=0;r0&&(p+=y,le)))for(r=0;r=a)continue;(o>0||e.hskipBeforeAndAfter)&&(i=l.deflt(c.pregap,u),0!==i&&(z=Ve.makeSpan(["arraycolsep"],[]),z.style.width=F(i),M.push(z)));let d=[];for(r=0;r0){const e=Ve.makeLineSpan("hline",t,m),r=Ve.makeLineSpan("hdashline",t,m),n=[{type:"elem",elem:h,shift:0}];for(;c.length>0;){const t=c.pop(),o=t.pos-k;t.isDashed?n.push({type:"elem",elem:r,shift:o}):n.push({type:"elem",elem:e,shift:o})}h=Ve.makeVList({positionType:"individualShift",children:n},t)}if(0===T.length)return Ve.makeSpan(["mord"],[h],t);{let e=Ve.makeVList({positionType:"individualShift",children:T},t);return e=Ve.makeSpan(["tag"],[e],t),Ve.makeFragment([h,e])}},Lr={c:"center ",l:"left ",r:"right "},Dr=function(e,t){const r=[],n=new gt.MathNode("mtd",[],["mtr-glue"]),o=new gt.MathNode("mtd",[],["mml-eqn-num"]);for(let s=0;s0){const t=e.cols;let r="",n=!1,o=0,i=t.length;"separator"===t[0].type&&(a+="top ",o=1),"separator"===t[t.length-1].type&&(a+="bottom ",i-=1);for(let e=o;e0?"left ":"",a+=c[c.length-1].length>0?"right ":"";for(let e=1;e-1?"alignat":"align",s="split"===e.envName,i=Hr(e.parser,{cols:r,addJot:!0,autoTag:s?void 0:Rr(e.envName),emptySingleRow:!0,colSeparationType:o,maxNumCols:s?2:void 0,leqno:e.parser.settings.leqno},"display");let a,l=0;const h={type:"ordgroup",mode:e.mode,body:[]};if(t[0]&&"ordgroup"===t[0].type){let e="";for(let r=0;r0&&c&&(n=1),r[e]={type:"align",align:t,pregap:n,postgap:0}}return i.colSeparationType=c?"align":"alignat",i};Ar({type:"array",names:["array","darray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lcr".indexOf(t))return{type:"align",align:t};if("|"===t)return{type:"separator",separator:"|"};if(":"===t)return{type:"separator",separator:":"};throw new n("Unknown column alignment: "+t,e)})),o={cols:r,hskipBeforeAndAfter:!0,maxNumCols:r.length};return Hr(e.parser,o,Or(e.envName))},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["matrix","pmatrix","bmatrix","Bmatrix","vmatrix","Vmatrix","matrix*","pmatrix*","bmatrix*","Bmatrix*","vmatrix*","Vmatrix*"],props:{numArgs:0},handler(e){const t={matrix:null,pmatrix:["(",")"],bmatrix:["[","]"],Bmatrix:["\\{","\\}"],vmatrix:["|","|"],Vmatrix:["\\Vert","\\Vert"]}[e.envName.replace("*","")];let r="c";const o={hskipBeforeAndAfter:!1,cols:[{type:"align",align:r}]};if("*"===e.envName.charAt(e.envName.length-1)){const t=e.parser;if(t.consumeSpaces(),"["===t.fetch().text){if(t.consume(),t.consumeSpaces(),r=t.fetch().text,-1==="lcr".indexOf(r))throw new n("Expected l or c or r",t.nextToken);t.consume(),t.consumeSpaces(),t.expect("]"),t.consume(),o.cols=[{type:"align",align:r}]}}const s=Hr(e.parser,o,Or(e.envName)),i=Math.max(0,...s.body.map((e=>e.length)));return s.cols=new Array(i).fill({type:"align",align:r}),t?{type:"leftright",mode:e.mode,body:[s],left:t[0],right:t[1],rightColor:void 0}:s},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["smallmatrix"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:.5},"script");return t.colSeparationType="small",t},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["subarray"],props:{numArgs:1},handler(e,t){const r=(Rt(t[0])?[t[0]]:qt(t[0],"ordgroup").body).map((function(e){const t=It(e).text;if(-1!=="lc".indexOf(t))return{type:"align",align:t};throw new n("Unknown column alignment: "+t,e)}));if(r.length>1)throw new n("{subarray} can contain only one column");let o={cols:r,hskipBeforeAndAfter:!1,arraystretch:.5};if(o=Hr(e.parser,o,"script"),o.body.length>0&&o.body[0].length>1)throw new n("{subarray} can contain only one column");return o},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["cases","dcases","rcases","drcases"],props:{numArgs:0},handler(e){const t=Hr(e.parser,{arraystretch:1.2,cols:[{type:"align",align:"l",pregap:0,postgap:1},{type:"align",align:"l",pregap:0,postgap:0}]},Or(e.envName));return{type:"leftright",mode:e.mode,body:[t],left:e.envName.indexOf("r")>-1?".":"\\{",right:e.envName.indexOf("r")>-1?"\\}":".",rightColor:void 0}},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["align","align*","aligned","split"],props:{numArgs:0},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["gathered","gather","gather*"],props:{numArgs:0},handler(e){l.contains(["gather","gather*"],e.envName)&&Ir(e);const t={cols:[{type:"align",align:"c"}],addJot:!0,colSeparationType:"gather",autoTag:Rr(e.envName),emptySingleRow:!0,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["alignat","alignat*","alignedat"],props:{numArgs:1},handler:Vr,htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["equation","equation*"],props:{numArgs:0},handler(e){Ir(e);const t={autoTag:Rr(e.envName),emptySingleRow:!0,singleRow:!0,maxNumCols:1,leqno:e.parser.settings.leqno};return Hr(e.parser,t,"display")},htmlBuilder:Er,mathmlBuilder:Dr}),Ar({type:"array",names:["CD"],props:{numArgs:0},handler(e){return Ir(e),function(e){const t=[];for(e.gullet.beginGroup(),e.gullet.macros.set("\\cr","\\\\\\relax"),e.gullet.beginGroup();;){t.push(e.parseExpression(!1,"\\\\")),e.gullet.endGroup(),e.gullet.beginGroup();const r=e.fetch().text;if("&"!==r&&"\\\\"!==r){if("\\end"===r){0===t[t.length-1].length&&t.pop();break}throw new n("Expected \\\\ or \\cr or \\end",e.nextToken)}e.consume()}let r=[];const o=[r];for(let a=0;a-1);else{if(!("<>AV".indexOf(o)>-1))throw new n('Expected one of "<>AV=|." after @',l[t]);for(let e=0;e<2;e++){let r=!0;for(let h=t+1;h{const r=e.font,n=t.withFont(r);return ht(e.body,n)},Gr=(e,t)=>{const r=e.font,n=t.withFont(r);return vt(e.body,n)},Ur={"\\Bbb":"\\mathbb","\\bold":"\\mathbf","\\frak":"\\mathfrak","\\bm":"\\boldsymbol"};je({type:"font",names:["\\mathrm","\\mathit","\\mathbf","\\mathnormal","\\mathbb","\\mathcal","\\mathfrak","\\mathscr","\\mathsf","\\mathtt","\\Bbb","\\bold","\\frak"],props:{numArgs:1,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=Ze(t[0]);let s=n;return s in Ur&&(s=Ur[s]),{type:"font",mode:r.mode,font:s.slice(1),body:o}},htmlBuilder:Fr,mathmlBuilder:Gr}),je({type:"mclass",names:["\\boldsymbol","\\bm"],props:{numArgs:1},handler:(e,t)=>{let{parser:r}=e;const n=t[0],o=l.isCharacterBox(n);return{type:"mclass",mode:r.mode,mclass:Ft(n),body:[{type:"font",mode:r.mode,font:"boldsymbol",body:n}],isCharacterBox:o}}}),je({type:"font",names:["\\rm","\\sf","\\tt","\\bf","\\it","\\cal"],props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n,breakOnTokenText:o}=e;const{mode:s}=r,i=r.parseExpression(!0,o);return{type:"font",mode:s,font:"math"+n.slice(1),body:{type:"ordgroup",mode:r.mode,body:i}}},htmlBuilder:Fr,mathmlBuilder:Gr});const Yr=(e,t)=>{let r=t;return"display"===e?r=r.id>=w.SCRIPT.id?r.text():w.DISPLAY:"text"===e&&r.size===w.DISPLAY.size?r=w.TEXT:"script"===e?r=w.SCRIPT:"scriptscript"===e&&(r=w.SCRIPTSCRIPT),r},Xr=(e,t)=>{const r=Yr(e.size,t.style),n=r.fracNum(),o=r.fracDen();let s;s=t.havingStyle(n);const i=ht(e.numer,s,t);if(e.continued){const e=8.5/t.fontMetrics().ptPerEm,r=3.5/t.fontMetrics().ptPerEm;i.height=i.height0?3*c:7*c,u=t.fontMetrics().denom1):(h>0?(m=t.fontMetrics().num2,p=c):(m=t.fontMetrics().num3,p=3*c),u=t.fontMetrics().denom2),l){const e=t.fontMetrics().axisHeight;m-i.depth-(e+.5*h){let r=new gt.MathNode("mfrac",[vt(e.numer,t),vt(e.denom,t)]);if(e.hasBarLine){if(e.barSize){const n=P(e.barSize,t);r.setAttribute("linethickness",F(n))}}else r.setAttribute("linethickness","0px");const n=Yr(e.size,t.style);if(n.size!==t.style.size){r=new gt.MathNode("mstyle",[r]);const e=n.size===w.DISPLAY.size?"true":"false";r.setAttribute("displaystyle",e),r.setAttribute("scriptlevel","0")}if(null!=e.leftDelim||null!=e.rightDelim){const t=[];if(null!=e.leftDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.leftDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}if(t.push(r),null!=e.rightDelim){const r=new gt.MathNode("mo",[new gt.TextNode(e.rightDelim.replace("\\",""))]);r.setAttribute("fence","true"),t.push(r)}return bt(t)}return r};je({type:"genfrac",names:["\\dfrac","\\frac","\\tfrac","\\dbinom","\\binom","\\tbinom","\\\\atopfrac","\\\\bracefrac","\\\\brackfrac"],props:{numArgs:2,allowedInArgument:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];let i,a=null,l=null,h="auto";switch(n){case"\\dfrac":case"\\frac":case"\\tfrac":i=!0;break;case"\\\\atopfrac":i=!1;break;case"\\dbinom":case"\\binom":case"\\tbinom":i=!1,a="(",l=")";break;case"\\\\bracefrac":i=!1,a="\\{",l="\\}";break;case"\\\\brackfrac":i=!1,a="[",l="]";break;default:throw new Error("Unrecognized genfrac command")}switch(n){case"\\dfrac":case"\\dbinom":h="display";break;case"\\tfrac":case"\\tbinom":h="text"}return{type:"genfrac",mode:r.mode,continued:!1,numer:o,denom:s,hasBarLine:i,leftDelim:a,rightDelim:l,size:h,barSize:null}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"genfrac",names:["\\cfrac"],props:{numArgs:2},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=t[1];return{type:"genfrac",mode:r.mode,continued:!0,numer:o,denom:s,hasBarLine:!0,leftDelim:null,rightDelim:null,size:"display",barSize:null}}}),je({type:"infix",names:["\\over","\\choose","\\atop","\\brace","\\brack"],props:{numArgs:0,infix:!0},handler(e){let t,{parser:r,funcName:n,token:o}=e;switch(n){case"\\over":t="\\frac";break;case"\\choose":t="\\binom";break;case"\\atop":t="\\\\atopfrac";break;case"\\brace":t="\\\\bracefrac";break;case"\\brack":t="\\\\brackfrac";break;default:throw new Error("Unrecognized infix genfrac command")}return{type:"infix",mode:r.mode,replaceWith:t,token:o}}});const _r=["display","text","script","scriptscript"],jr=function(e){let t=null;return e.length>0&&(t=e,t="."===t?null:t),t};je({type:"genfrac",names:["\\genfrac"],props:{numArgs:6,allowedInArgument:!0,argTypes:["math","math","size","text","math","math"]},handler(e,t){let{parser:r}=e;const n=t[4],o=t[5],s=Ze(t[0]),i="atom"===s.type&&"open"===s.family?jr(s.text):null,a=Ze(t[1]),l="atom"===a.type&&"close"===a.family?jr(a.text):null,h=qt(t[2],"size");let c,m=null;h.isBlank?c=!0:(m=h.value,c=m.number>0);let p="auto",u=t[3];if("ordgroup"===u.type){if(u.body.length>0){const e=qt(u.body[0],"textord");p=_r[Number(e.text)]}}else u=qt(u,"textord"),p=_r[Number(u.text)];return{type:"genfrac",mode:r.mode,numer:n,denom:o,continued:!1,hasBarLine:c,barSize:m,leftDelim:i,rightDelim:l,size:p}},htmlBuilder:Xr,mathmlBuilder:Wr}),je({type:"infix",names:["\\above"],props:{numArgs:1,argTypes:["size"],infix:!0},handler(e,t){let{parser:r,funcName:n,token:o}=e;return{type:"infix",mode:r.mode,replaceWith:"\\\\abovefrac",size:qt(t[0],"size").value,token:o}}}),je({type:"genfrac",names:["\\\\abovefrac"],props:{numArgs:3,argTypes:["math","size","math"]},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0],s=function(e){if(!e)throw new Error("Expected non-null, but got "+String(e));return e}(qt(t[1],"infix").size),i=t[2],a=s.number>0;return{type:"genfrac",mode:r.mode,numer:o,denom:i,continued:!1,hasBarLine:a,barSize:s,leftDelim:null,rightDelim:null,size:"auto"}},htmlBuilder:Xr,mathmlBuilder:Wr});const $r=(e,t)=>{const r=t.style;let n,o;"supsub"===e.type?(n=e.sup?ht(e.sup,t.havingStyle(r.sup()),t):ht(e.sub,t.havingStyle(r.sub()),t),o=qt(e.base,"horizBrace")):o=qt(e,"horizBrace");const s=ht(o.base,t.havingBaseStyle(w.DISPLAY)),i=Nt(o,t);let a;if(o.isOver?(a=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:s},{type:"kern",size:.1},{type:"elem",elem:i}]},t),a.children[0].children[0].children[1].classes.push("svg-align")):(a=Ve.makeVList({positionType:"bottom",positionData:s.depth+.1+i.height,children:[{type:"elem",elem:i},{type:"kern",size:.1},{type:"elem",elem:s}]},t),a.children[0].children[0].children[0].classes.push("svg-align")),n){const e=Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t);a=o.isOver?Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:e},{type:"kern",size:.2},{type:"elem",elem:n}]},t):Ve.makeVList({positionType:"bottom",positionData:e.depth+.2+n.height+n.depth,children:[{type:"elem",elem:n},{type:"kern",size:.2},{type:"elem",elem:e}]},t)}return Ve.makeSpan(["mord",o.isOver?"mover":"munder"],[a],t)};je({type:"horizBrace",names:["\\overbrace","\\underbrace"],props:{numArgs:1},handler(e,t){let{parser:r,funcName:n}=e;return{type:"horizBrace",mode:r.mode,label:n,isOver:/^\\over/.test(n),base:t[0]}},htmlBuilder:$r,mathmlBuilder:(e,t)=>{const r=Ct(e.label);return new gt.MathNode(e.isOver?"mover":"munder",[vt(e.base,t),r])}}),je({type:"href",names:["\\href"],props:{numArgs:2,argTypes:["url","original"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[1],o=qt(t[0],"url").url;return r.settings.isTrusted({command:"\\href",url:o})?{type:"href",mode:r.mode,href:o,body:Ke(n)}:r.formatUnsupportedCmd("\\href")},htmlBuilder:(e,t)=>{const r=nt(e.body,t,!1);return Ve.makeAnchor(e.href,[],r,t)},mathmlBuilder:(e,t)=>{let r=wt(e.body,t);return r instanceof ut||(r=new ut("mrow",[r])),r.setAttribute("href",e.href),r}}),je({type:"href",names:["\\url"],props:{numArgs:1,argTypes:["url"],allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=qt(t[0],"url").url;if(!r.settings.isTrusted({command:"\\url",url:n}))return r.formatUnsupportedCmd("\\url");const o=[];for(let e=0;e{let{parser:r,funcName:o,token:s}=e;const i=qt(t[0],"raw").string,a=t[1];let l;r.settings.strict&&r.settings.reportNonstrict("htmlExtension","HTML extension is disabled on strict mode");const h={};switch(o){case"\\htmlClass":h.class=i,l={command:"\\htmlClass",class:i};break;case"\\htmlId":h.id=i,l={command:"\\htmlId",id:i};break;case"\\htmlStyle":h.style=i,l={command:"\\htmlStyle",style:i};break;case"\\htmlData":{const e=i.split(",");for(let t=0;t{const r=nt(e.body,t,!1),n=["enclosing"];e.attributes.class&&n.push(...e.attributes.class.trim().split(/\s+/));const o=Ve.makeSpan(n,r,t);for(const t in e.attributes)"class"!==t&&e.attributes.hasOwnProperty(t)&&o.setAttribute(t,e.attributes[t]);return o},mathmlBuilder:(e,t)=>wt(e.body,t)}),je({type:"htmlmathml",names:["\\html@mathml"],props:{numArgs:2,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"htmlmathml",mode:r.mode,html:Ke(t[0]),mathml:Ke(t[1])}},htmlBuilder:(e,t)=>{const r=nt(e.html,t,!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>wt(e.mathml,t)});const Zr=function(e){if(/^[-+]? *(\d+(\.\d*)?|\.\d+)$/.test(e))return{number:+e,unit:"bp"};{const t=/([-+]?) *(\d+(?:\.\d*)?|\.\d+) *([a-z]{2})/.exec(e);if(!t)throw new n("Invalid size: '"+e+"' in \\includegraphics");const r={number:+(t[1]+t[2]),unit:t[3]};if(!V(r))throw new n("Invalid unit: '"+r.unit+"' in \\includegraphics.");return r}};je({type:"includegraphics",names:["\\includegraphics"],props:{numArgs:1,numOptionalArgs:1,argTypes:["raw","url"],allowedInText:!1},handler:(e,t,r)=>{let{parser:o}=e,s={number:0,unit:"em"},i={number:.9,unit:"em"},a={number:0,unit:"em"},l="";if(r[0]){const e=qt(r[0],"raw").string.split(",");for(let t=0;t{const r=P(e.height,t);let n=0;e.totalheight.number>0&&(n=P(e.totalheight,t)-r);let o=0;e.width.number>0&&(o=P(e.width,t));const s={height:F(r+n)};o>0&&(s.width=F(o)),n>0&&(s.verticalAlign=F(-n));const i=new j(e.src,e.alt,s);return i.height=r,i.depth=n,i},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mglyph",[]);r.setAttribute("alt",e.alt);const n=P(e.height,t);let o=0;if(e.totalheight.number>0&&(o=P(e.totalheight,t)-n,r.setAttribute("valign",F(-o))),r.setAttribute("height",F(n+o)),e.width.number>0){const n=P(e.width,t);r.setAttribute("width",F(n))}return r.setAttribute("src",e.src),r}}),je({type:"kern",names:["\\kern","\\mkern","\\hskip","\\mskip"],props:{numArgs:1,argTypes:["size"],primitive:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=qt(t[0],"size");if(r.settings.strict){const e="m"===n[1],t="mu"===o.value.unit;e?(t||r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" supports only mu units, not "+o.value.unit+" units"),"math"!==r.mode&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" works only in math mode")):t&&r.settings.reportNonstrict("mathVsTextUnits","LaTeX's "+n+" doesn't support mu units")}return{type:"kern",mode:r.mode,dimension:o.value}},htmlBuilder(e,t){return Ve.makeGlue(e.dimension,t)},mathmlBuilder(e,t){const r=P(e.dimension,t);return new gt.SpaceNode(r)}}),je({type:"lap",names:["\\mathllap","\\mathrlap","\\mathclap"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r,funcName:n}=e;const o=t[0];return{type:"lap",mode:r.mode,alignment:n.slice(5),body:o}},htmlBuilder:(e,t)=>{let r;"clap"===e.alignment?(r=Ve.makeSpan([],[ht(e.body,t)]),r=Ve.makeSpan(["inner"],[r],t)):r=Ve.makeSpan(["inner"],[ht(e.body,t)]);const n=Ve.makeSpan(["fix"],[]);let o=Ve.makeSpan([e.alignment],[r,n],t);const s=Ve.makeSpan(["strut"]);return s.style.height=F(o.height+o.depth),o.depth&&(s.style.verticalAlign=F(-o.depth)),o.children.unshift(s),o=Ve.makeSpan(["thinbox"],[o],t),Ve.makeSpan(["mord","vbox"],[o],t)},mathmlBuilder:(e,t)=>{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);if("rlap"!==e.alignment){const t="llap"===e.alignment?"-1":"-0.5";r.setAttribute("lspace",t+"width")}return r.setAttribute("width","0px"),r}}),je({type:"styling",names:["\\(","$"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){let{funcName:r,parser:n}=e;const o=n.mode;n.switchMode("math");const s="\\("===r?"\\)":"$",i=n.parseExpression(!1,s);return n.expect(s),n.switchMode(o),{type:"styling",mode:n.mode,style:"text",body:i}}}),je({type:"text",names:["\\)","\\]"],props:{numArgs:0,allowedInText:!0,allowedInMath:!1},handler(e,t){throw new n("Mismatched "+e.funcName)}});const Kr=(e,t)=>{switch(t.style.size){case w.DISPLAY.size:return e.display;case w.TEXT.size:return e.text;case w.SCRIPT.size:return e.script;case w.SCRIPTSCRIPT.size:return e.scriptscript;default:return e.text}};je({type:"mathchoice",names:["\\mathchoice"],props:{numArgs:4,primitive:!0},handler:(e,t)=>{let{parser:r}=e;return{type:"mathchoice",mode:r.mode,display:Ke(t[0]),text:Ke(t[1]),script:Ke(t[2]),scriptscript:Ke(t[3])}},htmlBuilder:(e,t)=>{const r=Kr(e,t),n=nt(r,t,!1);return Ve.makeFragment(n)},mathmlBuilder:(e,t)=>{const r=Kr(e,t);return wt(r,t)}});const Jr=(e,t,r,n,o,s,i)=>{e=Ve.makeSpan([],[e]);const a=r&&l.isCharacterBox(r);let h,c,m;if(t){const e=ht(t,n.havingStyle(o.sup()),n);c={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing1,n.fontMetrics().bigOpSpacing3-e.depth)}}if(r){const e=ht(r,n.havingStyle(o.sub()),n);h={elem:e,kern:Math.max(n.fontMetrics().bigOpSpacing2,n.fontMetrics().bigOpSpacing4-e.height)}}if(c&&h){const t=n.fontMetrics().bigOpSpacing5+h.elem.height+h.elem.depth+h.kern+e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}else if(h){const t=e.height-i;m=Ve.makeVList({positionType:"top",positionData:t,children:[{type:"kern",size:n.fontMetrics().bigOpSpacing5},{type:"elem",elem:h.elem,marginLeft:F(-s)},{type:"kern",size:h.kern},{type:"elem",elem:e}]},n)}else{if(!c)return e;{const t=e.depth+i;m=Ve.makeVList({positionType:"bottom",positionData:t,children:[{type:"elem",elem:e},{type:"kern",size:c.kern},{type:"elem",elem:c.elem,marginLeft:F(s)},{type:"kern",size:n.fontMetrics().bigOpSpacing5}]},n)}}const p=[m];if(h&&0!==s&&!a){const e=Ve.makeSpan(["mspace"],[],n);e.style.marginRight=F(s),p.unshift(e)}return Ve.makeSpan(["mop","op-limits"],p,n)},Qr=["\\smallint"],en=(e,t)=>{let r,n,o,s=!1;"supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"op"),s=!0):o=qt(e,"op");const i=t.style;let a,h=!1;if(i.size===w.DISPLAY.size&&o.symbol&&!l.contains(Qr,o.name)&&(h=!0),o.symbol){const e=h?"Size2-Regular":"Size1-Regular";let r="";if("\\oiint"!==o.name&&"\\oiiint"!==o.name||(r=o.name.slice(1),o.name="oiint"===r?"\\iint":"\\iiint"),a=Ve.makeSymbol(o.name,e,"math",t,["mop","op-symbol",h?"large-op":"small-op"]),r.length>0){const e=a.italic,n=Ve.staticSvg(r+"Size"+(h?"2":"1"),t);a=Ve.makeVList({positionType:"individualShift",children:[{type:"elem",elem:a,shift:0},{type:"elem",elem:n,shift:h?.08:0}]},t),o.name="\\"+r,a.classes.unshift("mop"),a.italic=e}}else if(o.body){const e=nt(o.body,t,!0);1===e.length&&e[0]instanceof Z?(a=e[0],a.classes[0]="mop"):a=Ve.makeSpan(["mop"],e,t)}else{const e=[];for(let r=1;r{let r;if(e.symbol)r=new ut("mo",[ft(e.name,e.mode)]),l.contains(Qr,e.name)&&r.setAttribute("largeop","false");else if(e.body)r=new ut("mo",xt(e.body,t));else{r=new ut("mi",[new dt(e.name.slice(1))]);const t=new ut("mo",[ft("\u2061","text")]);r=e.parentIsSupSub?new ut("mrow",[r,t]):pt([r,t])}return r},rn={"\u220f":"\\prod","\u2210":"\\coprod","\u2211":"\\sum","\u22c0":"\\bigwedge","\u22c1":"\\bigvee","\u22c2":"\\bigcap","\u22c3":"\\bigcup","\u2a00":"\\bigodot","\u2a01":"\\bigoplus","\u2a02":"\\bigotimes","\u2a04":"\\biguplus","\u2a06":"\\bigsqcup"};je({type:"op",names:["\\coprod","\\bigvee","\\bigwedge","\\biguplus","\\bigcap","\\bigcup","\\intop","\\prod","\\sum","\\bigotimes","\\bigoplus","\\bigodot","\\bigsqcup","\\smallint","\u220f","\u2210","\u2211","\u22c0","\u22c1","\u22c2","\u22c3","\u2a00","\u2a01","\u2a02","\u2a04","\u2a06"],props:{numArgs:0},handler:(e,t)=>{let{parser:r,funcName:n}=e,o=n;return 1===o.length&&(o=rn[o]),{type:"op",mode:r.mode,limits:!0,parentIsSupSub:!1,symbol:!0,name:o}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\mathop"],props:{numArgs:1,primitive:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"op",mode:r.mode,limits:!1,parentIsSupSub:!1,symbol:!1,body:Ke(n)}},htmlBuilder:en,mathmlBuilder:tn});const nn={"\u222b":"\\int","\u222c":"\\iint","\u222d":"\\iiint","\u222e":"\\oint","\u222f":"\\oiint","\u2230":"\\oiiint"};je({type:"op",names:["\\arcsin","\\arccos","\\arctan","\\arctg","\\arcctg","\\arg","\\ch","\\cos","\\cosec","\\cosh","\\cot","\\cotg","\\coth","\\csc","\\ctg","\\cth","\\deg","\\dim","\\exp","\\hom","\\ker","\\lg","\\ln","\\log","\\sec","\\sin","\\sinh","\\sh","\\tan","\\tanh","\\tg","\\th"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\det","\\gcd","\\inf","\\lim","\\max","\\min","\\Pr","\\sup"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e;return{type:"op",mode:t.mode,limits:!0,parentIsSupSub:!1,symbol:!1,name:r}},htmlBuilder:en,mathmlBuilder:tn}),je({type:"op",names:["\\int","\\iint","\\iiint","\\oint","\\oiint","\\oiiint","\u222b","\u222c","\u222d","\u222e","\u222f","\u2230"],props:{numArgs:0},handler(e){let{parser:t,funcName:r}=e,n=r;return 1===n.length&&(n=nn[n]),{type:"op",mode:t.mode,limits:!1,parentIsSupSub:!1,symbol:!0,name:n}},htmlBuilder:en,mathmlBuilder:tn});const on=(e,t)=>{let r,n,o,s,i=!1;if("supsub"===e.type?(r=e.sup,n=e.sub,o=qt(e.base,"operatorname"),i=!0):o=qt(e,"operatorname"),o.body.length>0){const e=o.body.map((e=>{const t=e.text;return"string"==typeof t?{type:"textord",mode:e.mode,text:t}:e})),r=nt(e,t.withFont("mathrm"),!0);for(let e=0;e{let{parser:r,funcName:n}=e;const o=t[0];return{type:"operatorname",mode:r.mode,body:Ke(o),alwaysHandleSupSub:"\\operatornamewithlimits"===n,limits:!1,parentIsSupSub:!1}},htmlBuilder:on,mathmlBuilder:(e,t)=>{let r=xt(e.body,t.withFont("mathrm")),n=!0;for(let e=0;ee.toText())).join("");r=[new gt.TextNode(e)]}const o=new gt.MathNode("mi",r);o.setAttribute("mathvariant","normal");const s=new gt.MathNode("mo",[ft("\u2061","text")]);return e.parentIsSupSub?new gt.MathNode("mrow",[o,s]):gt.newDocumentFragment([o,s])}}),Br("\\operatorname","\\@ifstar\\operatornamewithlimits\\operatorname@"),$e({type:"ordgroup",htmlBuilder(e,t){return e.semisimple?Ve.makeFragment(nt(e.body,t,!1)):Ve.makeSpan(["mord"],nt(e.body,t,!0),t)},mathmlBuilder(e,t){return wt(e.body,t,!0)}}),je({type:"overline",names:["\\overline"],props:{numArgs:1},handler(e,t){let{parser:r}=e;const n=t[0];return{type:"overline",mode:r.mode,body:n}},htmlBuilder(e,t){const r=ht(e.body,t.havingCrampedStyle()),n=Ve.makeLineSpan("overline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r},{type:"kern",size:3*o},{type:"elem",elem:n},{type:"kern",size:o}]},t);return Ve.makeSpan(["mord","overline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("mover",[vt(e.body,t),r]);return n.setAttribute("accent","true"),n}}),je({type:"phantom",names:["\\phantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"phantom",mode:r.mode,body:Ke(n)}},htmlBuilder:(e,t)=>{const r=nt(e.body,t.withPhantom(),!1);return Ve.makeFragment(r)},mathmlBuilder:(e,t)=>{const r=xt(e.body,t);return new gt.MathNode("mphantom",r)}}),je({type:"hphantom",names:["\\hphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"hphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{let r=Ve.makeSpan([],[ht(e.body,t.withPhantom())]);if(r.height=0,r.depth=0,r.children)for(let e=0;e{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("height","0px"),o.setAttribute("depth","0px"),o}}),je({type:"vphantom",names:["\\vphantom"],props:{numArgs:1,allowedInText:!0},handler:(e,t)=>{let{parser:r}=e;const n=t[0];return{type:"vphantom",mode:r.mode,body:n}},htmlBuilder:(e,t)=>{const r=Ve.makeSpan(["inner"],[ht(e.body,t.withPhantom())]),n=Ve.makeSpan(["fix"],[]);return Ve.makeSpan(["mord","rlap"],[r,n],t)},mathmlBuilder:(e,t)=>{const r=xt(Ke(e.body),t),n=new gt.MathNode("mphantom",r),o=new gt.MathNode("mpadded",[n]);return o.setAttribute("width","0px"),o}}),je({type:"raisebox",names:["\\raisebox"],props:{numArgs:2,argTypes:["size","hbox"],allowedInText:!0},handler(e,t){let{parser:r}=e;const n=qt(t[0],"size").value,o=t[1];return{type:"raisebox",mode:r.mode,dy:n,body:o}},htmlBuilder(e,t){const r=ht(e.body,t),n=P(e.dy,t);return Ve.makeVList({positionType:"shift",positionData:-n,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){const r=new gt.MathNode("mpadded",[vt(e.body,t)]),n=e.dy.number+e.dy.unit;return r.setAttribute("voffset",n),r}}),je({type:"internal",names:["\\relax"],props:{numArgs:0,allowedInText:!0},handler(e){let{parser:t}=e;return{type:"internal",mode:t.mode}}}),je({type:"rule",names:["\\rule"],props:{numArgs:2,numOptionalArgs:1,argTypes:["size","size","size"]},handler(e,t,r){let{parser:n}=e;const o=r[0],s=qt(t[0],"size"),i=qt(t[1],"size");return{type:"rule",mode:n.mode,shift:o&&qt(o,"size").value,width:s.value,height:i.value}},htmlBuilder(e,t){const r=Ve.makeSpan(["mord","rule"],[],t),n=P(e.width,t),o=P(e.height,t),s=e.shift?P(e.shift,t):0;return r.style.borderRightWidth=F(n),r.style.borderTopWidth=F(o),r.style.bottom=F(s),r.width=n,r.height=o+s,r.depth=-s,r.maxFontSize=1.125*o*t.sizeMultiplier,r},mathmlBuilder(e,t){const r=P(e.width,t),n=P(e.height,t),o=e.shift?P(e.shift,t):0,s=t.color&&t.getColor()||"black",i=new gt.MathNode("mspace");i.setAttribute("mathbackground",s),i.setAttribute("width",F(r)),i.setAttribute("height",F(n));const a=new gt.MathNode("mpadded",[i]);return o>=0?a.setAttribute("height",F(o)):(a.setAttribute("height",F(o)),a.setAttribute("depth",F(-o))),a.setAttribute("voffset",F(o)),a}});const an=["\\tiny","\\sixptsize","\\scriptsize","\\footnotesize","\\small","\\normalsize","\\large","\\Large","\\LARGE","\\huge","\\Huge"];je({type:"sizing",names:an,props:{numArgs:0,allowedInText:!0},handler:(e,t)=>{let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!1,r);return{type:"sizing",mode:o.mode,size:an.indexOf(n)+1,body:s}},htmlBuilder:(e,t)=>{const r=t.havingSize(e.size);return sn(e.body,r,t)},mathmlBuilder:(e,t)=>{const r=t.havingSize(e.size),n=xt(e.body,r),o=new gt.MathNode("mstyle",n);return o.setAttribute("mathsize",F(r.sizeMultiplier)),o}}),je({type:"smash",names:["\\smash"],props:{numArgs:1,numOptionalArgs:1,allowedInText:!0},handler:(e,t,r)=>{let{parser:n}=e,o=!1,s=!1;const i=r[0]&&qt(r[0],"ordgroup");if(i){let e="";for(let t=0;t{const r=Ve.makeSpan([],[ht(e.body,t)]);if(!e.smashHeight&&!e.smashDepth)return r;if(e.smashHeight&&(r.height=0,r.children))for(let e=0;e{const r=new gt.MathNode("mpadded",[vt(e.body,t)]);return e.smashHeight&&r.setAttribute("height","0px"),e.smashDepth&&r.setAttribute("depth","0px"),r}}),je({type:"sqrt",names:["\\sqrt"],props:{numArgs:1,numOptionalArgs:1},handler(e,t,r){let{parser:n}=e;const o=r[0],s=t[0];return{type:"sqrt",mode:n.mode,body:s,index:o}},htmlBuilder(e,t){let r=ht(e.body,t.havingCrampedStyle());0===r.height&&(r.height=t.fontMetrics().xHeight),r=Ve.wrapFragment(r,t);const n=t.fontMetrics().defaultRuleThickness;let o=n;t.style.idr.height+r.depth+s&&(s=(s+c-r.height-r.depth)/2);const m=a.height-r.height-s-l;r.style.paddingLeft=F(h);const p=Ve.makeVList({positionType:"firstBaseline",children:[{type:"elem",elem:r,wrapperClasses:["svg-align"]},{type:"kern",size:-(r.height+m)},{type:"elem",elem:a},{type:"kern",size:l}]},t);if(e.index){const r=t.havingStyle(w.SCRIPTSCRIPT),n=ht(e.index,r,t),o=.6*(p.height-p.depth),s=Ve.makeVList({positionType:"shift",positionData:-o,children:[{type:"elem",elem:n}]},t),i=Ve.makeSpan(["root"],[s]);return Ve.makeSpan(["mord","sqrt"],[i,p],t)}return Ve.makeSpan(["mord","sqrt"],[p],t)},mathmlBuilder(e,t){const{body:r,index:n}=e;return n?new gt.MathNode("mroot",[vt(r,t),vt(n,t)]):new gt.MathNode("msqrt",[vt(r,t)])}});const ln={display:w.DISPLAY,text:w.TEXT,script:w.SCRIPT,scriptscript:w.SCRIPTSCRIPT};je({type:"styling",names:["\\displaystyle","\\textstyle","\\scriptstyle","\\scriptscriptstyle"],props:{numArgs:0,allowedInText:!0,primitive:!0},handler(e,t){let{breakOnTokenText:r,funcName:n,parser:o}=e;const s=o.parseExpression(!0,r),i=n.slice(1,n.length-5);return{type:"styling",mode:o.mode,style:i,body:s}},htmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r).withFont("");return sn(e.body,n,t)},mathmlBuilder(e,t){const r=ln[e.style],n=t.havingStyle(r),o=xt(e.body,n),s=new gt.MathNode("mstyle",o),i={display:["0","true"],text:["0","false"],script:["1","false"],scriptscript:["2","false"]}[e.style];return s.setAttribute("scriptlevel",i[0]),s.setAttribute("displaystyle",i[1]),s}});$e({type:"supsub",htmlBuilder(e,t){const r=function(e,t){const r=e.base;if(r)return"op"===r.type?r.limits&&(t.style.size===w.DISPLAY.size||r.alwaysHandleSupSub)?en:null:"operatorname"===r.type?r.alwaysHandleSupSub&&(t.style.size===w.DISPLAY.size||r.limits)?on:null:"accent"===r.type?l.isCharacterBox(r.base)?Ht:null:"horizBrace"===r.type&&!e.sub===r.isOver?$r:null;return null}(e,t);if(r)return r(e,t);const{base:n,sup:o,sub:s}=e,i=ht(n,t);let a,h;const c=t.fontMetrics();let m=0,p=0;const u=n&&l.isCharacterBox(n);if(o){const e=t.havingStyle(t.style.sup());a=ht(o,e,t),u||(m=i.height-e.fontMetrics().supDrop*e.sizeMultiplier/t.sizeMultiplier)}if(s){const e=t.havingStyle(t.style.sub());h=ht(s,e,t),u||(p=i.depth+e.fontMetrics().subDrop*e.sizeMultiplier/t.sizeMultiplier)}let d;d=t.style===w.DISPLAY?c.sup1:t.style.cramped?c.sup3:c.sup2;const g=t.sizeMultiplier,f=F(.5/c.ptPerEm/g);let b,y=null;if(h){const t=e.base&&"op"===e.base.type&&e.base.name&&("\\oiint"===e.base.name||"\\oiiint"===e.base.name);(i instanceof Z||t)&&(y=F(-i.italic))}if(a&&h){m=Math.max(m,d,a.depth+.25*c.xHeight),p=Math.max(p,c.sub2);const e=4*c.defaultRuleThickness;if(m-a.depth-(h.height-p)0&&(m+=t,p-=t)}const r=[{type:"elem",elem:h,shift:p,marginRight:f,marginLeft:y},{type:"elem",elem:a,shift:-m,marginRight:f}];b=Ve.makeVList({positionType:"individualShift",children:r},t)}else if(h){p=Math.max(p,c.sub1,h.height-.8*c.xHeight);const e=[{type:"elem",elem:h,marginLeft:y,marginRight:f}];b=Ve.makeVList({positionType:"shift",positionData:p,children:e},t)}else{if(!a)throw new Error("supsub must have either sup or sub.");m=Math.max(m,d,a.depth+.25*c.xHeight),b=Ve.makeVList({positionType:"shift",positionData:-m,children:[{type:"elem",elem:a,marginRight:f}]},t)}const x=at(i,"right")||"mord";return Ve.makeSpan([x],[i,Ve.makeSpan(["msupsub"],[b])],t)},mathmlBuilder(e,t){let r,n,o=!1;e.base&&"horizBrace"===e.base.type&&(n=!!e.sup,n===e.base.isOver&&(o=!0,r=e.base.isOver)),!e.base||"op"!==e.base.type&&"operatorname"!==e.base.type||(e.base.parentIsSupSub=!0);const s=[vt(e.base,t)];let i;if(e.sub&&s.push(vt(e.sub,t)),e.sup&&s.push(vt(e.sup,t)),o)i=r?"mover":"munder";else if(e.sub)if(e.sup){const r=e.base;i=r&&"op"===r.type&&r.limits&&t.style===w.DISPLAY||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(t.style===w.DISPLAY||r.limits)?"munderover":"msubsup"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"munder":"msub"}else{const r=e.base;i=r&&"op"===r.type&&r.limits&&(t.style===w.DISPLAY||r.alwaysHandleSupSub)||r&&"operatorname"===r.type&&r.alwaysHandleSupSub&&(r.limits||t.style===w.DISPLAY)?"mover":"msup"}return new gt.MathNode(i,s)}}),$e({type:"atom",htmlBuilder(e,t){return Ve.mathsym(e.text,e.mode,t,["m"+e.family])},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[ft(e.text,e.mode)]);if("bin"===e.family){const n=yt(e,t);"bold-italic"===n&&r.setAttribute("mathvariant",n)}else"punct"===e.family?r.setAttribute("separator","true"):"open"!==e.family&&"close"!==e.family||r.setAttribute("stretchy","false");return r}});const hn={mi:"italic",mn:"normal",mtext:"normal"};$e({type:"mathord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"mathord")},mathmlBuilder(e,t){const r=new gt.MathNode("mi",[ft(e.text,e.mode,t)]),n=yt(e,t)||"italic";return n!==hn[r.type]&&r.setAttribute("mathvariant",n),r}}),$e({type:"textord",htmlBuilder(e,t){return Ve.makeOrd(e,t,"textord")},mathmlBuilder(e,t){const r=ft(e.text,e.mode,t),n=yt(e,t)||"normal";let o;return o="text"===e.mode?new gt.MathNode("mtext",[r]):/[0-9]/.test(e.text)?new gt.MathNode("mn",[r]):"\\prime"===e.text?new gt.MathNode("mo",[r]):new gt.MathNode("mi",[r]),n!==hn[o.type]&&o.setAttribute("mathvariant",n),o}});const cn={"\\nobreak":"nobreak","\\allowbreak":"allowbreak"},mn={" ":{},"\\ ":{},"~":{className:"nobreak"},"\\space":{},"\\nobreakspace":{className:"nobreak"}};$e({type:"spacing",htmlBuilder(e,t){if(mn.hasOwnProperty(e.text)){const r=mn[e.text].className||"";if("text"===e.mode){const n=Ve.makeOrd(e,t,"textord");return n.classes.push(r),n}return Ve.makeSpan(["mspace",r],[Ve.mathsym(e.text,e.mode,t)],t)}if(cn.hasOwnProperty(e.text))return Ve.makeSpan(["mspace",cn[e.text]],[],t);throw new n('Unknown type of space "'+e.text+'"')},mathmlBuilder(e,t){let r;if(!mn.hasOwnProperty(e.text)){if(cn.hasOwnProperty(e.text))return new gt.MathNode("mspace");throw new n('Unknown type of space "'+e.text+'"')}return r=new gt.MathNode("mtext",[new gt.TextNode("\xa0")]),r}});const pn=()=>{const e=new gt.MathNode("mtd",[]);return e.setAttribute("width","50%"),e};$e({type:"tag",mathmlBuilder(e,t){const r=new gt.MathNode("mtable",[new gt.MathNode("mtr",[pn(),new gt.MathNode("mtd",[wt(e.body,t)]),pn(),new gt.MathNode("mtd",[wt(e.tag,t)])])]);return r.setAttribute("width","100%"),r}});const un={"\\text":void 0,"\\textrm":"textrm","\\textsf":"textsf","\\texttt":"texttt","\\textnormal":"textrm"},dn={"\\textbf":"textbf","\\textmd":"textmd"},gn={"\\textit":"textit","\\textup":"textup"},fn=(e,t)=>{const r=e.font;return r?un[r]?t.withTextFontFamily(un[r]):dn[r]?t.withTextFontWeight(dn[r]):t.withTextFontShape(gn[r]):t};je({type:"text",names:["\\text","\\textrm","\\textsf","\\texttt","\\textnormal","\\textbf","\\textmd","\\textit","\\textup"],props:{numArgs:1,argTypes:["text"],allowedInArgument:!0,allowedInText:!0},handler(e,t){let{parser:r,funcName:n}=e;const o=t[0];return{type:"text",mode:r.mode,body:Ke(o),font:n}},htmlBuilder(e,t){const r=fn(e,t),n=nt(e.body,r,!0);return Ve.makeSpan(["mord","text"],n,r)},mathmlBuilder(e,t){const r=fn(e,t);return wt(e.body,r)}}),je({type:"underline",names:["\\underline"],props:{numArgs:1,allowedInText:!0},handler(e,t){let{parser:r}=e;return{type:"underline",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=Ve.makeLineSpan("underline-line",t),o=t.fontMetrics().defaultRuleThickness,s=Ve.makeVList({positionType:"top",positionData:r.height,children:[{type:"kern",size:o},{type:"elem",elem:n},{type:"kern",size:3*o},{type:"elem",elem:r}]},t);return Ve.makeSpan(["mord","underline"],[s],t)},mathmlBuilder(e,t){const r=new gt.MathNode("mo",[new gt.TextNode("\u203e")]);r.setAttribute("stretchy","true");const n=new gt.MathNode("munder",[vt(e.body,t),r]);return n.setAttribute("accentunder","true"),n}}),je({type:"vcenter",names:["\\vcenter"],props:{numArgs:1,argTypes:["original"],allowedInText:!1},handler(e,t){let{parser:r}=e;return{type:"vcenter",mode:r.mode,body:t[0]}},htmlBuilder(e,t){const r=ht(e.body,t),n=t.fontMetrics().axisHeight,o=.5*(r.height-n-(r.depth+n));return Ve.makeVList({positionType:"shift",positionData:o,children:[{type:"elem",elem:r}]},t)},mathmlBuilder(e,t){return new gt.MathNode("mpadded",[vt(e.body,t)],["vcenter"])}}),je({type:"verb",names:["\\verb"],props:{numArgs:0,allowedInText:!0},handler(e,t,r){throw new n("\\verb ended by end of line instead of matching delimiter")},htmlBuilder(e,t){const r=bn(e),n=[],o=t.havingStyle(t.style.text());for(let t=0;te.body.replace(/ /g,e.star?"\u2423":"\xa0");var yn=Xe;const xn="[ \r\n\t]",wn="(\\\\[a-zA-Z@]+)"+xn+"*",vn="[\u0300-\u036f]",kn=new RegExp(vn+"+$"),Sn="("+xn+"+)|\\\\(\n|[ \r\t]+\n?)[ \r\t]*|([!-\\[\\]-\u2027\u202a-\ud7ff\uf900-\uffff]"+vn+"*|[\ud800-\udbff][\udc00-\udfff]"+vn+"*|\\\\verb\\*([^]).*?\\4|\\\\verb([^*a-zA-Z]).*?\\5|"+wn+"|\\\\[^\ud800-\udfff])";class Mn{constructor(e,t){this.input=void 0,this.settings=void 0,this.tokenRegex=void 0,this.catcodes=void 0,this.input=e,this.settings=t,this.tokenRegex=new RegExp(Sn,"g"),this.catcodes={"%":14,"~":13}}setCatcode(e,t){this.catcodes[e]=t}lex(){const e=this.input,t=this.tokenRegex.lastIndex;if(t===e.length)return new Nr("EOF",new Cr(this,t,t));const r=this.tokenRegex.exec(e);if(null===r||r.index!==t)throw new n("Unexpected character: '"+e[t]+"'",new Nr(e[t],new Cr(this,t,t+1)));const o=r[6]||r[3]||(r[2]?"\\ ":" ");if(14===this.catcodes[o]){const t=e.indexOf("\n",this.tokenRegex.lastIndex);return-1===t?(this.tokenRegex.lastIndex=e.length,this.settings.reportNonstrict("commentAtEnd","% comment has no terminating newline; LaTeX would fail because of commenting the end of math mode (e.g. $)")):this.tokenRegex.lastIndex=t+1,this.lex()}return new Nr(o,new Cr(this,t,this.tokenRegex.lastIndex))}}class zn{constructor(e,t){void 0===e&&(e={}),void 0===t&&(t={}),this.current=void 0,this.builtins=void 0,this.undefStack=void 0,this.current=t,this.builtins=e,this.undefStack=[]}beginGroup(){this.undefStack.push({})}endGroup(){if(0===this.undefStack.length)throw new n("Unbalanced namespace destruction: attempt to pop global namespace; please report this as a bug");const e=this.undefStack.pop();for(const t in e)e.hasOwnProperty(t)&&(null==e[t]?delete this.current[t]:this.current[t]=e[t])}endGroups(){for(;this.undefStack.length>0;)this.endGroup()}has(e){return this.current.hasOwnProperty(e)||this.builtins.hasOwnProperty(e)}get(e){return this.current.hasOwnProperty(e)?this.current[e]:this.builtins[e]}set(e,t,r){if(void 0===r&&(r=!1),r){for(let t=0;t0&&(this.undefStack[this.undefStack.length-1][e]=t)}else{const t=this.undefStack[this.undefStack.length-1];t&&!t.hasOwnProperty(e)&&(t[e]=this.current[e])}null==t?delete this.current[e]:this.current[e]=t}}var An=Tr;Br("\\noexpand",(function(e){const t=e.popToken();return e.isExpandable(t.text)&&(t.noexpand=!0,t.treatAsRelax=!0),{tokens:[t],numArgs:0}})),Br("\\expandafter",(function(e){const t=e.popToken();return e.expandOnce(!0),{tokens:[t],numArgs:0}})),Br("\\@firstoftwo",(function(e){return{tokens:e.consumeArgs(2)[0],numArgs:0}})),Br("\\@secondoftwo",(function(e){return{tokens:e.consumeArgs(2)[1],numArgs:0}})),Br("\\@ifnextchar",(function(e){const t=e.consumeArgs(3);e.consumeSpaces();const r=e.future();return 1===t[0].length&&t[0][0].text===r.text?{tokens:t[1],numArgs:0}:{tokens:t[2],numArgs:0}})),Br("\\@ifstar","\\@ifnextchar *{\\@firstoftwo{#1}}"),Br("\\TextOrMath",(function(e){const t=e.consumeArgs(2);return"text"===e.mode?{tokens:t[0],numArgs:0}:{tokens:t[1],numArgs:0}}));const Tn={0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7,8:8,9:9,a:10,A:10,b:11,B:11,c:12,C:12,d:13,D:13,e:14,E:14,f:15,F:15};Br("\\char",(function(e){let t,r=e.popToken(),o="";if("'"===r.text)t=8,r=e.popToken();else if('"'===r.text)t=16,r=e.popToken();else if("`"===r.text)if(r=e.popToken(),"\\"===r.text[0])o=r.text.charCodeAt(1);else{if("EOF"===r.text)throw new n("\\char` missing argument");o=r.text.charCodeAt(0)}else t=10;if(t){if(o=Tn[r.text],null==o||o>=t)throw new n("Invalid base-"+t+" digit "+r.text);let s;for(;null!=(s=Tn[e.future().text])&&s{let o=e.consumeArg().tokens;if(1!==o.length)throw new n("\\newcommand's first argument must be a macro name");const s=o[0].text,i=e.isDefined(s);if(i&&!t)throw new n("\\newcommand{"+s+"} attempting to redefine "+s+"; use \\renewcommand");if(!i&&!r)throw new n("\\renewcommand{"+s+"} when command "+s+" does not yet exist; use \\newcommand");let a=0;if(o=e.consumeArg().tokens,1===o.length&&"["===o[0].text){let t="",r=e.expandNextToken();for(;"]"!==r.text&&"EOF"!==r.text;)t+=r.text,r=e.expandNextToken();if(!t.match(/^\s*[0-9]+\s*$/))throw new n("Invalid number of arguments: "+t);a=parseInt(t),o=e.consumeArg().tokens}return e.macros.set(s,{tokens:o,numArgs:a}),""};Br("\\newcommand",(e=>Bn(e,!1,!0))),Br("\\renewcommand",(e=>Bn(e,!0,!1))),Br("\\providecommand",(e=>Bn(e,!0,!0))),Br("\\message",(e=>{const t=e.consumeArgs(1)[0];return console.log(t.reverse().map((e=>e.text)).join("")),""})),Br("\\errmessage",(e=>{const t=e.consumeArgs(1)[0];return console.error(t.reverse().map((e=>e.text)).join("")),""})),Br("\\show",(e=>{const t=e.popToken(),r=t.text;return console.log(t,e.macros.get(r),yn[r],oe.math[r],oe.text[r]),""})),Br("\\bgroup","{"),Br("\\egroup","}"),Br("~","\\nobreakspace"),Br("\\lq","`"),Br("\\rq","'"),Br("\\aa","\\r a"),Br("\\AA","\\r A"),Br("\\textcopyright","\\html@mathml{\\textcircled{c}}{\\char`\xa9}"),Br("\\copyright","\\TextOrMath{\\textcopyright}{\\text{\\textcopyright}}"),Br("\\textregistered","\\html@mathml{\\textcircled{\\scriptsize R}}{\\char`\xae}"),Br("\u212c","\\mathscr{B}"),Br("\u2130","\\mathscr{E}"),Br("\u2131","\\mathscr{F}"),Br("\u210b","\\mathscr{H}"),Br("\u2110","\\mathscr{I}"),Br("\u2112","\\mathscr{L}"),Br("\u2133","\\mathscr{M}"),Br("\u211b","\\mathscr{R}"),Br("\u212d","\\mathfrak{C}"),Br("\u210c","\\mathfrak{H}"),Br("\u2128","\\mathfrak{Z}"),Br("\\Bbbk","\\Bbb{k}"),Br("\xb7","\\cdotp"),Br("\\llap","\\mathllap{\\textrm{#1}}"),Br("\\rlap","\\mathrlap{\\textrm{#1}}"),Br("\\clap","\\mathclap{\\textrm{#1}}"),Br("\\mathstrut","\\vphantom{(}"),Br("\\underbar","\\underline{\\text{#1}}"),Br("\\not",'\\html@mathml{\\mathrel{\\mathrlap\\@not}}{\\char"338}'),Br("\\neq","\\html@mathml{\\mathrel{\\not=}}{\\mathrel{\\char`\u2260}}"),Br("\\ne","\\neq"),Br("\u2260","\\neq"),Br("\\notin","\\html@mathml{\\mathrel{{\\in}\\mathllap{/\\mskip1mu}}}{\\mathrel{\\char`\u2209}}"),Br("\u2209","\\notin"),Br("\u2258","\\html@mathml{\\mathrel{=\\kern{-1em}\\raisebox{0.4em}{$\\scriptsize\\frown$}}}{\\mathrel{\\char`\u2258}}"),Br("\u2259","\\html@mathml{\\stackrel{\\tiny\\wedge}{=}}{\\mathrel{\\char`\u2258}}"),Br("\u225a","\\html@mathml{\\stackrel{\\tiny\\vee}{=}}{\\mathrel{\\char`\u225a}}"),Br("\u225b","\\html@mathml{\\stackrel{\\scriptsize\\star}{=}}{\\mathrel{\\char`\u225b}}"),Br("\u225d","\\html@mathml{\\stackrel{\\tiny\\mathrm{def}}{=}}{\\mathrel{\\char`\u225d}}"),Br("\u225e","\\html@mathml{\\stackrel{\\tiny\\mathrm{m}}{=}}{\\mathrel{\\char`\u225e}}"),Br("\u225f","\\html@mathml{\\stackrel{\\tiny?}{=}}{\\mathrel{\\char`\u225f}}"),Br("\u27c2","\\perp"),Br("\u203c","\\mathclose{!\\mkern-0.8mu!}"),Br("\u220c","\\notni"),Br("\u231c","\\ulcorner"),Br("\u231d","\\urcorner"),Br("\u231e","\\llcorner"),Br("\u231f","\\lrcorner"),Br("\xa9","\\copyright"),Br("\xae","\\textregistered"),Br("\ufe0f","\\textregistered"),Br("\\ulcorner",'\\html@mathml{\\@ulcorner}{\\mathop{\\char"231c}}'),Br("\\urcorner",'\\html@mathml{\\@urcorner}{\\mathop{\\char"231d}}'),Br("\\llcorner",'\\html@mathml{\\@llcorner}{\\mathop{\\char"231e}}'),Br("\\lrcorner",'\\html@mathml{\\@lrcorner}{\\mathop{\\char"231f}}'),Br("\\vdots","\\mathord{\\varvdots\\rule{0pt}{15pt}}"),Br("\u22ee","\\vdots"),Br("\\varGamma","\\mathit{\\Gamma}"),Br("\\varDelta","\\mathit{\\Delta}"),Br("\\varTheta","\\mathit{\\Theta}"),Br("\\varLambda","\\mathit{\\Lambda}"),Br("\\varXi","\\mathit{\\Xi}"),Br("\\varPi","\\mathit{\\Pi}"),Br("\\varSigma","\\mathit{\\Sigma}"),Br("\\varUpsilon","\\mathit{\\Upsilon}"),Br("\\varPhi","\\mathit{\\Phi}"),Br("\\varPsi","\\mathit{\\Psi}"),Br("\\varOmega","\\mathit{\\Omega}"),Br("\\substack","\\begin{subarray}{c}#1\\end{subarray}"),Br("\\colon","\\nobreak\\mskip2mu\\mathpunct{}\\mathchoice{\\mkern-3mu}{\\mkern-3mu}{}{}{:}\\mskip6mu\\relax"),Br("\\boxed","\\fbox{$\\displaystyle{#1}$}"),Br("\\iff","\\DOTSB\\;\\Longleftrightarrow\\;"),Br("\\implies","\\DOTSB\\;\\Longrightarrow\\;"),Br("\\impliedby","\\DOTSB\\;\\Longleftarrow\\;");const Cn={",":"\\dotsc","\\not":"\\dotsb","+":"\\dotsb","=":"\\dotsb","<":"\\dotsb",">":"\\dotsb","-":"\\dotsb","*":"\\dotsb",":":"\\dotsb","\\DOTSB":"\\dotsb","\\coprod":"\\dotsb","\\bigvee":"\\dotsb","\\bigwedge":"\\dotsb","\\biguplus":"\\dotsb","\\bigcap":"\\dotsb","\\bigcup":"\\dotsb","\\prod":"\\dotsb","\\sum":"\\dotsb","\\bigotimes":"\\dotsb","\\bigoplus":"\\dotsb","\\bigodot":"\\dotsb","\\bigsqcup":"\\dotsb","\\And":"\\dotsb","\\longrightarrow":"\\dotsb","\\Longrightarrow":"\\dotsb","\\longleftarrow":"\\dotsb","\\Longleftarrow":"\\dotsb","\\longleftrightarrow":"\\dotsb","\\Longleftrightarrow":"\\dotsb","\\mapsto":"\\dotsb","\\longmapsto":"\\dotsb","\\hookrightarrow":"\\dotsb","\\doteq":"\\dotsb","\\mathbin":"\\dotsb","\\mathrel":"\\dotsb","\\relbar":"\\dotsb","\\Relbar":"\\dotsb","\\xrightarrow":"\\dotsb","\\xleftarrow":"\\dotsb","\\DOTSI":"\\dotsi","\\int":"\\dotsi","\\oint":"\\dotsi","\\iint":"\\dotsi","\\iiint":"\\dotsi","\\iiiint":"\\dotsi","\\idotsint":"\\dotsi","\\DOTSX":"\\dotsx"};Br("\\dots",(function(e){let t="\\dotso";const r=e.expandAfterFuture().text;return r in Cn?t=Cn[r]:("\\not"===r.slice(0,4)||r in oe.math&&l.contains(["bin","rel"],oe.math[r].group))&&(t="\\dotsb"),t}));const Nn={")":!0,"]":!0,"\\rbrack":!0,"\\}":!0,"\\rbrace":!0,"\\rangle":!0,"\\rceil":!0,"\\rfloor":!0,"\\rgroup":!0,"\\rmoustache":!0,"\\right":!0,"\\bigr":!0,"\\biggr":!0,"\\Bigr":!0,"\\Biggr":!0,$:!0,";":!0,".":!0,",":!0};Br("\\dotso",(function(e){return e.future().text in Nn?"\\ldots\\,":"\\ldots"})),Br("\\dotsc",(function(e){const t=e.future().text;return t in Nn&&","!==t?"\\ldots\\,":"\\ldots"})),Br("\\cdots",(function(e){return e.future().text in Nn?"\\@cdots\\,":"\\@cdots"})),Br("\\dotsb","\\cdots"),Br("\\dotsm","\\cdots"),Br("\\dotsi","\\!\\cdots"),Br("\\dotsx","\\ldots\\,"),Br("\\DOTSI","\\relax"),Br("\\DOTSB","\\relax"),Br("\\DOTSX","\\relax"),Br("\\tmspace","\\TextOrMath{\\kern#1#3}{\\mskip#1#2}\\relax"),Br("\\,","\\tmspace+{3mu}{.1667em}"),Br("\\thinspace","\\,"),Br("\\>","\\mskip{4mu}"),Br("\\:","\\tmspace+{4mu}{.2222em}"),Br("\\medspace","\\:"),Br("\\;","\\tmspace+{5mu}{.2777em}"),Br("\\thickspace","\\;"),Br("\\!","\\tmspace-{3mu}{.1667em}"),Br("\\negthinspace","\\!"),Br("\\negmedspace","\\tmspace-{4mu}{.2222em}"),Br("\\negthickspace","\\tmspace-{5mu}{.277em}"),Br("\\enspace","\\kern.5em "),Br("\\enskip","\\hskip.5em\\relax"),Br("\\quad","\\hskip1em\\relax"),Br("\\qquad","\\hskip2em\\relax"),Br("\\tag","\\@ifstar\\tag@literal\\tag@paren"),Br("\\tag@paren","\\tag@literal{({#1})}"),Br("\\tag@literal",(e=>{if(e.macros.get("\\df@tag"))throw new n("Multiple \\tag");return"\\gdef\\df@tag{\\text{#1}}"})),Br("\\bmod","\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}\\mathbin{\\rm mod}\\mathchoice{\\mskip1mu}{\\mskip1mu}{\\mskip5mu}{\\mskip5mu}"),Br("\\pod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern8mu}{\\mkern8mu}{\\mkern8mu}(#1)"),Br("\\pmod","\\pod{{\\rm mod}\\mkern6mu#1}"),Br("\\mod","\\allowbreak\\mathchoice{\\mkern18mu}{\\mkern12mu}{\\mkern12mu}{\\mkern12mu}{\\rm mod}\\,\\,#1"),Br("\\newline","\\\\\\relax"),Br("\\TeX","\\textrm{\\html@mathml{T\\kern-.1667em\\raisebox{-.5ex}{E}\\kern-.125emX}{TeX}}");const qn=F(T["Main-Regular"]["T".charCodeAt(0)][1]-.7*T["Main-Regular"]["A".charCodeAt(0)][1]);Br("\\LaTeX","\\textrm{\\html@mathml{L\\kern-.36em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{LaTeX}}"),Br("\\KaTeX","\\textrm{\\html@mathml{K\\kern-.17em\\raisebox{"+qn+"}{\\scriptstyle A}\\kern-.15em\\TeX}{KaTeX}}"),Br("\\hspace","\\@ifstar\\@hspacer\\@hspace"),Br("\\@hspace","\\hskip #1\\relax"),Br("\\@hspacer","\\rule{0pt}{0pt}\\hskip #1\\relax"),Br("\\ordinarycolon",":"),Br("\\vcentcolon","\\mathrel{\\mathop\\ordinarycolon}"),Br("\\dblcolon",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-.9mu}\\vcentcolon}}{\\mathop{\\char"2237}}'),Br("\\coloneqq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2254}}'),Br("\\Coloneqq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}=}}{\\mathop{\\char"2237\\char"3d}}'),Br("\\coloneq",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"3a\\char"2212}}'),Br("\\Coloneq",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\mathrel{-}}}{\\mathop{\\char"2237\\char"2212}}'),Br("\\eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2255}}'),Br("\\Eqqcolon",'\\html@mathml{\\mathrel{=\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"3d\\char"2237}}'),Br("\\eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\vcentcolon}}{\\mathop{\\char"2239}}'),Br("\\Eqcolon",'\\html@mathml{\\mathrel{\\mathrel{-}\\mathrel{\\mkern-1.2mu}\\dblcolon}}{\\mathop{\\char"2212\\char"2237}}'),Br("\\colonapprox",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"3a\\char"2248}}'),Br("\\Colonapprox",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\approx}}{\\mathop{\\char"2237\\char"2248}}'),Br("\\colonsim",'\\html@mathml{\\mathrel{\\vcentcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"3a\\char"223c}}'),Br("\\Colonsim",'\\html@mathml{\\mathrel{\\dblcolon\\mathrel{\\mkern-1.2mu}\\sim}}{\\mathop{\\char"2237\\char"223c}}'),Br("\u2237","\\dblcolon"),Br("\u2239","\\eqcolon"),Br("\u2254","\\coloneqq"),Br("\u2255","\\eqqcolon"),Br("\u2a74","\\Coloneqq"),Br("\\ratio","\\vcentcolon"),Br("\\coloncolon","\\dblcolon"),Br("\\colonequals","\\coloneqq"),Br("\\coloncolonequals","\\Coloneqq"),Br("\\equalscolon","\\eqqcolon"),Br("\\equalscoloncolon","\\Eqqcolon"),Br("\\colonminus","\\coloneq"),Br("\\coloncolonminus","\\Coloneq"),Br("\\minuscolon","\\eqcolon"),Br("\\minuscoloncolon","\\Eqcolon"),Br("\\coloncolonapprox","\\Colonapprox"),Br("\\coloncolonsim","\\Colonsim"),Br("\\simcolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\simcoloncolon","\\mathrel{\\sim\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\approxcolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\vcentcolon}"),Br("\\approxcoloncolon","\\mathrel{\\approx\\mathrel{\\mkern-1.2mu}\\dblcolon}"),Br("\\notni","\\html@mathml{\\not\\ni}{\\mathrel{\\char`\u220c}}"),Br("\\limsup","\\DOTSB\\operatorname*{lim\\,sup}"),Br("\\liminf","\\DOTSB\\operatorname*{lim\\,inf}"),Br("\\injlim","\\DOTSB\\operatorname*{inj\\,lim}"),Br("\\projlim","\\DOTSB\\operatorname*{proj\\,lim}"),Br("\\varlimsup","\\DOTSB\\operatorname*{\\overline{lim}}"),Br("\\varliminf","\\DOTSB\\operatorname*{\\underline{lim}}"),Br("\\varinjlim","\\DOTSB\\operatorname*{\\underrightarrow{lim}}"),Br("\\varprojlim","\\DOTSB\\operatorname*{\\underleftarrow{lim}}"),Br("\\gvertneqq","\\html@mathml{\\@gvertneqq}{\u2269}"),Br("\\lvertneqq","\\html@mathml{\\@lvertneqq}{\u2268}"),Br("\\ngeqq","\\html@mathml{\\@ngeqq}{\u2271}"),Br("\\ngeqslant","\\html@mathml{\\@ngeqslant}{\u2271}"),Br("\\nleqq","\\html@mathml{\\@nleqq}{\u2270}"),Br("\\nleqslant","\\html@mathml{\\@nleqslant}{\u2270}"),Br("\\nshortmid","\\html@mathml{\\@nshortmid}{\u2224}"),Br("\\nshortparallel","\\html@mathml{\\@nshortparallel}{\u2226}"),Br("\\nsubseteqq","\\html@mathml{\\@nsubseteqq}{\u2288}"),Br("\\nsupseteqq","\\html@mathml{\\@nsupseteqq}{\u2289}"),Br("\\varsubsetneq","\\html@mathml{\\@varsubsetneq}{\u228a}"),Br("\\varsubsetneqq","\\html@mathml{\\@varsubsetneqq}{\u2acb}"),Br("\\varsupsetneq","\\html@mathml{\\@varsupsetneq}{\u228b}"),Br("\\varsupsetneqq","\\html@mathml{\\@varsupsetneqq}{\u2acc}"),Br("\\imath","\\html@mathml{\\@imath}{\u0131}"),Br("\\jmath","\\html@mathml{\\@jmath}{\u0237}"),Br("\\llbracket","\\html@mathml{\\mathopen{[\\mkern-3.2mu[}}{\\mathopen{\\char`\u27e6}}"),Br("\\rrbracket","\\html@mathml{\\mathclose{]\\mkern-3.2mu]}}{\\mathclose{\\char`\u27e7}}"),Br("\u27e6","\\llbracket"),Br("\u27e7","\\rrbracket"),Br("\\lBrace","\\html@mathml{\\mathopen{\\{\\mkern-3.2mu[}}{\\mathopen{\\char`\u2983}}"),Br("\\rBrace","\\html@mathml{\\mathclose{]\\mkern-3.2mu\\}}}{\\mathclose{\\char`\u2984}}"),Br("\u2983","\\lBrace"),Br("\u2984","\\rBrace"),Br("\\minuso","\\mathbin{\\html@mathml{{\\mathrlap{\\mathchoice{\\kern{0.145em}}{\\kern{0.145em}}{\\kern{0.1015em}}{\\kern{0.0725em}}\\circ}{-}}}{\\char`\u29b5}}"),Br("\u29b5","\\minuso"),Br("\\darr","\\downarrow"),Br("\\dArr","\\Downarrow"),Br("\\Darr","\\Downarrow"),Br("\\lang","\\langle"),Br("\\rang","\\rangle"),Br("\\uarr","\\uparrow"),Br("\\uArr","\\Uparrow"),Br("\\Uarr","\\Uparrow"),Br("\\N","\\mathbb{N}"),Br("\\R","\\mathbb{R}"),Br("\\Z","\\mathbb{Z}"),Br("\\alef","\\aleph"),Br("\\alefsym","\\aleph"),Br("\\Alpha","\\mathrm{A}"),Br("\\Beta","\\mathrm{B}"),Br("\\bull","\\bullet"),Br("\\Chi","\\mathrm{X}"),Br("\\clubs","\\clubsuit"),Br("\\cnums","\\mathbb{C}"),Br("\\Complex","\\mathbb{C}"),Br("\\Dagger","\\ddagger"),Br("\\diamonds","\\diamondsuit"),Br("\\empty","\\emptyset"),Br("\\Epsilon","\\mathrm{E}"),Br("\\Eta","\\mathrm{H}"),Br("\\exist","\\exists"),Br("\\harr","\\leftrightarrow"),Br("\\hArr","\\Leftrightarrow"),Br("\\Harr","\\Leftrightarrow"),Br("\\hearts","\\heartsuit"),Br("\\image","\\Im"),Br("\\infin","\\infty"),Br("\\Iota","\\mathrm{I}"),Br("\\isin","\\in"),Br("\\Kappa","\\mathrm{K}"),Br("\\larr","\\leftarrow"),Br("\\lArr","\\Leftarrow"),Br("\\Larr","\\Leftarrow"),Br("\\lrarr","\\leftrightarrow"),Br("\\lrArr","\\Leftrightarrow"),Br("\\Lrarr","\\Leftrightarrow"),Br("\\Mu","\\mathrm{M}"),Br("\\natnums","\\mathbb{N}"),Br("\\Nu","\\mathrm{N}"),Br("\\Omicron","\\mathrm{O}"),Br("\\plusmn","\\pm"),Br("\\rarr","\\rightarrow"),Br("\\rArr","\\Rightarrow"),Br("\\Rarr","\\Rightarrow"),Br("\\real","\\Re"),Br("\\reals","\\mathbb{R}"),Br("\\Reals","\\mathbb{R}"),Br("\\Rho","\\mathrm{P}"),Br("\\sdot","\\cdot"),Br("\\sect","\\S"),Br("\\spades","\\spadesuit"),Br("\\sub","\\subset"),Br("\\sube","\\subseteq"),Br("\\supe","\\supseteq"),Br("\\Tau","\\mathrm{T}"),Br("\\thetasym","\\vartheta"),Br("\\weierp","\\wp"),Br("\\Zeta","\\mathrm{Z}"),Br("\\argmin","\\DOTSB\\operatorname*{arg\\,min}"),Br("\\argmax","\\DOTSB\\operatorname*{arg\\,max}"),Br("\\plim","\\DOTSB\\mathop{\\operatorname{plim}}\\limits"),Br("\\bra","\\mathinner{\\langle{#1}|}"),Br("\\ket","\\mathinner{|{#1}\\rangle}"),Br("\\braket","\\mathinner{\\langle{#1}\\rangle}"),Br("\\Bra","\\left\\langle#1\\right|"),Br("\\Ket","\\left|#1\\right\\rangle");const In=e=>t=>{const r=t.consumeArg().tokens,n=t.consumeArg().tokens,o=t.consumeArg().tokens,s=t.consumeArg().tokens,i=t.macros.get("|"),a=t.macros.get("\\|");t.macros.beginGroup();const l=t=>r=>{e&&(r.macros.set("|",i),o.length&&r.macros.set("\\|",a));let s=t;if(!t&&o.length){"|"===r.future().text&&(r.popToken(),s=!0)}return{tokens:s?o:n,numArgs:0}};t.macros.set("|",l(!1)),o.length&&t.macros.set("\\|",l(!0));const h=t.consumeArg().tokens,c=t.expandTokens([...s,...h,...r]);return t.macros.endGroup(),{tokens:c.reverse(),numArgs:0}};Br("\\bra@ket",In(!1)),Br("\\bra@set",In(!0)),Br("\\Braket","\\bra@ket{\\left\\langle}{\\,\\middle\\vert\\,}{\\,\\middle\\vert\\,}{\\right\\rangle}"),Br("\\Set","\\bra@set{\\left\\{\\:}{\\;\\middle\\vert\\;}{\\;\\middle\\Vert\\;}{\\:\\right\\}}"),Br("\\set","\\bra@set{\\{\\,}{\\mid}{}{\\,\\}}"),Br("\\angln","{\\angl n}"),Br("\\blue","\\textcolor{##6495ed}{#1}"),Br("\\orange","\\textcolor{##ffa500}{#1}"),Br("\\pink","\\textcolor{##ff00af}{#1}"),Br("\\red","\\textcolor{##df0030}{#1}"),Br("\\green","\\textcolor{##28ae7b}{#1}"),Br("\\gray","\\textcolor{gray}{#1}"),Br("\\purple","\\textcolor{##9d38bd}{#1}"),Br("\\blueA","\\textcolor{##ccfaff}{#1}"),Br("\\blueB","\\textcolor{##80f6ff}{#1}"),Br("\\blueC","\\textcolor{##63d9ea}{#1}"),Br("\\blueD","\\textcolor{##11accd}{#1}"),Br("\\blueE","\\textcolor{##0c7f99}{#1}"),Br("\\tealA","\\textcolor{##94fff5}{#1}"),Br("\\tealB","\\textcolor{##26edd5}{#1}"),Br("\\tealC","\\textcolor{##01d1c1}{#1}"),Br("\\tealD","\\textcolor{##01a995}{#1}"),Br("\\tealE","\\textcolor{##208170}{#1}"),Br("\\greenA","\\textcolor{##b6ffb0}{#1}"),Br("\\greenB","\\textcolor{##8af281}{#1}"),Br("\\greenC","\\textcolor{##74cf70}{#1}"),Br("\\greenD","\\textcolor{##1fab54}{#1}"),Br("\\greenE","\\textcolor{##0d923f}{#1}"),Br("\\goldA","\\textcolor{##ffd0a9}{#1}"),Br("\\goldB","\\textcolor{##ffbb71}{#1}"),Br("\\goldC","\\textcolor{##ff9c39}{#1}"),Br("\\goldD","\\textcolor{##e07d10}{#1}"),Br("\\goldE","\\textcolor{##a75a05}{#1}"),Br("\\redA","\\textcolor{##fca9a9}{#1}"),Br("\\redB","\\textcolor{##ff8482}{#1}"),Br("\\redC","\\textcolor{##f9685d}{#1}"),Br("\\redD","\\textcolor{##e84d39}{#1}"),Br("\\redE","\\textcolor{##bc2612}{#1}"),Br("\\maroonA","\\textcolor{##ffbde0}{#1}"),Br("\\maroonB","\\textcolor{##ff92c6}{#1}"),Br("\\maroonC","\\textcolor{##ed5fa6}{#1}"),Br("\\maroonD","\\textcolor{##ca337c}{#1}"),Br("\\maroonE","\\textcolor{##9e034e}{#1}"),Br("\\purpleA","\\textcolor{##ddd7ff}{#1}"),Br("\\purpleB","\\textcolor{##c6b9fc}{#1}"),Br("\\purpleC","\\textcolor{##aa87ff}{#1}"),Br("\\purpleD","\\textcolor{##7854ab}{#1}"),Br("\\purpleE","\\textcolor{##543b78}{#1}"),Br("\\mintA","\\textcolor{##f5f9e8}{#1}"),Br("\\mintB","\\textcolor{##edf2df}{#1}"),Br("\\mintC","\\textcolor{##e0e5cc}{#1}"),Br("\\grayA","\\textcolor{##f6f7f7}{#1}"),Br("\\grayB","\\textcolor{##f0f1f2}{#1}"),Br("\\grayC","\\textcolor{##e3e5e6}{#1}"),Br("\\grayD","\\textcolor{##d6d8da}{#1}"),Br("\\grayE","\\textcolor{##babec2}{#1}"),Br("\\grayF","\\textcolor{##888d93}{#1}"),Br("\\grayG","\\textcolor{##626569}{#1}"),Br("\\grayH","\\textcolor{##3b3e40}{#1}"),Br("\\grayI","\\textcolor{##21242c}{#1}"),Br("\\kaBlue","\\textcolor{##314453}{#1}"),Br("\\kaGreen","\\textcolor{##71B307}{#1}");const Rn={"^":!0,_:!0,"\\limits":!0,"\\nolimits":!0};class Hn{constructor(e,t,r){this.settings=void 0,this.expansionCount=void 0,this.lexer=void 0,this.macros=void 0,this.stack=void 0,this.mode=void 0,this.settings=t,this.expansionCount=0,this.feed(e),this.macros=new zn(An,t.macros),this.mode=r,this.stack=[]}feed(e){this.lexer=new Mn(e,this.settings)}switchMode(e){this.mode=e}beginGroup(){this.macros.beginGroup()}endGroup(){this.macros.endGroup()}endGroups(){this.macros.endGroups()}future(){return 0===this.stack.length&&this.pushToken(this.lexer.lex()),this.stack[this.stack.length-1]}popToken(){return this.future(),this.stack.pop()}pushToken(e){this.stack.push(e)}pushTokens(e){this.stack.push(...e)}scanArgument(e){let t,r,n;if(e){if(this.consumeSpaces(),"["!==this.future().text)return null;t=this.popToken(),({tokens:n,end:r}=this.consumeArg(["]"]))}else({tokens:n,start:t,end:r}=this.consumeArg());return this.pushToken(new Nr("EOF",r.loc)),this.pushTokens(n),t.range(r,"")}consumeSpaces(){for(;;){if(" "!==this.future().text)break;this.stack.pop()}}consumeArg(e){const t=[],r=e&&e.length>0;r||this.consumeSpaces();const o=this.future();let s,i=0,a=0;do{if(s=this.popToken(),t.push(s),"{"===s.text)++i;else if("}"===s.text){if(--i,-1===i)throw new n("Extra }",s)}else if("EOF"===s.text)throw new n("Unexpected end of input in a macro argument, expected '"+(e&&r?e[a]:"}")+"'",s);if(e&&r)if((0===i||1===i&&"{"===e[a])&&s.text===e[a]){if(++a,a===e.length){t.splice(-a,a);break}}else a=0}while(0!==i||r);return"{"===o.text&&"}"===t[t.length-1].text&&(t.pop(),t.shift()),t.reverse(),{tokens:t,start:o,end:s}}consumeArgs(e,t){if(t){if(t.length!==e+1)throw new n("The length of delimiters doesn't match the number of args!");const r=t[0];for(let e=0;ethis.settings.maxExpand)throw new n("Too many expansions: infinite loop or need to increase maxExpand setting")}expandOnce(e){const t=this.popToken(),r=t.text,o=t.noexpand?null:this._getExpansion(r);if(null==o||e&&o.unexpandable){if(e&&null==o&&"\\"===r[0]&&!this.isDefined(r))throw new n("Undefined control sequence: "+r);return this.pushToken(t),!1}this.countExpansion(1);let s=o.tokens;const i=this.consumeArgs(o.numArgs,o.delimiters);if(o.numArgs){s=s.slice();for(let e=s.length-1;e>=0;--e){let t=s[e];if("#"===t.text){if(0===e)throw new n("Incomplete placeholder at end of macro body",t);if(t=s[--e],"#"===t.text)s.splice(e+1,1);else{if(!/^[1-9]$/.test(t.text))throw new n("Not a valid argument number",t);s.splice(e,2,...i[+t.text-1])}}}}return this.pushTokens(s),s.length}expandAfterFuture(){return this.expandOnce(),this.future()}expandNextToken(){for(;;)if(!1===this.expandOnce()){const e=this.stack.pop();return e.treatAsRelax&&(e.text="\\relax"),e}throw new Error}expandMacro(e){return this.macros.has(e)?this.expandTokens([new Nr(e)]):void 0}expandTokens(e){const t=[],r=this.stack.length;for(this.pushTokens(e);this.stack.length>r;)if(!1===this.expandOnce(!0)){const e=this.stack.pop();e.treatAsRelax&&(e.noexpand=!1,e.treatAsRelax=!1),t.push(e)}return this.countExpansion(t.length),t}expandMacroAsText(e){const t=this.expandMacro(e);return t?t.map((e=>e.text)).join(""):t}_getExpansion(e){const t=this.macros.get(e);if(null==t)return t;if(1===e.length){const t=this.lexer.catcodes[e];if(null!=t&&13!==t)return}const r="function"==typeof t?t(this):t;if("string"==typeof r){let e=0;if(-1!==r.indexOf("#")){const t=r.replace(/##/g,"");for(;-1!==t.indexOf("#"+(e+1));)++e}const t=new Mn(r,this.settings),n=[];let o=t.lex();for(;"EOF"!==o.text;)n.push(o),o=t.lex();n.reverse();return{tokens:n,numArgs:e}}return r}isDefined(e){return this.macros.has(e)||yn.hasOwnProperty(e)||oe.math.hasOwnProperty(e)||oe.text.hasOwnProperty(e)||Rn.hasOwnProperty(e)}isExpandable(e){const t=this.macros.get(e);return null!=t?"string"==typeof t||"function"==typeof t||!t.unexpandable:yn.hasOwnProperty(e)&&!yn[e].primitive}}const On=/^[\u208a\u208b\u208c\u208d\u208e\u2080\u2081\u2082\u2083\u2084\u2085\u2086\u2087\u2088\u2089\u2090\u2091\u2095\u1d62\u2c7c\u2096\u2097\u2098\u2099\u2092\u209a\u1d63\u209b\u209c\u1d64\u1d65\u2093\u1d66\u1d67\u1d68\u1d69\u1d6a]/,En=Object.freeze({"\u208a":"+","\u208b":"-","\u208c":"=","\u208d":"(","\u208e":")","\u2080":"0","\u2081":"1","\u2082":"2","\u2083":"3","\u2084":"4","\u2085":"5","\u2086":"6","\u2087":"7","\u2088":"8","\u2089":"9","\u2090":"a","\u2091":"e","\u2095":"h","\u1d62":"i","\u2c7c":"j","\u2096":"k","\u2097":"l","\u2098":"m","\u2099":"n","\u2092":"o","\u209a":"p","\u1d63":"r","\u209b":"s","\u209c":"t","\u1d64":"u","\u1d65":"v","\u2093":"x","\u1d66":"\u03b2","\u1d67":"\u03b3","\u1d68":"\u03c1","\u1d69":"\u03d5","\u1d6a":"\u03c7","\u207a":"+","\u207b":"-","\u207c":"=","\u207d":"(","\u207e":")","\u2070":"0","\xb9":"1","\xb2":"2","\xb3":"3","\u2074":"4","\u2075":"5","\u2076":"6","\u2077":"7","\u2078":"8","\u2079":"9","\u1d2c":"A","\u1d2e":"B","\u1d30":"D","\u1d31":"E","\u1d33":"G","\u1d34":"H","\u1d35":"I","\u1d36":"J","\u1d37":"K","\u1d38":"L","\u1d39":"M","\u1d3a":"N","\u1d3c":"O","\u1d3e":"P","\u1d3f":"R","\u1d40":"T","\u1d41":"U","\u2c7d":"V","\u1d42":"W","\u1d43":"a","\u1d47":"b","\u1d9c":"c","\u1d48":"d","\u1d49":"e","\u1da0":"f","\u1d4d":"g","\u02b0":"h","\u2071":"i","\u02b2":"j","\u1d4f":"k","\u02e1":"l","\u1d50":"m","\u207f":"n","\u1d52":"o","\u1d56":"p","\u02b3":"r","\u02e2":"s","\u1d57":"t","\u1d58":"u","\u1d5b":"v","\u02b7":"w","\u02e3":"x","\u02b8":"y","\u1dbb":"z","\u1d5d":"\u03b2","\u1d5e":"\u03b3","\u1d5f":"\u03b4","\u1d60":"\u03d5","\u1d61":"\u03c7","\u1dbf":"\u03b8"}),Ln={"\u0301":{text:"\\'",math:"\\acute"},"\u0300":{text:"\\`",math:"\\grave"},"\u0308":{text:'\\"',math:"\\ddot"},"\u0303":{text:"\\~",math:"\\tilde"},"\u0304":{text:"\\=",math:"\\bar"},"\u0306":{text:"\\u",math:"\\breve"},"\u030c":{text:"\\v",math:"\\check"},"\u0302":{text:"\\^",math:"\\hat"},"\u0307":{text:"\\.",math:"\\dot"},"\u030a":{text:"\\r",math:"\\mathring"},"\u030b":{text:"\\H"},"\u0327":{text:"\\c"}},Dn={"\xe1":"a\u0301","\xe0":"a\u0300","\xe4":"a\u0308","\u01df":"a\u0308\u0304","\xe3":"a\u0303","\u0101":"a\u0304","\u0103":"a\u0306","\u1eaf":"a\u0306\u0301","\u1eb1":"a\u0306\u0300","\u1eb5":"a\u0306\u0303","\u01ce":"a\u030c","\xe2":"a\u0302","\u1ea5":"a\u0302\u0301","\u1ea7":"a\u0302\u0300","\u1eab":"a\u0302\u0303","\u0227":"a\u0307","\u01e1":"a\u0307\u0304","\xe5":"a\u030a","\u01fb":"a\u030a\u0301","\u1e03":"b\u0307","\u0107":"c\u0301","\u1e09":"c\u0327\u0301","\u010d":"c\u030c","\u0109":"c\u0302","\u010b":"c\u0307","\xe7":"c\u0327","\u010f":"d\u030c","\u1e0b":"d\u0307","\u1e11":"d\u0327","\xe9":"e\u0301","\xe8":"e\u0300","\xeb":"e\u0308","\u1ebd":"e\u0303","\u0113":"e\u0304","\u1e17":"e\u0304\u0301","\u1e15":"e\u0304\u0300","\u0115":"e\u0306","\u1e1d":"e\u0327\u0306","\u011b":"e\u030c","\xea":"e\u0302","\u1ebf":"e\u0302\u0301","\u1ec1":"e\u0302\u0300","\u1ec5":"e\u0302\u0303","\u0117":"e\u0307","\u0229":"e\u0327","\u1e1f":"f\u0307","\u01f5":"g\u0301","\u1e21":"g\u0304","\u011f":"g\u0306","\u01e7":"g\u030c","\u011d":"g\u0302","\u0121":"g\u0307","\u0123":"g\u0327","\u1e27":"h\u0308","\u021f":"h\u030c","\u0125":"h\u0302","\u1e23":"h\u0307","\u1e29":"h\u0327","\xed":"i\u0301","\xec":"i\u0300","\xef":"i\u0308","\u1e2f":"i\u0308\u0301","\u0129":"i\u0303","\u012b":"i\u0304","\u012d":"i\u0306","\u01d0":"i\u030c","\xee":"i\u0302","\u01f0":"j\u030c","\u0135":"j\u0302","\u1e31":"k\u0301","\u01e9":"k\u030c","\u0137":"k\u0327","\u013a":"l\u0301","\u013e":"l\u030c","\u013c":"l\u0327","\u1e3f":"m\u0301","\u1e41":"m\u0307","\u0144":"n\u0301","\u01f9":"n\u0300","\xf1":"n\u0303","\u0148":"n\u030c","\u1e45":"n\u0307","\u0146":"n\u0327","\xf3":"o\u0301","\xf2":"o\u0300","\xf6":"o\u0308","\u022b":"o\u0308\u0304","\xf5":"o\u0303","\u1e4d":"o\u0303\u0301","\u1e4f":"o\u0303\u0308","\u022d":"o\u0303\u0304","\u014d":"o\u0304","\u1e53":"o\u0304\u0301","\u1e51":"o\u0304\u0300","\u014f":"o\u0306","\u01d2":"o\u030c","\xf4":"o\u0302","\u1ed1":"o\u0302\u0301","\u1ed3":"o\u0302\u0300","\u1ed7":"o\u0302\u0303","\u022f":"o\u0307","\u0231":"o\u0307\u0304","\u0151":"o\u030b","\u1e55":"p\u0301","\u1e57":"p\u0307","\u0155":"r\u0301","\u0159":"r\u030c","\u1e59":"r\u0307","\u0157":"r\u0327","\u015b":"s\u0301","\u1e65":"s\u0301\u0307","\u0161":"s\u030c","\u1e67":"s\u030c\u0307","\u015d":"s\u0302","\u1e61":"s\u0307","\u015f":"s\u0327","\u1e97":"t\u0308","\u0165":"t\u030c","\u1e6b":"t\u0307","\u0163":"t\u0327","\xfa":"u\u0301","\xf9":"u\u0300","\xfc":"u\u0308","\u01d8":"u\u0308\u0301","\u01dc":"u\u0308\u0300","\u01d6":"u\u0308\u0304","\u01da":"u\u0308\u030c","\u0169":"u\u0303","\u1e79":"u\u0303\u0301","\u016b":"u\u0304","\u1e7b":"u\u0304\u0308","\u016d":"u\u0306","\u01d4":"u\u030c","\xfb":"u\u0302","\u016f":"u\u030a","\u0171":"u\u030b","\u1e7d":"v\u0303","\u1e83":"w\u0301","\u1e81":"w\u0300","\u1e85":"w\u0308","\u0175":"w\u0302","\u1e87":"w\u0307","\u1e98":"w\u030a","\u1e8d":"x\u0308","\u1e8b":"x\u0307","\xfd":"y\u0301","\u1ef3":"y\u0300","\xff":"y\u0308","\u1ef9":"y\u0303","\u0233":"y\u0304","\u0177":"y\u0302","\u1e8f":"y\u0307","\u1e99":"y\u030a","\u017a":"z\u0301","\u017e":"z\u030c","\u1e91":"z\u0302","\u017c":"z\u0307","\xc1":"A\u0301","\xc0":"A\u0300","\xc4":"A\u0308","\u01de":"A\u0308\u0304","\xc3":"A\u0303","\u0100":"A\u0304","\u0102":"A\u0306","\u1eae":"A\u0306\u0301","\u1eb0":"A\u0306\u0300","\u1eb4":"A\u0306\u0303","\u01cd":"A\u030c","\xc2":"A\u0302","\u1ea4":"A\u0302\u0301","\u1ea6":"A\u0302\u0300","\u1eaa":"A\u0302\u0303","\u0226":"A\u0307","\u01e0":"A\u0307\u0304","\xc5":"A\u030a","\u01fa":"A\u030a\u0301","\u1e02":"B\u0307","\u0106":"C\u0301","\u1e08":"C\u0327\u0301","\u010c":"C\u030c","\u0108":"C\u0302","\u010a":"C\u0307","\xc7":"C\u0327","\u010e":"D\u030c","\u1e0a":"D\u0307","\u1e10":"D\u0327","\xc9":"E\u0301","\xc8":"E\u0300","\xcb":"E\u0308","\u1ebc":"E\u0303","\u0112":"E\u0304","\u1e16":"E\u0304\u0301","\u1e14":"E\u0304\u0300","\u0114":"E\u0306","\u1e1c":"E\u0327\u0306","\u011a":"E\u030c","\xca":"E\u0302","\u1ebe":"E\u0302\u0301","\u1ec0":"E\u0302\u0300","\u1ec4":"E\u0302\u0303","\u0116":"E\u0307","\u0228":"E\u0327","\u1e1e":"F\u0307","\u01f4":"G\u0301","\u1e20":"G\u0304","\u011e":"G\u0306","\u01e6":"G\u030c","\u011c":"G\u0302","\u0120":"G\u0307","\u0122":"G\u0327","\u1e26":"H\u0308","\u021e":"H\u030c","\u0124":"H\u0302","\u1e22":"H\u0307","\u1e28":"H\u0327","\xcd":"I\u0301","\xcc":"I\u0300","\xcf":"I\u0308","\u1e2e":"I\u0308\u0301","\u0128":"I\u0303","\u012a":"I\u0304","\u012c":"I\u0306","\u01cf":"I\u030c","\xce":"I\u0302","\u0130":"I\u0307","\u0134":"J\u0302","\u1e30":"K\u0301","\u01e8":"K\u030c","\u0136":"K\u0327","\u0139":"L\u0301","\u013d":"L\u030c","\u013b":"L\u0327","\u1e3e":"M\u0301","\u1e40":"M\u0307","\u0143":"N\u0301","\u01f8":"N\u0300","\xd1":"N\u0303","\u0147":"N\u030c","\u1e44":"N\u0307","\u0145":"N\u0327","\xd3":"O\u0301","\xd2":"O\u0300","\xd6":"O\u0308","\u022a":"O\u0308\u0304","\xd5":"O\u0303","\u1e4c":"O\u0303\u0301","\u1e4e":"O\u0303\u0308","\u022c":"O\u0303\u0304","\u014c":"O\u0304","\u1e52":"O\u0304\u0301","\u1e50":"O\u0304\u0300","\u014e":"O\u0306","\u01d1":"O\u030c","\xd4":"O\u0302","\u1ed0":"O\u0302\u0301","\u1ed2":"O\u0302\u0300","\u1ed6":"O\u0302\u0303","\u022e":"O\u0307","\u0230":"O\u0307\u0304","\u0150":"O\u030b","\u1e54":"P\u0301","\u1e56":"P\u0307","\u0154":"R\u0301","\u0158":"R\u030c","\u1e58":"R\u0307","\u0156":"R\u0327","\u015a":"S\u0301","\u1e64":"S\u0301\u0307","\u0160":"S\u030c","\u1e66":"S\u030c\u0307","\u015c":"S\u0302","\u1e60":"S\u0307","\u015e":"S\u0327","\u0164":"T\u030c","\u1e6a":"T\u0307","\u0162":"T\u0327","\xda":"U\u0301","\xd9":"U\u0300","\xdc":"U\u0308","\u01d7":"U\u0308\u0301","\u01db":"U\u0308\u0300","\u01d5":"U\u0308\u0304","\u01d9":"U\u0308\u030c","\u0168":"U\u0303","\u1e78":"U\u0303\u0301","\u016a":"U\u0304","\u1e7a":"U\u0304\u0308","\u016c":"U\u0306","\u01d3":"U\u030c","\xdb":"U\u0302","\u016e":"U\u030a","\u0170":"U\u030b","\u1e7c":"V\u0303","\u1e82":"W\u0301","\u1e80":"W\u0300","\u1e84":"W\u0308","\u0174":"W\u0302","\u1e86":"W\u0307","\u1e8c":"X\u0308","\u1e8a":"X\u0307","\xdd":"Y\u0301","\u1ef2":"Y\u0300","\u0178":"Y\u0308","\u1ef8":"Y\u0303","\u0232":"Y\u0304","\u0176":"Y\u0302","\u1e8e":"Y\u0307","\u0179":"Z\u0301","\u017d":"Z\u030c","\u1e90":"Z\u0302","\u017b":"Z\u0307","\u03ac":"\u03b1\u0301","\u1f70":"\u03b1\u0300","\u1fb1":"\u03b1\u0304","\u1fb0":"\u03b1\u0306","\u03ad":"\u03b5\u0301","\u1f72":"\u03b5\u0300","\u03ae":"\u03b7\u0301","\u1f74":"\u03b7\u0300","\u03af":"\u03b9\u0301","\u1f76":"\u03b9\u0300","\u03ca":"\u03b9\u0308","\u0390":"\u03b9\u0308\u0301","\u1fd2":"\u03b9\u0308\u0300","\u1fd1":"\u03b9\u0304","\u1fd0":"\u03b9\u0306","\u03cc":"\u03bf\u0301","\u1f78":"\u03bf\u0300","\u03cd":"\u03c5\u0301","\u1f7a":"\u03c5\u0300","\u03cb":"\u03c5\u0308","\u03b0":"\u03c5\u0308\u0301","\u1fe2":"\u03c5\u0308\u0300","\u1fe1":"\u03c5\u0304","\u1fe0":"\u03c5\u0306","\u03ce":"\u03c9\u0301","\u1f7c":"\u03c9\u0300","\u038e":"\u03a5\u0301","\u1fea":"\u03a5\u0300","\u03ab":"\u03a5\u0308","\u1fe9":"\u03a5\u0304","\u1fe8":"\u03a5\u0306","\u038f":"\u03a9\u0301","\u1ffa":"\u03a9\u0300"};class Vn{constructor(e,t){this.mode=void 0,this.gullet=void 0,this.settings=void 0,this.leftrightDepth=void 0,this.nextToken=void 0,this.mode="math",this.gullet=new Hn(e,t,this.mode),this.settings=t,this.leftrightDepth=0}expect(e,t){if(void 0===t&&(t=!0),this.fetch().text!==e)throw new n("Expected '"+e+"', got '"+this.fetch().text+"'",this.fetch());t&&this.consume()}consume(){this.nextToken=null}fetch(){return null==this.nextToken&&(this.nextToken=this.gullet.expandNextToken()),this.nextToken}switchMode(e){this.mode=e,this.gullet.switchMode(e)}parse(){this.settings.globalGroup||this.gullet.beginGroup(),this.settings.colorIsTextColor&&this.gullet.macros.set("\\color","\\textcolor");try{const e=this.parseExpression(!1);return this.expect("EOF"),this.settings.globalGroup||this.gullet.endGroup(),e}finally{this.gullet.endGroups()}}subparse(e){const t=this.nextToken;this.consume(),this.gullet.pushToken(new Nr("}")),this.gullet.pushTokens(e);const r=this.parseExpression(!1);return this.expect("}"),this.nextToken=t,r}parseExpression(e,t){const r=[];for(;;){"math"===this.mode&&this.consumeSpaces();const n=this.fetch();if(-1!==Vn.endOfExpression.indexOf(n.text))break;if(t&&n.text===t)break;if(e&&yn[n.text]&&yn[n.text].infix)break;const o=this.parseAtom(t);if(!o)break;"internal"!==o.type&&r.push(o)}return"text"===this.mode&&this.formLigatures(r),this.handleInfixNodes(r)}handleInfixNodes(e){let t,r=-1;for(let o=0;o=0&&this.settings.reportNonstrict("unicodeTextInMathMode",'Latin-1/Unicode text character "'+t[0]+'" used in math mode',e);const r=oe[this.mode][t].group,n=Cr.range(e);let s;if(te.hasOwnProperty(r)){const e=r;s={type:"atom",mode:this.mode,family:e,loc:n,text:t}}else s={type:r,mode:this.mode,loc:n,text:t};o=s}else{if(!(t.charCodeAt(0)>=128))return null;this.settings.strict&&(S(t.charCodeAt(0))?"math"===this.mode&&this.settings.reportNonstrict("unicodeTextInMathMode",'Unicode text character "'+t[0]+'" used in math mode',e):this.settings.reportNonstrict("unknownSymbol",'Unrecognized Unicode character "'+t[0]+'" ('+t.charCodeAt(0)+")",e)),o={type:"textord",mode:"text",loc:Cr.range(e),text:t}}if(this.consume(),r)for(let t=0;t%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i,c=/^(?:(?:http[s\u017F]?|ftp):\/\/)(?:(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+(?::(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?@)?(?:(?!10(?:\.[0-9]{1,3}){3})(?!127(?:\.[0-9]{1,3}){3})(?!169\.254(?:\.[0-9]{1,3}){2})(?!192\.168(?:\.[0-9]{1,3}){2})(?!172\.(?:1[6-9]|2[0-9]|3[01])(?:\.[0-9]{1,3}){2})(?:[1-9][0-9]?|1[0-9][0-9]|2[01][0-9]|22[0-3])(?:\.(?:1?[0-9]{1,2}|2[0-4][0-9]|25[0-5])){2}(?:\.(?:[1-9][0-9]?|1[0-9][0-9]|2[0-4][0-9]|25[0-4]))|(?:(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)(?:\.(?:(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+-?)*(?:[0-9KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])+)*(?:\.(?:(?:[KSa-z\xA1-\uD7FF\uE000-\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]){2,})))(?::[0-9]{2,5})?(?:\/(?:[\0-\x08\x0E-\x1F!-\x9F\xA1-\u167F\u1681-\u1FFF\u200B-\u2027\u202A-\u202E\u2030-\u205E\u2060-\u2FFF\u3001-\uD7FF\uE000-\uFEFE\uFF00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF])*)?$/i,h=/^(?:urn:uuid:)?[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$/i,d=/^(?:\/(?:[^~/]|~0|~1)*)*$/,f=/^#(?:\/(?:[a-z0-9_\-.!$&'()*+,;:=@]|%[0-9a-f]{2}|~0|~1)*)*$/i,p=/^(?:0|[1-9][0-9]*)(?:#|(?:\/(?:[^~/]|~0|~1)*)*)$/;function m(e){return a.copy(m[e="full"==e?"full":"fast"])}function v(e){var r=e.match(o);if(!r)return!1;var t,a=+r[2],s=+r[3];return 1<=a&&a<=12&&1<=s&&s<=(2!=a||((t=+r[1])%4!=0||t%100==0&&t%400!=0)?i[a]:29)}function g(e,r){var t=e.match(n);if(!t)return!1;var a=t[1],s=t[2],o=t[3];return(a<=23&&s<=59&&o<=59||23==a&&59==s&&60==o)&&(!r||t[5])}(r.exports=m).fast={date:/^\d\d\d\d-[0-1]\d-[0-3]\d$/,time:/^(?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)?$/i,"date-time":/^\d\d\d\d-[0-1]\d-[0-3]\d[t\s](?:[0-2]\d:[0-5]\d:[0-5]\d|23:59:60)(?:\.\d+)?(?:z|[+-]\d\d:\d\d)$/i,uri:/^(?:[a-z][a-z0-9+-.]*:)(?:\/?\/)?[^\s]*$/i,"uri-reference":/^(?:(?:[a-z][a-z0-9+-.]*:)?\/?\/)?(?:[^\\\s#][^\s#]*)?(?:#[^\\\s]*)?$/i,"uri-template":u,url:c,email:/^[a-z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?(?:\.[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?)*$/i,hostname:s,ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:w,uuid:h,"json-pointer":d,"json-pointer-uri-fragment":f,"relative-json-pointer":p},m.full={date:v,time:g,"date-time":function(e){var r=e.split(y);return 2==r.length&&v(r[0])&&g(r[1],!0)},uri:function(e){return P.test(e)&&l.test(e)},"uri-reference":/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,"uri-template":u,url:c,email:/^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&''*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,hostname:function(e){return e.length<=255&&s.test(e)},ipv4:/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,ipv6:/^\s*(?:(?:(?:[0-9a-f]{1,4}:){7}(?:[0-9a-f]{1,4}|:))|(?:(?:[0-9a-f]{1,4}:){6}(?::[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){5}(?:(?:(?::[0-9a-f]{1,4}){1,2})|:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(?:(?:[0-9a-f]{1,4}:){4}(?:(?:(?::[0-9a-f]{1,4}){1,3})|(?:(?::[0-9a-f]{1,4})?:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){3}(?:(?:(?::[0-9a-f]{1,4}){1,4})|(?:(?::[0-9a-f]{1,4}){0,2}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){2}(?:(?:(?::[0-9a-f]{1,4}){1,5})|(?:(?::[0-9a-f]{1,4}){0,3}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?:(?:[0-9a-f]{1,4}:){1}(?:(?:(?::[0-9a-f]{1,4}){1,6})|(?:(?::[0-9a-f]{1,4}){0,4}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(?::(?:(?:(?::[0-9a-f]{1,4}){1,7})|(?:(?::[0-9a-f]{1,4}){0,5}:(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(?:\.(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(?:%.+)?\s*$/i,regex:w,uuid:h,"json-pointer":d,"json-pointer-uri-fragment":f,"relative-json-pointer":p};var y=/t|\s/i;var P=/\/|:/;var E=/[^\\]\\Z/;function w(e){if(E.test(e))return!1;try{return new RegExp(e),!0}catch(e){return!1}}},{"./util":10}],5:[function(e,r,t){"use strict";var $=e("./resolve"),D=e("./util"),j=e("./error_classes"),l=e("fast-json-stable-stringify"),I=e("../dotjs/validate"),O=D.ucs2length,A=e("fast-deep-equal"),C=j.Validation;function k(e,r,t){for(var a=0;a",y=f?">":"<",P=void 0;if(v){var E=e.util.getData(m.$data,i,e.dataPathArr),w="exclusive"+o,S="exclType"+o,b="exclIsNumber"+o,_="' + "+(R="op"+o)+" + '";s+=" var schemaExcl"+o+" = "+E+"; ";var F;P=p;(F=F||[]).push(s+=" var "+w+"; var "+S+" = typeof "+(E="schemaExcl"+o)+"; if ("+S+" != 'boolean' && "+S+" != 'undefined' && "+S+" != 'number') { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(P||"_exclusiveLimit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: {} ",!1!==e.opts.messages&&(s+=" , message: '"+p+" should be boolean' "),e.opts.verbose&&(s+=" , schema: validate.schema"+l+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var x=s;s=F.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+x+"]); ":" validate.errors = ["+x+"]; return false; ":" var err = "+x+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+=" } else if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=" "+S+" == 'number' ? ( ("+w+" = "+a+" === undefined || "+E+" "+g+"= "+a+") ? "+h+" "+y+"= "+E+" : "+h+" "+y+" "+a+" ) : ( ("+w+" = "+E+" === true) ? "+h+" "+y+"= "+a+" : "+h+" "+y+" "+a+" ) || "+h+" !== "+h+") { var op"+o+" = "+w+" ? '"+g+"' : '"+g+"='; ",void 0===n&&(u=e.errSchemaPath+"/"+(P=p),a=E,d=v)}else{_=g;if((b="number"==typeof m)&&d){var R="'"+_+"'";s+=" if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=" ( "+a+" === undefined || "+m+" "+g+"= "+a+" ? "+h+" "+y+"= "+m+" : "+h+" "+y+" "+a+" ) || "+h+" !== "+h+") { "}else{b&&void 0===n?(w=!0,u=e.errSchemaPath+"/"+(P=p),a=m,y+="="):(b&&(a=Math[f?"min":"max"](m,n)),m===(!b||a)?(w=!0,u=e.errSchemaPath+"/"+(P=p),y+="="):(w=!1,_+="="));R="'"+_+"'";s+=" if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=" "+h+" "+y+" "+a+" || "+h+" !== "+h+") { "}}P=P||r,(F=F||[]).push(s),s="",!1!==e.createErrors?(s+=" { keyword: '"+(P||"_limit")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { comparison: "+R+", limit: "+a+", exclusive: "+w+" } ",!1!==e.opts.messages&&(s+=" , message: 'should be "+_+" ",s+=d?"' + "+a:a+"'"),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";x=s;return s=F.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+x+"]); ":" validate.errors = ["+x+"]; return false; ":" var err = "+x+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+=" } ",c&&(s+=" else { "),s}},{}],13:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || ");var f=r,p=p||[];p.push(s+=" "+h+".length "+("maxItems"==r?">":"<")+" "+a+") { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(f||"_limitItems")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT have ",s+="maxItems"==r?"more":"less",s+=" than ",s+=d?"' + "+a+" + '":""+n,s+=" items' "),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var m=s;return s=p.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],14:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || "),s+=!1===e.opts.unicode?" "+h+".length ":" ucs2length("+h+") ";var f=r,p=p||[];p.push(s+=" "+("maxLength"==r?">":"<")+" "+a+") { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(f||"_limitLength")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT be ",s+="maxLength"==r?"longer":"shorter",s+=" than ",s+=d?"' + "+a+" + '":""+n,s+=" characters' "),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var m=s;return s=p.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],15:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="if ( ",d&&(s+=" ("+a+" !== undefined && typeof "+a+" != 'number') || ");var f=r,p=p||[];p.push(s+=" Object.keys("+h+").length "+("maxProperties"==r?">":"<")+" "+a+") { "),s="",!1!==e.createErrors?(s+=" { keyword: '"+(f||"_limitProperties")+"' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { limit: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT have ",s+="maxProperties"==r?"more":"less",s+=" than ",s+=d?"' + "+a+" + '":""+n,s+=" properties' "),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var m=s;return s=p.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],16:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a=" ",s=e.schema[r],o=e.schemaPath+e.util.getProperty(r),i=e.errSchemaPath+"/"+r,n=!e.opts.allErrors,l=e.util.copy(e),u="";l.level++;var c="valid"+l.level,h=l.baseId,d=!0,f=s;if(f)for(var p,m=-1,v=f.length-1;m "+x+") { ";var $=c+"["+x+"]";f.schema=F,f.schemaPath=n+"["+x+"]",f.errSchemaPath=l+"/"+x,f.errorPath=e.util.getPathExpr(e.errorPath,x,e.opts.jsonPointers,!0),f.dataPathArr[g]=x;var D=e.validate(f);f.baseId=P,e.util.varOccurences(D,y)<2?a+=" "+e.util.varReplace(D,y,$)+" ":a+=" var "+y+" = "+$+"; "+D+" ",a+=" } ",u&&(a+=" if ("+m+") { ",p+="}")}if("object"==typeof E&&e.util.schemaHasRules(E,e.RULES.all)){f.schema=E,f.schemaPath=e.schemaPath+".additionalItems",f.errSchemaPath=e.errSchemaPath+"/additionalItems",a+=" "+m+" = true; if ("+c+".length > "+i.length+") { for (var "+v+" = "+i.length+"; "+v+" < "+c+".length; "+v+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,!0);$=c+"["+v+"]";f.dataPathArr[g]=v;D=e.validate(f);f.baseId=P,e.util.varOccurences(D,y)<2?a+=" "+e.util.varReplace(D,y,$)+" ":a+=" var "+y+" = "+$+"; "+D+" ",u&&(a+=" if (!"+m+") break; "),a+=" } } ",u&&(a+=" if ("+m+") { ",p+="}")}}else if(e.util.schemaHasRules(i,e.RULES.all)){f.schema=i,f.schemaPath=n,f.errSchemaPath=l,a+=" for (var "+v+" = 0; "+v+" < "+c+".length; "+v+"++) { ",f.errorPath=e.util.getPathExpr(e.errorPath,v,e.opts.jsonPointers,!0);$=c+"["+v+"]";f.dataPathArr[g]=v;D=e.validate(f);f.baseId=P,e.util.varOccurences(D,y)<2?a+=" "+e.util.varReplace(D,y,$)+" ":a+=" var "+y+" = "+$+"; "+D+" ",u&&(a+=" if (!"+m+") break; "),a+=" }"}return u&&(a+=" "+p+" if ("+d+" == errors) {"),a=e.util.cleanUpCode(a)}},{}],28:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a,s=" ",o=e.level,i=e.dataLevel,n=e.schema[r],l=e.schemaPath+e.util.getProperty(r),u=e.errSchemaPath+"/"+r,c=!e.opts.allErrors,h="data"+(i||""),d=e.opts.$data&&n&&n.$data;d?(s+=" var schema"+o+" = "+e.util.getData(n.$data,i,e.dataPathArr)+"; ",a="schema"+o):a=n,s+="var division"+o+";if (",d&&(s+=" "+a+" !== undefined && ( typeof "+a+" != 'number' || "),s+=" (division"+o+" = "+h+" / "+a+", ",s+=e.opts.multipleOfPrecision?" Math.abs(Math.round(division"+o+") - division"+o+") > 1e-"+e.opts.multipleOfPrecision+" ":" division"+o+" !== parseInt(division"+o+") ",s+=" ) ",d&&(s+=" ) ");var f=f||[];f.push(s+=" ) { "),s="",!1!==e.createErrors?(s+=" { keyword: 'multipleOf' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { multipleOf: "+a+" } ",!1!==e.opts.messages&&(s+=" , message: 'should be multiple of ",s+=d?"' + "+a:a+"'"),e.opts.verbose&&(s+=" , schema: ",s+=d?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var p=s;return s=f.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+p+"]); ":" validate.errors = ["+p+"]; return false; ":" var err = "+p+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+="} ",c&&(s+=" else { "),s}},{}],29:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a=" ",s=e.level,o=e.dataLevel,i=e.schema[r],n=e.schemaPath+e.util.getProperty(r),l=e.errSchemaPath+"/"+r,u=!e.opts.allErrors,c="data"+(o||""),h="errs__"+s,d=e.util.copy(e);d.level++;var f="valid"+d.level;if(e.util.schemaHasRules(i,e.RULES.all)){d.schema=i,d.schemaPath=n,d.errSchemaPath=l,a+=" var "+h+" = errors; ";var p,m=e.compositeRule;e.compositeRule=d.compositeRule=!0,d.createErrors=!1,d.opts.allErrors&&(p=d.opts.allErrors,d.opts.allErrors=!1),a+=" "+e.validate(d)+" ",d.createErrors=!0,p&&(d.opts.allErrors=p),e.compositeRule=d.compositeRule=m;var v=v||[];v.push(a+=" if ("+f+") { "),a="",!1!==e.createErrors?(a+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(a+=" , message: 'should NOT be valid' "),e.opts.verbose&&(a+=" , schema: validate.schema"+n+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ";var g=a;a=v.pop(),a+=!e.compositeRule&&u?e.async?" throw new ValidationError(["+g+"]); ":" validate.errors = ["+g+"]; return false; ":" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",a+=" } else { errors = "+h+"; if (vErrors !== null) { if ("+h+") vErrors.length = "+h+"; else vErrors = null; } ",e.opts.allErrors&&(a+=" } ")}else a+=" var err = ",!1!==e.createErrors?(a+=" { keyword: 'not' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(l)+" , params: {} ",!1!==e.opts.messages&&(a+=" , message: 'should NOT be valid' "),e.opts.verbose&&(a+=" , schema: validate.schema"+n+" , parentSchema: validate.schema"+e.schemaPath+" , data: "+c+" "),a+=" } "):a+=" {} ",a+="; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",u&&(a+=" if (false) { ");return a}},{}],30:[function(e,r,t){"use strict";r.exports=function(e,r,t){var a=" ",s=e.level,o=e.dataLevel,i=e.schema[r],n=e.schemaPath+e.util.getProperty(r),l=e.errSchemaPath+"/"+r,u=!e.opts.allErrors,c="data"+(o||""),h="valid"+s,d="errs__"+s,f=e.util.copy(e),p="";f.level++;var m="valid"+f.level,v=f.baseId,g="prevValid"+s,y="passingSchemas"+s;a+="var "+d+" = errors , "+g+" = false , "+h+" = false , "+y+" = null; ";var P=e.compositeRule;e.compositeRule=f.compositeRule=!0;var E=i;if(E)for(var w,S=-1,b=E.length-1;S 1) { ";var p=e.schema.items&&e.schema.items.type,m=Array.isArray(p);if(!p||"object"==p||"array"==p||m&&(0<=p.indexOf("object")||0<=p.indexOf("array")))s+=" outer: for (;i--;) { for (j = i; j--;) { if (equal("+h+"[i], "+h+"[j])) { "+d+" = false; break outer; } } } ";else s+=" var itemIndices = {}, item; for (;i--;) { var item = "+h+"[i]; ",s+=" if ("+e.util["checkDataType"+(m?"s":"")](p,"item",!0)+") continue; ",m&&(s+=" if (typeof item == 'string') item = '\"' + item; "),s+=" if (typeof itemIndices[item] == 'number') { "+d+" = false; j = itemIndices[item]; break; } itemIndices[item] = i; } ";s+=" } ",f&&(s+=" } ");var v=v||[];v.push(s+=" if (!"+d+") { "),s="",!1!==e.createErrors?(s+=" { keyword: 'uniqueItems' , dataPath: (dataPath || '') + "+e.errorPath+" , schemaPath: "+e.util.toQuotedString(u)+" , params: { i: i, j: j } ",!1!==e.opts.messages&&(s+=" , message: 'should NOT have duplicate items (items ## ' + j + ' and ' + i + ' are identical)' "),e.opts.verbose&&(s+=" , schema: ",s+=f?"validate.schema"+l:""+n,s+=" , parentSchema: validate.schema"+e.schemaPath+" , data: "+h+" "),s+=" } "):s+=" {} ";var g=s;s=v.pop(),s+=!e.compositeRule&&c?e.async?" throw new ValidationError(["+g+"]); ":" validate.errors = ["+g+"]; return false; ":" var err = "+g+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; ",s+=" } ",c&&(s+=" else { ")}else c&&(s+=" if (true) { ");return s}},{}],37:[function(e,r,t){"use strict";r.exports=function(a,e,r){var t="",s=!0===a.schema.$async,o=a.util.schemaHasRulesExcept(a.schema,a.RULES.all,"$ref"),i=a.self._getId(a.schema);if(a.isTop&&(t+=" var validate = ",s&&(a.async=!0,t+="async "),t+="function(data, dataPath, parentData, parentDataProperty, rootData) { 'use strict'; ",i&&(a.opts.sourceCode||a.opts.processCode)&&(t+=" /*# sourceURL="+i+" */ ")),"boolean"==typeof a.schema||!o&&!a.schema.$ref){var n=a.level,l=a.dataLevel,u=a.schema[e="false schema"],c=a.schemaPath+a.util.getProperty(e),h=a.errSchemaPath+"/"+e,d=!a.opts.allErrors,f="data"+(l||""),p="valid"+n;if(!1===a.schema){a.isTop?d=!0:t+=" var "+p+" = false; ",(K=K||[]).push(t),t="",!1!==a.createErrors?(t+=" { keyword: 'false schema' , dataPath: (dataPath || '') + "+a.errorPath+" , schemaPath: "+a.util.toQuotedString(h)+" , params: {} ",!1!==a.opts.messages&&(t+=" , message: 'boolean schema is false' "),a.opts.verbose&&(t+=" , schema: false , parentSchema: validate.schema"+a.schemaPath+" , data: "+f+" "),t+=" } "):t+=" {} ";var m=t;t=K.pop(),t+=!a.compositeRule&&d?a.async?" throw new ValidationError(["+m+"]); ":" validate.errors = ["+m+"]; return false; ":" var err = "+m+"; if (vErrors === null) vErrors = [err]; else vErrors.push(err); errors++; "}else t+=a.isTop?s?" return data; ":" validate.errors = null; return true; ":" var "+p+" = true; ";return a.isTop&&(t+=" }; return validate; "),t}if(a.isTop){var v=a.isTop;n=a.level=0,l=a.dataLevel=0,f="data";a.rootId=a.resolve.fullPath(a.self._getId(a.root.schema)),a.baseId=a.baseId||a.rootId,delete a.isTop,a.dataPathArr=[void 0],t+=" var vErrors = null; ",t+=" var errors = 0; ",t+=" if (rootData === undefined) rootData = data; "}else{n=a.level,f="data"+((l=a.dataLevel)||"");if(i&&(a.baseId=a.resolve.url(a.baseId,i)),s&&!a.async)throw new Error("async schema in sync schema");t+=" var errs_"+n+" = errors;"}p="valid"+n,d=!a.opts.allErrors;var g="",y="",P=a.schema.type,E=Array.isArray(P);if(E&&1==P.length&&(P=P[0],E=!1),a.schema.$ref&&o){if("fail"==a.opts.extendRefs)throw new Error('$ref: validation keywords used in schema at path "'+a.errSchemaPath+'" (see option extendRefs)');!0!==a.opts.extendRefs&&(o=!1,a.logger.warn('$ref: keywords ignored in schema at path "'+a.errSchemaPath+'"'))}if(a.schema.$comment&&a.opts.$comment&&(t+=" "+a.RULES.all.$comment.code(a,"$comment")),P){if(a.opts.coerceTypes)var w=a.util.coerceToTypes(a.opts.coerceTypes,P);var S=a.RULES.types[P];if(w||E||!0===S||S&&!J(S)){c=a.schemaPath+".type",h=a.errSchemaPath+"/type",c=a.schemaPath+".type",h=a.errSchemaPath+"/type";if(t+=" if ("+a.util[E?"checkDataTypes":"checkDataType"](P,f,!0)+") { ",w){var b="dataType"+n,_="coerced"+n;t+=" var "+b+" = typeof "+f+"; ","array"==a.opts.coerceTypes&&(t+=" if ("+b+" == 'object' && Array.isArray("+f+")) "+b+" = 'array'; "),t+=" var "+_+" = undefined; ";var F="",x=w;if(x)for(var R,$=-1,D=x.length-1;$= 0x80 (not a basic code point)","invalid-input":"Invalid input"},L=Math.floor,z=String.fromCharCode;function T(e){throw new RangeError(i[e])}function n(e,r){var t=e.split("@"),a="";return 1>1,e+=L(e/r);455L((A-s)/h))&&T("overflow"),s+=f*h;var p=d<=i?1:i+26<=d?26:d-i;if(fL(A/m)&&T("overflow"),h*=m}var v=t.length+1;i=U(s-c,v,0==c),L(s/v)>A-o&&T("overflow"),o+=L(s/v),s%=v,t.splice(s++,0,o)}return String.fromCodePoint.apply(String,t)},u=function(e){var r=[],t=(e=N(e)).length,a=128,s=0,o=72,i=!0,n=!1,l=void 0;try{for(var u,c=e[Symbol.iterator]();!(i=(u=c.next()).done);i=!0){var h=u.value;h<128&&r.push(z(h))}}catch(e){n=!0,l=e}finally{try{!i&&c.return&&c.return()}finally{if(n)throw l}}var d=r.length,f=d;for(d&&r.push("-");fL((A-s)/w)&&T("overflow"),s+=(p-a)*w,a=p;var S=!0,b=!1,_=void 0;try{for(var F,x=e[Symbol.iterator]();!(S=(F=x.next()).done);S=!0){var R=F.value;if(RA&&T("overflow"),R==a){for(var $=s,D=36;;D+=36){var j=D<=o?1:o+26<=D?26:D-o;if($>6|192).toString(16).toUpperCase()+"%"+(63&r|128).toString(16).toUpperCase():"%"+(r>>12|224).toString(16).toUpperCase()+"%"+(r>>6&63|128).toString(16).toUpperCase()+"%"+(63&r|128).toString(16).toUpperCase()}function f(e){for(var r="",t=0,a=e.length;tA-Z\\x5E-\\x7E]",'[\\"\\\\]'),Z=new RegExp(M,"g"),G=new RegExp(K,"g"),Y=new RegExp(C("[^]","[A-Za-z0-9\\!\\$\\%\\'\\*\\+\\-\\^\\_\\`\\{\\|\\}\\~]","[\\.]",'[\\"]',J),"g"),W=new RegExp(C("[^]",M,"[\\!\\$\\'\\(\\)\\*\\+\\,\\;\\:\\@]"),"g"),X=W;function ee(e){var r=f(e);return r.match(Z)?r:e}var re={scheme:"mailto",parse:function(e,r){var t=e,a=t.to=t.path?t.path.split(","):[];if(t.path=void 0,t.query){for(var s=!1,o={},i=t.query.split("&"),n=0,l=i.length;n (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _is_native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../is/native-disabled-supported */ 7381); -/* harmony import */ var _util_toggle_attribute__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute */ 7273); -/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 4656); -/* harmony import */ var _util_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/logger */ 3429); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _is_native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../is/native-disabled-supported */ 67381); +/* harmony import */ var _util_toggle_attribute__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute */ 37273); +/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 94656); +/* harmony import */ var _util_logger__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/logger */ 93429); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 94569); /* Utility to make any element inert (disabled). Inert means the elements cannot be interacted with and they cannot be focused via script, pointer or keyboard - and thus not receive focus. @@ -8838,7 +8836,7 @@ function setElementDisabled(element, disabledState) { /***/ }), -/***/ 59: +/***/ 40059: /*!***************************************************************************!*\ !*** ./node_modules/ally.js/esm/element/focus.svg-foreign-object-hack.js ***! \***************************************************************************/ @@ -8882,7 +8880,7 @@ function makeFocusableForeignObject() { /***/ }), -/***/ 1514: +/***/ 11514: /*!****************************************************************!*\ !*** ./node_modules/ally.js/esm/get/insignificant-branches.js ***! \****************************************************************/ @@ -8893,10 +8891,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 1695); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 21695); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-document */ 34426); // find all highest elements within context that do not contain any of the filter elements. // (basically the tree minus the parent paths of each filtered element reduced to the top most nodes) // originally inspired by Marcy Sutton's Material Dialog Component: @@ -8988,7 +8986,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); // [elem, elem.parent, elem.parent.parent, …, html] @@ -9014,7 +9012,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 820: +/***/ 20820: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/get/shadow-host.js ***! \*****************************************************/ @@ -9025,7 +9023,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__() { var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {}, @@ -9053,7 +9051,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2327: +/***/ 12327: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/is/active-element.js ***! \*******************************************************/ @@ -9064,9 +9062,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/shadow-host */ 820); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/shadow-host */ 20820); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 34426); // Determines if an element is the activeElement within its context, i.e. its document iFrame or ShadowHost @@ -9093,7 +9091,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1471: +/***/ 21471: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/is/disabled.js ***! \*************************************************/ @@ -9104,10 +9102,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./native-disabled-supported */ 7381); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _native_disabled_supported__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./native-disabled-supported */ 67381); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../supports/supports */ 94569); // Determine if an element is disabled (i.e. not editable) @@ -9159,7 +9157,7 @@ function isDisabledForm(element) { /***/ }), -/***/ 7347: +/***/ 97347: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/is/focus-relevant.js ***! \*******************************************************/ @@ -9171,12 +9169,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 1404); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _valid_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./valid-tabindex */ 2429); -/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./is.util */ 317); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 21404); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _valid_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./valid-tabindex */ 82429); +/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./is.util */ 60317); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element supports.can be focused by script regardless // of the element actually being focusable at the time of execution // i.e. is conisdered focus-relevant, but not focusable @@ -9403,7 +9401,7 @@ var isFocusRelevant = isFocusRelevantRules.except({}); /***/ }), -/***/ 490: +/***/ 40490: /*!**************************************************!*\ !*** ./node_modules/ally.js/esm/is/focusable.js ***! \**************************************************/ @@ -9414,15 +9412,15 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focus-relevant */ 7347); -/* harmony import */ var _valid_area__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./valid-area */ 1094); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./visible */ 8078); -/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./disabled */ 1471); -/* harmony import */ var _only_tabbable__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./only-tabbable */ 2003); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focus-relevant */ 97347); +/* harmony import */ var _valid_area__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./valid-area */ 31094); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./visible */ 38078); +/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./disabled */ 21471); +/* harmony import */ var _only_tabbable__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./only-tabbable */ 52003); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element can be focused // https://www.w3.org/TR/html5/editing.html#focus-management @@ -9575,7 +9573,7 @@ var isFocusable = isFocusableRules.except({}); /***/ }), -/***/ 317: +/***/ 60317: /*!************************************************!*\ !*** ./node_modules/ally.js/esm/is/is.util.js ***! \************************************************/ @@ -9622,7 +9620,7 @@ function isScrollableContainer(element, nodeName, parentNodeName, parentStyle) { /***/ }), -/***/ 7381: +/***/ 67381: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/is/native-disabled-supported.js ***! \******************************************************************/ @@ -9633,8 +9631,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 94569); // Determine if an element supports the disabled attribute @@ -9672,7 +9670,7 @@ var disabledElements = { /***/ }), -/***/ 2003: +/***/ 52003: /*!******************************************************!*\ !*** ./node_modules/ally.js/esm/is/only-tabbable.js ***! \******************************************************/ @@ -9683,11 +9681,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 8078); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 38078); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -9759,7 +9757,7 @@ var isOnlyTabbable = isOnlyTabbableRules.except({}); /***/ }), -/***/ 9130: +/***/ 39130: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/is/tabbable.js ***! \*************************************************/ @@ -9770,16 +9768,16 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 8078); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 1404); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); -/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-relevant */ 7347); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/platform */ 612); -/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/image-map */ 9250); -/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./is.util */ 317); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./visible */ 38078); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_element_matches__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/element-matches */ 21404); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); +/* harmony import */ var _focus_relevant__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-relevant */ 97347); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/platform */ 20612); +/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../util/image-map */ 79250); +/* harmony import */ var _is_util__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./is.util */ 60317); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element can be focused by keyboard (i.e. is part of the document's sequential focus navigation order) @@ -10040,7 +10038,7 @@ var isTabbable = isTabbableRules.except({}); /***/ }), -/***/ 1094: +/***/ 31094: /*!***************************************************!*\ !*** ./node_modules/ally.js/esm/is/valid-area.js ***! \***************************************************/ @@ -10051,11 +10049,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./visible */ 8078); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _visible__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./visible */ 38078); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 9250); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 79250); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element is being properly used by and via a @@ -10118,7 +10116,7 @@ var supports = void 0; /***/ }), -/***/ 2429: +/***/ 82429: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/is/valid-tabindex.js ***! \*******************************************************/ @@ -10129,8 +10127,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 94569); // determine if an element's tabindex attribute has a valid value @@ -10183,7 +10181,7 @@ var validIntegerPatternWithTrailing = /^\s*(-|\+)?[0-9]+.*$/; /***/ }), -/***/ 8078: +/***/ 38078: /*!************************************************!*\ !*** ./node_modules/ally.js/esm/is/visible.js ***! \************************************************/ @@ -10194,10 +10192,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 1760); +/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 71760); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-frame-element */ 3041); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_frame_element__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/get-frame-element */ 73041); // determine if an element is rendered // NOTE: that does not mean an element is visible in the viewport, see util/visible-area @@ -10323,7 +10321,7 @@ var isVisible = isVisibleRules.except({}); /***/ }), -/***/ 2525: +/***/ 32525: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/_maintain.js ***! \********************************************************/ @@ -10334,9 +10332,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./disabled */ 5066); -/* harmony import */ var _hidden__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./hidden */ 842); -/* harmony import */ var _tab_focus__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./tab-focus */ 2772); +/* harmony import */ var _disabled__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./disabled */ 35066); +/* harmony import */ var _hidden__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./hidden */ 20842); +/* harmony import */ var _tab_focus__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./tab-focus */ 22772); // exporting modules to be included the UMD bundle @@ -10350,7 +10348,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 5066: +/***/ 35066: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/disabled.js ***! \*******************************************************/ @@ -10361,11 +10359,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _query_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/focusable */ 7327); -/* harmony import */ var _element_disabled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element/disabled */ 7348); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _query_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/focusable */ 27327); +/* harmony import */ var _element_disabled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../element/disabled */ 97348); /* harmony import */ var _observe_shadow_mutations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../observe/shadow-mutations */ 8539); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 1695); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 21695); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -10551,7 +10549,7 @@ var InertSubtree = function () { /***/ }), -/***/ 842: +/***/ 20842: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/hidden.js ***! \*****************************************************/ @@ -10562,11 +10560,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _get_insignificant_branches__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/insignificant-branches */ 1514); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _get_insignificant_branches__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../get/insignificant-branches */ 11514); /* harmony import */ var _get_parents__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../get/parents */ 2299); -/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 4656); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 1695); +/* harmony import */ var _util_toggle_attribute_value__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/toggle-attribute-value */ 94656); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/compare-position */ 21695); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -10713,7 +10711,7 @@ var HiddenSubtree = function () { /***/ }), -/***/ 2772: +/***/ 22772: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/maintain/tab-focus.js ***! \********************************************************/ @@ -10724,9 +10722,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _is_active_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/active-element */ 2327); -/* harmony import */ var _query_tabsequence__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/tabsequence */ 8397); -/* harmony import */ var _when_key__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../when/key */ 825); +/* harmony import */ var _is_active_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/active-element */ 12327); +/* harmony import */ var _query_tabsequence__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/tabsequence */ 68397); +/* harmony import */ var _when_key__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../when/key */ 70825); @@ -10786,7 +10784,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2867: +/***/ 92867: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/map/keycode.js ***! \*************************************************/ @@ -10879,9 +10877,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _query_shadow_hosts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/shadow-hosts */ 8610); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 5547); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _query_shadow_hosts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../query/shadow-hosts */ 38610); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/context-to-element */ 15547); var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { @@ -11007,7 +11005,7 @@ var ShadowMutationObserver = function () { /***/ }), -/***/ 7327: +/***/ 27327: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/query/focusable.js ***! \*****************************************************/ @@ -11018,9 +11016,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _focusable_strict__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./focusable.strict */ 8569); -/* harmony import */ var _focusable_quick__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./focusable.quick */ 9113); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _focusable_strict__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./focusable.strict */ 88569); +/* harmony import */ var _focusable_quick__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./focusable.quick */ 49113); // https://www.w3.org/TR/html5/editing.html#focusable // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11056,7 +11054,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9113: +/***/ 49113: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/query/focusable.quick.js ***! \***********************************************************/ @@ -11068,7 +11066,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (/* binding */ queryFocusableQuick) /* harmony export */ }); /* harmony import */ var _selector_focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../selector/focusable */ 3525); -/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focusable */ 490); +/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focusable */ 40490); // https://www.w3.org/TR/html5/editing.html#focusable // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11097,7 +11095,7 @@ function queryFocusableQuick() { /***/ }), -/***/ 8569: +/***/ 88569: /*!************************************************************!*\ !*** ./node_modules/ally.js/esm/query/focusable.strict.js ***! \************************************************************/ @@ -11108,9 +11106,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ queryFocusableStrict) /* harmony export */ }); -/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/focusable */ 490); -/* harmony import */ var _is_focus_relevant__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focus-relevant */ 7347); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _is_focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/focusable */ 40490); +/* harmony import */ var _is_focus_relevant__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/focus-relevant */ 97347); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 34426); // https://www.w3.org/TR/html5/editing.html#focusable // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11191,7 +11189,7 @@ function queryFocusableStrict() { /***/ }), -/***/ 8610: +/***/ 38610: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/query/shadow-hosts.js ***! \********************************************************/ @@ -11202,8 +11200,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* binding */ queryShadowHosts) /* harmony export */ }); -/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 5547); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_context_to_element__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/context-to-element */ 15547); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 34426); @@ -11256,7 +11254,7 @@ function queryShadowHosts() { /***/ }), -/***/ 6694: +/***/ 5019: /*!****************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabbable.js ***! \****************************************************/ @@ -11267,8 +11265,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focusable */ 7327); -/* harmony import */ var _is_tabbable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/tabbable */ 9130); +/* harmony import */ var _focusable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./focusable */ 27327); +/* harmony import */ var _is_tabbable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../is/tabbable */ 39130); // https://www.w3.org/TR/html5/editing.html#sequential-focus-navigation-and-the-tabindex-attribute // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11293,7 +11291,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8397: +/***/ 68397: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.js ***! \*******************************************************/ @@ -11304,13 +11302,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 6694); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/platform */ 612); -/* harmony import */ var _tabsequence_sort_area__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./tabsequence.sort-area */ 7049); -/* harmony import */ var _tabsequence_sort_shadowed__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./tabsequence.sort-shadowed */ 3311); -/* harmony import */ var _tabsequence_sort_tabindex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./tabsequence.sort-tabindex */ 9662); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 5019); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/platform */ 20612); +/* harmony import */ var _tabsequence_sort_area__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./tabsequence.sort-area */ 30880); +/* harmony import */ var _tabsequence_sort_shadowed__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./tabsequence.sort-shadowed */ 73311); +/* harmony import */ var _tabsequence_sort_tabindex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./tabsequence.sort-tabindex */ 89662); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../supports/supports */ 94569); // https://www.w3.org/TR/html5/editing.html#sequential-focus-navigation-and-the-tabindex-attribute // https://www.w3.org/WAI/PF/aria-practices/#keyboard @@ -11373,7 +11371,7 @@ function sortElements(elements, _context) { /***/ }), -/***/ 7049: +/***/ 30880: /*!*****************************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.sort-area.js ***! \*****************************************************************/ @@ -11384,10 +11382,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 6694); +/* harmony import */ var _tabbable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./tabbable */ 5019); /* harmony import */ var _util_merge_dom_order__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/merge-dom-order */ 6273); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 4426); -/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 9250); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/get-document */ 34426); +/* harmony import */ var _util_image_map__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util/image-map */ 79250); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -11492,7 +11490,7 @@ var Maps = function () { /***/ }), -/***/ 3311: +/***/ 73311: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.sort-shadowed.js ***! \*********************************************************************/ @@ -11503,9 +11501,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../get/shadow-host */ 820); +/* harmony import */ var _get_shadow_host__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../get/shadow-host */ 20820); /* harmony import */ var _util_merge_dom_order__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/merge-dom-order */ 6273); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { @@ -11693,7 +11691,7 @@ var Shadows = function () { /***/ }), -/***/ 9662: +/***/ 89662: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/query/tabsequence.sort-tabindex.js ***! \*********************************************************************/ @@ -11704,7 +11702,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/tabindex-value */ 1149); +/* harmony import */ var _util_tabindex_value__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/tabindex-value */ 91149); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(elements) { // https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement.tabIndex @@ -11773,8 +11771,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_select_in_shadows__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/select-in-shadows */ 6910); -/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 4569); +/* harmony import */ var _util_select_in_shadows__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/select-in-shadows */ 36910); +/* harmony import */ var _supports_supports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../supports/supports */ 94569); // NOTE: this selector MUST *never* be used directly, // always go through query/focusable or is/focusable.js // there are too many edge cases that they could be covered in @@ -11825,7 +11823,7 @@ var selector = void 0; /***/ }), -/***/ 2676: +/***/ 42676: /*!**********************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/css-shadow-piercing-deep-combinator.js ***! \**********************************************************************************/ @@ -11871,7 +11869,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); function before() { var data = { @@ -11962,7 +11960,7 @@ function after(data) { /***/ }), -/***/ 5887: +/***/ 55887: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-area-img-tabindex.js ***! \**********************************************************************/ @@ -11973,7 +11971,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#attr-usemap @@ -11987,7 +11985,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2291: +/***/ 92291: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-area-tabindex.js ***! \******************************************************************/ @@ -11998,8 +11996,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -12024,7 +12022,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 805: +/***/ 70805: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-area-without-href.js ***! \**********************************************************************/ @@ -12035,8 +12033,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -12070,7 +12068,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_mp3__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp3 */ 8863); +/* harmony import */ var _media_mp3__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp3 */ 15299); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ name: 'can-focus-audio-without-controls', @@ -12087,7 +12085,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2562: +/***/ 12562: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-broken-image-map.js ***! \*********************************************************************/ @@ -12098,7 +12096,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif_invalid__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif.invalid */ 4957); +/* harmony import */ var _media_gif_invalid__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif.invalid */ 44957); // NOTE: https://github.com/medialize/ally.js/issues/35 @@ -12113,7 +12111,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6680: +/***/ 96680: /*!**********************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-children-of-focusable-flexbox.js ***! \**********************************************************************************/ @@ -12137,7 +12135,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6186: +/***/ 16186: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-fieldset-disabled.js ***! \**********************************************************************/ @@ -12162,7 +12160,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 7563: +/***/ 27563: /*!*************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-fieldset.js ***! \*************************************************************/ @@ -12182,7 +12180,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 332: +/***/ 30332: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-flexbox-container.js ***! \**********************************************************************/ @@ -12204,7 +12202,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 6469: +/***/ 35746: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-form-disabled.js ***! \******************************************************************/ @@ -12228,7 +12226,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2129: +/***/ 42129: /*!**************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-img-ismap.js ***! \**************************************************************/ @@ -12239,7 +12237,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); // NOTE: https://github.com/medialize/ally.js/issues/35 @@ -12256,7 +12254,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4712: +/***/ 64712: /*!************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-img-usemap-tabindex.js ***! \************************************************************************/ @@ -12267,7 +12265,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); // NOTE: https://github.com/medialize/ally.js/issues/35 @@ -12282,7 +12280,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2084: +/***/ 82084: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-in-hidden-iframe.js ***! \*********************************************************************/ @@ -12322,7 +12320,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4560: +/***/ 24560: /*!*****************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-in-zero-dimension-object.js ***! \*****************************************************************************/ @@ -12333,7 +12331,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); var result = !_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.WEBKIT; /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__() { @@ -12342,7 +12340,7 @@ var result = !_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.WEBKIT; /***/ }), -/***/ 2054: +/***/ 52054: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-invalid-tabindex.js ***! \*********************************************************************/ @@ -12364,7 +12362,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 927: +/***/ 60927: /*!*******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-label-tabindex.js ***! \*******************************************************************/ @@ -12392,7 +12390,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9225: +/***/ 79225: /*!**********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-object-svg-hidden.js ***! \**********************************************************************/ @@ -12403,7 +12401,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 2436); +/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 22436); // Note: IE10 on BrowserStack does not like this test @@ -12421,7 +12419,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 5973: +/***/ 95973: /*!***************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-object-svg.js ***! \***************************************************************/ @@ -12432,8 +12430,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 2436); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _media_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/svg */ 22436); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/platform */ 20612); @@ -12460,7 +12458,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3644: +/***/ 13644: /*!***************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-object-swf.js ***! \***************************************************************/ @@ -12471,7 +12469,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); // Every Environment except IE9 considers SWF objects focusable @@ -12482,7 +12480,7 @@ var result = !_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.IE9; /***/ }), -/***/ 4511: +/***/ 74511: /*!************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-redirect-img-usemap.js ***! \************************************************************************/ @@ -12493,7 +12491,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 9709); +/* harmony import */ var _media_gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/gif */ 19709); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12511,7 +12509,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3977: +/***/ 93977: /*!********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-redirect-legend.js ***! \********************************************************************/ @@ -12545,7 +12543,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2036: +/***/ 12036: /*!****************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-scroll-body.js ***! \****************************************************************/ @@ -12568,7 +12566,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1103: +/***/ 11103: /*!**************************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-scroll-container-without-overflow.js ***! \**************************************************************************************/ @@ -12590,7 +12588,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1478: +/***/ 51478: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-scroll-container.js ***! \*********************************************************************/ @@ -12644,7 +12642,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12668,7 +12666,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12682,7 +12680,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8032: +/***/ 88032: /*!******************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg-in-iframe.js ***! \******************************************************************/ @@ -12693,7 +12691,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); // Firefox seems to be handling the SVG-document-in-iframe creation asynchronously @@ -12708,7 +12706,7 @@ var result = Boolean(_util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.G /***/ }), -/***/ 2691: +/***/ 72691: /*!************************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg-negative-tabindex-attribute.js ***! \************************************************************************************/ @@ -12719,7 +12717,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12743,7 +12741,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12756,7 +12754,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 7757: +/***/ 47757: /*!*********************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg-use-tabindex.js ***! \*********************************************************************/ @@ -12767,7 +12765,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12780,7 +12778,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1689: +/***/ 81689: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-svg.js ***! \********************************************************/ @@ -12791,7 +12789,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 3139); +/* harmony import */ var _helper_svg__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helper/svg */ 43139); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'div', @@ -12804,7 +12802,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 2880: +/***/ 32880: /*!*********************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-tabindex-trailing-characters.js ***! \*********************************************************************************/ @@ -12826,7 +12824,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3459: +/***/ 63459: /*!**********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-table.js ***! \**********************************************************/ @@ -12851,7 +12849,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9987: +/***/ 71969: /*!***************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/focus-video-without-controls.js ***! \***************************************************************************/ @@ -12862,7 +12860,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _media_mp4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp4 */ 5477); +/* harmony import */ var _media_mp4__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./media/mp4 */ 15477); /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ element: 'video', @@ -12878,7 +12876,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3139: +/***/ 43139: /*!*********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/helper/svg.js ***! \*********************************************************/ @@ -12891,7 +12889,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ generate: () => (/* binding */ generate), /* harmony export */ validate: () => (/* binding */ validate) /* harmony export */ }); -/* harmony import */ var _element_focus_svg_foreign_object_hack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../element/focus.svg-foreign-object-hack */ 59); +/* harmony import */ var _element_focus_svg_foreign_object_hack__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../element/focus.svg-foreign-object-hack */ 40059); function generate(element) { return '' + element + ''; @@ -12913,7 +12911,7 @@ function validate(element, focusTarget, _document) { /***/ }), -/***/ 4957: +/***/ 44957: /*!****************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/gif.invalid.js ***! \****************************************************************/ @@ -12928,7 +12926,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9709: +/***/ 19709: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/gif.js ***! \********************************************************/ @@ -12943,7 +12941,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8863: +/***/ 15299: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/mp3.js ***! \********************************************************/ @@ -12954,14 +12952,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 9709); +/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 19709); // export default 'data:audio/mp3;base64,audio-focus-test'; /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_gif__WEBPACK_IMPORTED_MODULE_0__["default"]); /***/ }), -/***/ 5477: +/***/ 15477: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/mp4.js ***! \********************************************************/ @@ -12972,14 +12970,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 9709); +/* harmony import */ var _gif__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./gif */ 19709); // export default 'data:video/mp4;base64,video-focus-test'; /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_gif__WEBPACK_IMPORTED_MODULE_0__["default"]); /***/ }), -/***/ 2436: +/***/ 22436: /*!********************************************************!*\ !*** ./node_modules/ally.js/esm/supports/media/svg.js ***! \********************************************************/ @@ -12994,7 +12992,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9759: +/***/ 99759: /*!*************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/supports-cache.js ***! \*************************************************************/ @@ -13005,7 +13003,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../version */ 9291); +/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../version */ 29291); /* Facility to cache test results in localStorage. @@ -13070,7 +13068,7 @@ cache.version = _version__WEBPACK_IMPORTED_MODULE_0__["default"]; /***/ }), -/***/ 4569: +/***/ 94569: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/supports/supports.js ***! \*******************************************************/ @@ -13082,44 +13080,44 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _detect_focus__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./detect-focus */ 5536); -/* harmony import */ var _supports_cache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./supports-cache */ 9759); -/* harmony import */ var _css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./css-shadow-piercing-deep-combinator */ 2676); -/* harmony import */ var _focus_area_img_tabindex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./focus-area-img-tabindex */ 5887); -/* harmony import */ var _focus_area_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-area-tabindex */ 2291); -/* harmony import */ var _focus_area_without_href__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./focus-area-without-href */ 805); +/* harmony import */ var _supports_cache__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./supports-cache */ 99759); +/* harmony import */ var _css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./css-shadow-piercing-deep-combinator */ 42676); +/* harmony import */ var _focus_area_img_tabindex__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./focus-area-img-tabindex */ 55887); +/* harmony import */ var _focus_area_tabindex__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./focus-area-tabindex */ 92291); +/* harmony import */ var _focus_area_without_href__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./focus-area-without-href */ 70805); /* harmony import */ var _focus_audio_without_controls__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./focus-audio-without-controls */ 314); -/* harmony import */ var _focus_broken_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./focus-broken-image-map */ 2562); -/* harmony import */ var _focus_children_of_focusable_flexbox__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./focus-children-of-focusable-flexbox */ 6680); -/* harmony import */ var _focus_fieldset_disabled__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./focus-fieldset-disabled */ 6186); -/* harmony import */ var _focus_fieldset__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./focus-fieldset */ 7563); -/* harmony import */ var _focus_flexbox_container__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./focus-flexbox-container */ 332); -/* harmony import */ var _focus_form_disabled__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./focus-form-disabled */ 6469); -/* harmony import */ var _focus_img_ismap__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./focus-img-ismap */ 2129); -/* harmony import */ var _focus_img_usemap_tabindex__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./focus-img-usemap-tabindex */ 4712); -/* harmony import */ var _focus_in_hidden_iframe__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./focus-in-hidden-iframe */ 2084); -/* harmony import */ var _focus_in_zero_dimension_object__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./focus-in-zero-dimension-object */ 4560); -/* harmony import */ var _focus_invalid_tabindex__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./focus-invalid-tabindex */ 2054); -/* harmony import */ var _focus_label_tabindex__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./focus-label-tabindex */ 927); -/* harmony import */ var _focus_object_svg_hidden__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./focus-object-svg-hidden */ 9225); -/* harmony import */ var _focus_object_svg__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./focus-object-svg */ 5973); -/* harmony import */ var _focus_object_swf__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./focus-object-swf */ 3644); -/* harmony import */ var _focus_redirect_img_usemap__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./focus-redirect-img-usemap */ 4511); -/* harmony import */ var _focus_redirect_legend__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./focus-redirect-legend */ 3977); -/* harmony import */ var _focus_scroll_body__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./focus-scroll-body */ 2036); -/* harmony import */ var _focus_scroll_container_without_overflow__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./focus-scroll-container-without-overflow */ 1103); -/* harmony import */ var _focus_scroll_container__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./focus-scroll-container */ 1478); +/* harmony import */ var _focus_broken_image_map__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./focus-broken-image-map */ 12562); +/* harmony import */ var _focus_children_of_focusable_flexbox__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./focus-children-of-focusable-flexbox */ 96680); +/* harmony import */ var _focus_fieldset_disabled__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./focus-fieldset-disabled */ 16186); +/* harmony import */ var _focus_fieldset__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./focus-fieldset */ 27563); +/* harmony import */ var _focus_flexbox_container__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./focus-flexbox-container */ 30332); +/* harmony import */ var _focus_form_disabled__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./focus-form-disabled */ 35746); +/* harmony import */ var _focus_img_ismap__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./focus-img-ismap */ 42129); +/* harmony import */ var _focus_img_usemap_tabindex__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./focus-img-usemap-tabindex */ 64712); +/* harmony import */ var _focus_in_hidden_iframe__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./focus-in-hidden-iframe */ 82084); +/* harmony import */ var _focus_in_zero_dimension_object__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./focus-in-zero-dimension-object */ 24560); +/* harmony import */ var _focus_invalid_tabindex__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./focus-invalid-tabindex */ 52054); +/* harmony import */ var _focus_label_tabindex__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./focus-label-tabindex */ 60927); +/* harmony import */ var _focus_object_svg_hidden__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./focus-object-svg-hidden */ 79225); +/* harmony import */ var _focus_object_svg__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./focus-object-svg */ 95973); +/* harmony import */ var _focus_object_swf__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./focus-object-swf */ 13644); +/* harmony import */ var _focus_redirect_img_usemap__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./focus-redirect-img-usemap */ 74511); +/* harmony import */ var _focus_redirect_legend__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./focus-redirect-legend */ 93977); +/* harmony import */ var _focus_scroll_body__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./focus-scroll-body */ 12036); +/* harmony import */ var _focus_scroll_container_without_overflow__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./focus-scroll-container-without-overflow */ 11103); +/* harmony import */ var _focus_scroll_container__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./focus-scroll-container */ 51478); /* harmony import */ var _focus_summary__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./focus-summary */ 3993); /* harmony import */ var _focus_svg_focusable_attribute__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./focus-svg-focusable-attribute */ 1058); /* harmony import */ var _focus_svg_tabindex_attribute__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./focus-svg-tabindex-attribute */ 7503); -/* harmony import */ var _focus_svg_negative_tabindex_attribute__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./focus-svg-negative-tabindex-attribute */ 2691); -/* harmony import */ var _focus_svg_use_tabindex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./focus-svg-use-tabindex */ 7757); +/* harmony import */ var _focus_svg_negative_tabindex_attribute__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./focus-svg-negative-tabindex-attribute */ 72691); +/* harmony import */ var _focus_svg_use_tabindex__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./focus-svg-use-tabindex */ 47757); /* harmony import */ var _focus_svg_foreignobject_tabindex__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./focus-svg-foreignobject-tabindex */ 6284); -/* harmony import */ var _focus_svg_in_iframe__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./focus-svg-in-iframe */ 8032); -/* harmony import */ var _focus_svg__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./focus-svg */ 1689); -/* harmony import */ var _focus_tabindex_trailing_characters__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./focus-tabindex-trailing-characters */ 2880); -/* harmony import */ var _focus_table__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./focus-table */ 3459); -/* harmony import */ var _focus_video_without_controls__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./focus-video-without-controls */ 9987); -/* harmony import */ var _tabsequence_area_at_img_position__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./tabsequence-area-at-img-position */ 7841); +/* harmony import */ var _focus_svg_in_iframe__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./focus-svg-in-iframe */ 88032); +/* harmony import */ var _focus_svg__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./focus-svg */ 81689); +/* harmony import */ var _focus_tabindex_trailing_characters__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./focus-tabindex-trailing-characters */ 32880); +/* harmony import */ var _focus_table__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./focus-table */ 63459); +/* harmony import */ var _focus_video_without_controls__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./focus-video-without-controls */ 71969); +/* harmony import */ var _tabsequence_area_at_img_position__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./tabsequence-area-at-img-position */ 57841); @@ -13222,7 +13220,7 @@ var supportsCache = null; /***/ }), -/***/ 7841: +/***/ 57841: /*!*******************************************************************************!*\ !*** ./node_modules/ally.js/esm/supports/tabsequence-area-at-img-position.js ***! \*******************************************************************************/ @@ -13233,7 +13231,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 612); +/* harmony import */ var _util_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/platform */ 20612); // https://jsbin.com/vafaba/3/edit?html,js,console,output @@ -13244,7 +13242,7 @@ var result = _util_platform__WEBPACK_IMPORTED_MODULE_0__["default"].is.GECKO || /***/ }), -/***/ 1760: +/***/ 71760: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/util/array-find-index.js ***! \***********************************************************/ @@ -13278,7 +13276,7 @@ function findIndex(array, callback) { /***/ }), -/***/ 1695: +/***/ 21695: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/util/compare-position.js ***! \***********************************************************/ @@ -13318,7 +13316,7 @@ function getParentComparator() { /***/ }), -/***/ 5547: +/***/ 15547: /*!*************************************************************!*\ !*** ./node_modules/ally.js/esm/util/context-to-element.js ***! \*************************************************************/ @@ -13329,7 +13327,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 6072); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/node-array */ 66072); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(_ref) { var context = _ref.context, @@ -13355,7 +13353,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 1404: +/***/ 21404: /*!**********************************************************!*\ !*** ./node_modules/ally.js/esm/util/element-matches.js ***! \**********************************************************/ @@ -13417,7 +13415,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4426: +/***/ 34426: /*!*******************************************************!*\ !*** ./node_modules/ally.js/esm/util/get-document.js ***! \*******************************************************/ @@ -13440,7 +13438,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 3041: +/***/ 73041: /*!************************************************************!*\ !*** ./node_modules/ally.js/esm/util/get-frame-element.js ***! \************************************************************/ @@ -13452,8 +13450,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (/* binding */ getFrameElement) /* harmony export */ }); /* harmony import */ var _get_content_document__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./get-content-document */ 7099); -/* harmony import */ var _get_window__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./get-window */ 1190); -/* harmony import */ var _select_in_shadows__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./select-in-shadows */ 6910); +/* harmony import */ var _get_window__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./get-window */ 81190); +/* harmony import */ var _select_in_shadows__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./select-in-shadows */ 36910); @@ -13495,7 +13493,7 @@ function getFrameElement(element) { /***/ }), -/***/ 1190: +/***/ 81190: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/util/get-window.js ***! \*****************************************************/ @@ -13506,7 +13504,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _get_document__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./get-document */ 4426); +/* harmony import */ var _get_document__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./get-document */ 34426); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(node) { var _document = (0,_get_document__WEBPACK_IMPORTED_MODULE_0__["default"])(node); @@ -13515,7 +13513,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9250: +/***/ 79250: /*!****************************************************!*\ !*** ./node_modules/ally.js/esm/util/image-map.js ***! \****************************************************/ @@ -13528,9 +13526,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ getMapByName: () => (/* binding */ getMapByName), /* harmony export */ getMapOfImage: () => (/* binding */ getMapOfImage) /* harmony export */ }); -/* harmony import */ var css_escape__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! css.escape */ 9403); +/* harmony import */ var css_escape__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! css.escape */ 99403); /* harmony import */ var css_escape__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(css_escape__WEBPACK_IMPORTED_MODULE_0__); -/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 4426); +/* harmony import */ var _util_get_document__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/get-document */ 34426); function getMapByName(name, _document) { @@ -13567,7 +13565,7 @@ function getImageOfArea(element) { /***/ }), -/***/ 3429: +/***/ 93429: /*!*************************************************!*\ !*** ./node_modules/ally.js/esm/util/logger.js ***! \*************************************************/ @@ -13601,9 +13599,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 1760); -/* harmony import */ var _node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node-array */ 6072); -/* harmony import */ var _sort_dom_order__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./sort-dom-order */ 779); +/* harmony import */ var _util_array_find_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/array-find-index */ 71760); +/* harmony import */ var _node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node-array */ 66072); +/* harmony import */ var _sort_dom_order__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./sort-dom-order */ 20779); // sort a list of elements into another list of elements in DOM order /* @@ -13702,7 +13700,7 @@ function insertElementsAtOffsets(list, insertions) { /***/ }), -/***/ 6072: +/***/ 66072: /*!*****************************************************!*\ !*** ./node_modules/ally.js/esm/util/node-array.js ***! \*****************************************************/ @@ -13738,7 +13736,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 612: +/***/ 20612: /*!***************************************************!*\ !*** ./node_modules/ally.js/esm/util/platform.js ***! \***************************************************/ @@ -13749,7 +13747,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! platform */ 8861); +/* harmony import */ var platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! platform */ 78861); /* harmony import */ var platform__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(platform__WEBPACK_IMPORTED_MODULE_0__); // sugar for https://github.com/bestiejs/platform.js // make sure to ALWAYS reference the layout engine, @@ -13805,7 +13803,7 @@ platform.is = { /***/ }), -/***/ 6910: +/***/ 36910: /*!************************************************************!*\ !*** ./node_modules/ally.js/esm/util/select-in-shadows.js ***! \************************************************************/ @@ -13816,7 +13814,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _supports_css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../supports/css-shadow-piercing-deep-combinator */ 2676); +/* harmony import */ var _supports_css_shadow_piercing_deep_combinator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../supports/css-shadow-piercing-deep-combinator */ 42676); // convert a CSS selector so that it also pierces ShadowDOM // takes ".a, #b" and turns it into ".a, #b, html >>> .a, html >>> #b" @@ -13837,7 +13835,7 @@ var shadowPrefix = void 0; /***/ }), -/***/ 779: +/***/ 20779: /*!*********************************************************!*\ !*** ./node_modules/ally.js/esm/util/sort-dom-order.js ***! \*********************************************************/ @@ -13859,7 +13857,7 @@ function compareDomPosition(a, b) { /***/ }), -/***/ 1149: +/***/ 91149: /*!*********************************************************!*\ !*** ./node_modules/ally.js/esm/util/tabindex-value.js ***! \*********************************************************/ @@ -13870,7 +13868,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _is_valid_tabindex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/valid-tabindex */ 2429); +/* harmony import */ var _is_valid_tabindex__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../is/valid-tabindex */ 82429); /* harmony default export */ function __WEBPACK_DEFAULT_EXPORT__(element) { if (!(0,_is_valid_tabindex__WEBPACK_IMPORTED_MODULE_0__["default"])(element)) { @@ -13889,7 +13887,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 4656: +/***/ 94656: /*!*****************************************************************!*\ !*** ./node_modules/ally.js/esm/util/toggle-attribute-value.js ***! \*****************************************************************/ @@ -13929,7 +13927,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 7273: +/***/ 37273: /*!***********************************************************!*\ !*** ./node_modules/ally.js/esm/util/toggle-attribute.js ***! \***********************************************************/ @@ -13968,7 +13966,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9291: +/***/ 29291: /*!*********************************************!*\ !*** ./node_modules/ally.js/esm/version.js ***! \*********************************************/ @@ -13985,7 +13983,7 @@ var version = '1.4.1'; /***/ }), -/***/ 5853: +/***/ 95853: /*!******************************************************!*\ !*** ./node_modules/ally.js/esm/when/key.binding.js ***! \******************************************************/ @@ -13996,7 +13994,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _map_keycode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../map/keycode */ 2867); +/* harmony import */ var _map_keycode__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../map/keycode */ 92867); /* decodes a key binding token to a JavaScript structure @@ -14096,7 +14094,7 @@ function matchModifiers(expected, event) { /***/ }), -/***/ 825: +/***/ 70825: /*!**********************************************!*\ !*** ./node_modules/ally.js/esm/when/key.js ***! \**********************************************/ @@ -14107,9 +14105,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (/* export default binding */ __WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _key_binding__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./key.binding */ 5853); -/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 6072); -/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 1695); +/* harmony import */ var _key_binding__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./key.binding */ 95853); +/* harmony import */ var _util_node_array__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/node-array */ 66072); +/* harmony import */ var _util_compare_position__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/compare-position */ 21695); @@ -14182,7 +14180,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 9403: +/***/ 99403: /*!***********************************************!*\ !*** ./node_modules/css.escape/css.escape.js ***! \***********************************************/ @@ -14271,7 +14269,7 @@ __webpack_require__.r(__webpack_exports__); /***/ }), -/***/ 8861: +/***/ 78861: /*!*******************************************!*\ !*** ./node_modules/platform/platform.js ***! \*******************************************/ @@ -15315,7 +15313,7 @@ var __WEBPACK_AMD_DEFINE_RESULT__;/*! /***/ }), -/***/ 7550: +/***/ 87550: /*!**************************************************!*\ !*** ./node_modules/reflect-metadata/Reflect.js ***! \**************************************************/ @@ -15395,7 +15393,7 @@ var Reflect; }; // Load global or shim versions of Map, Set, and WeakMap var functionPrototype = Object.getPrototypeOf(Function); - var usePolyfill = typeof process === "object" && process["env" + ""] && process["env" + ""]["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true"; + var usePolyfill = typeof process === "object" && process.env && process.env["REFLECT_METADATA_USE_MAP_POLYFILL"] === "true"; var _Map = !usePolyfill && typeof Map === "function" && typeof Map.prototype.entries === "function" ? Map : CreateMapPolyfill(); var _Set = !usePolyfill && typeof Set === "function" && typeof Set.prototype.entries === "function" ? Set : CreateSetPolyfill(); var _WeakMap = !usePolyfill && typeof WeakMap === "function" ? WeakMap : CreateWeakMapPolyfill(); @@ -16237,85 +16235,84 @@ var Reflect; }; return MapIterator; }(); - return (/** @class */function () { - function Map() { - this._keys = []; - this._values = []; - this._cacheKey = cacheSentinel; - this._cacheIndex = -2; - } - Object.defineProperty(Map.prototype, "size", { - get: function () { - return this._keys.length; - }, - enumerable: true, - configurable: true - }); - Map.prototype.has = function (key) { - return this._find(key, /*insert*/false) >= 0; - }; - Map.prototype.get = function (key) { - var index = this._find(key, /*insert*/false); - return index >= 0 ? this._values[index] : undefined; - }; - Map.prototype.set = function (key, value) { - var index = this._find(key, /*insert*/true); - this._values[index] = value; - return this; - }; - Map.prototype.delete = function (key) { - var index = this._find(key, /*insert*/false); - if (index >= 0) { - var size = this._keys.length; - for (var i = index + 1; i < size; i++) { - this._keys[i - 1] = this._keys[i]; - this._values[i - 1] = this._values[i]; - } - this._keys.length--; - this._values.length--; - if (key === this._cacheKey) { - this._cacheKey = cacheSentinel; - this._cacheIndex = -2; - } - return true; - } - return false; - }; - Map.prototype.clear = function () { - this._keys.length = 0; - this._values.length = 0; - this._cacheKey = cacheSentinel; - this._cacheIndex = -2; - }; - Map.prototype.keys = function () { - return new MapIterator(this._keys, this._values, getKey); - }; - Map.prototype.values = function () { - return new MapIterator(this._keys, this._values, getValue); - }; - Map.prototype.entries = function () { - return new MapIterator(this._keys, this._values, getEntry); - }; - Map.prototype["@@iterator"] = function () { - return this.entries(); - }; - Map.prototype[iteratorSymbol] = function () { - return this.entries(); - }; - Map.prototype._find = function (key, insert) { - if (this._cacheKey !== key) { - this._cacheIndex = this._keys.indexOf(this._cacheKey = key); + return /** @class */function () { + function Map() { + this._keys = []; + this._values = []; + this._cacheKey = cacheSentinel; + this._cacheIndex = -2; + } + Object.defineProperty(Map.prototype, "size", { + get: function () { + return this._keys.length; + }, + enumerable: true, + configurable: true + }); + Map.prototype.has = function (key) { + return this._find(key, /*insert*/false) >= 0; + }; + Map.prototype.get = function (key) { + var index = this._find(key, /*insert*/false); + return index >= 0 ? this._values[index] : undefined; + }; + Map.prototype.set = function (key, value) { + var index = this._find(key, /*insert*/true); + this._values[index] = value; + return this; + }; + Map.prototype.delete = function (key) { + var index = this._find(key, /*insert*/false); + if (index >= 0) { + var size = this._keys.length; + for (var i = index + 1; i < size; i++) { + this._keys[i - 1] = this._keys[i]; + this._values[i - 1] = this._values[i]; } - if (this._cacheIndex < 0 && insert) { - this._cacheIndex = this._keys.length; - this._keys.push(key); - this._values.push(undefined); + this._keys.length--; + this._values.length--; + if (key === this._cacheKey) { + this._cacheKey = cacheSentinel; + this._cacheIndex = -2; } - return this._cacheIndex; - }; - return Map; - }() - ); + return true; + } + return false; + }; + Map.prototype.clear = function () { + this._keys.length = 0; + this._values.length = 0; + this._cacheKey = cacheSentinel; + this._cacheIndex = -2; + }; + Map.prototype.keys = function () { + return new MapIterator(this._keys, this._values, getKey); + }; + Map.prototype.values = function () { + return new MapIterator(this._keys, this._values, getValue); + }; + Map.prototype.entries = function () { + return new MapIterator(this._keys, this._values, getEntry); + }; + Map.prototype["@@iterator"] = function () { + return this.entries(); + }; + Map.prototype[iteratorSymbol] = function () { + return this.entries(); + }; + Map.prototype._find = function (key, insert) { + if (this._cacheKey !== key) { + this._cacheIndex = this._keys.indexOf(this._cacheKey = key); + } + if (this._cacheIndex < 0 && insert) { + this._cacheIndex = this._keys.length; + this._keys.push(key); + this._values.push(undefined); + } + return this._cacheIndex; + }; + return Map; + }(); function getKey(key, _) { return key; } @@ -16328,81 +16325,79 @@ var Reflect; } // naive Set shim function CreateSetPolyfill() { - return (/** @class */function () { - function Set() { - this._map = new _Map(); - } - Object.defineProperty(Set.prototype, "size", { - get: function () { - return this._map.size; - }, - enumerable: true, - configurable: true - }); - Set.prototype.has = function (value) { - return this._map.has(value); - }; - Set.prototype.add = function (value) { - return this._map.set(value, value), this; - }; - Set.prototype.delete = function (value) { - return this._map.delete(value); - }; - Set.prototype.clear = function () { - this._map.clear(); - }; - Set.prototype.keys = function () { - return this._map.keys(); - }; - Set.prototype.values = function () { - return this._map.values(); - }; - Set.prototype.entries = function () { - return this._map.entries(); - }; - Set.prototype["@@iterator"] = function () { - return this.keys(); - }; - Set.prototype[iteratorSymbol] = function () { - return this.keys(); - }; - return Set; - }() - ); + return /** @class */function () { + function Set() { + this._map = new _Map(); + } + Object.defineProperty(Set.prototype, "size", { + get: function () { + return this._map.size; + }, + enumerable: true, + configurable: true + }); + Set.prototype.has = function (value) { + return this._map.has(value); + }; + Set.prototype.add = function (value) { + return this._map.set(value, value), this; + }; + Set.prototype.delete = function (value) { + return this._map.delete(value); + }; + Set.prototype.clear = function () { + this._map.clear(); + }; + Set.prototype.keys = function () { + return this._map.keys(); + }; + Set.prototype.values = function () { + return this._map.values(); + }; + Set.prototype.entries = function () { + return this._map.entries(); + }; + Set.prototype["@@iterator"] = function () { + return this.keys(); + }; + Set.prototype[iteratorSymbol] = function () { + return this.keys(); + }; + return Set; + }(); } // naive WeakMap shim function CreateWeakMapPolyfill() { var UUID_SIZE = 16; var keys = HashMap.create(); var rootKey = CreateUniqueKey(); - return (/** @class */function () { - function WeakMap() { - this._key = CreateUniqueKey(); - } - WeakMap.prototype.has = function (target) { - var table = GetOrCreateWeakMapTable(target, /*create*/false); - return table !== undefined ? HashMap.has(table, this._key) : false; - }; - WeakMap.prototype.get = function (target) { - var table = GetOrCreateWeakMapTable(target, /*create*/false); - return table !== undefined ? HashMap.get(table, this._key) : undefined; - }; - WeakMap.prototype.set = function (target, value) { - var table = GetOrCreateWeakMapTable(target, /*create*/true); - table[this._key] = value; - return this; - }; - WeakMap.prototype.delete = function (target) { - var table = GetOrCreateWeakMapTable(target, /*create*/false); - return table !== undefined ? delete table[this._key] : false; - }; - WeakMap.prototype.clear = function () { - // NOTE: not a real clear, just makes the previous data unreachable - this._key = CreateUniqueKey(); - }; - return WeakMap; - }() - ); + return /** @class */function () { + function WeakMap() { + this._key = CreateUniqueKey(); + } + WeakMap.prototype.has = function (target) { + var table = GetOrCreateWeakMapTable(target, /*create*/false); + return table !== undefined ? HashMap.has(table, this._key) : false; + }; + WeakMap.prototype.get = function (target) { + var table = GetOrCreateWeakMapTable(target, /*create*/false); + return table !== undefined ? HashMap.get(table, this._key) : undefined; + }; + WeakMap.prototype.set = function (target, value) { + var table = GetOrCreateWeakMapTable(target, /*create*/true); + table[this._key] = value; + return this; + }; + WeakMap.prototype.delete = function (target) { + var table = GetOrCreateWeakMapTable(target, /*create*/false); + return table !== undefined ? delete table[this._key] : false; + }; + WeakMap.prototype.clear = function () { + // NOTE: not a real clear, just makes the previous data unreachable + this._key = CreateUniqueKey(); + }; + return WeakMap; + }(); function CreateUniqueKey() { var key; do key = "@@WeakMap@@" + CreateUUID(); while (HashMap.has(keys, key)); @@ -16456,7 +16451,7 @@ var Reflect; /***/ }), -/***/ 462: +/***/ 70462: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/BehaviorSubject.js ***! \****************************************************************/ @@ -16467,8 +16462,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ BehaviorSubject: () => (/* binding */ BehaviorSubject) /* harmony export */ }); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 2484); -/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 6950); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 32484); +/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 66950); class BehaviorSubject extends _Subject__WEBPACK_IMPORTED_MODULE_0__.Subject { @@ -16502,7 +16497,43 @@ class BehaviorSubject extends _Subject__WEBPACK_IMPORTED_MODULE_0__.Subject { /***/ }), -/***/ 7618: +/***/ 16090: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/InnerSubscriber.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ InnerSubscriber: () => (/* binding */ InnerSubscriber) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); + +class InnerSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + constructor(parent, outerValue, outerIndex) { + super(); + this.parent = parent; + this.outerValue = outerValue; + this.outerIndex = outerIndex; + this.index = 0; + } + _next(value) { + this.parent.notifyNext(this.outerValue, value, this.outerIndex, this.index++, this); + } + _error(error) { + this.parent.notifyError(error, this); + this.unsubscribe(); + } + _complete() { + this.parent.notifyComplete(this); + this.unsubscribe(); + } +} + +/***/ }), + +/***/ 77618: /*!*************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Notification.js ***! \*************************************************************/ @@ -16514,9 +16545,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ Notification: () => (/* binding */ Notification), /* harmony export */ NotificationKind: () => (/* binding */ NotificationKind) /* harmony export */ }); -/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./observable/empty */ 506); +/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./observable/empty */ 70506); /* harmony import */ var _observable_of__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./observable/of */ 9681); -/* harmony import */ var _observable_throwError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./observable/throwError */ 3994); +/* harmony import */ var _observable_throwError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./observable/throwError */ 33994); @@ -16591,7 +16622,7 @@ Notification.undefinedValueNotification = new Notification('N', undefined); /***/ }), -/***/ 3064: +/***/ 73064: /*!***********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Observable.js ***! \***********************************************************/ @@ -16602,11 +16633,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Observable: () => (/* binding */ Observable) /* harmony export */ }); -/* harmony import */ var _util_canReportError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/canReportError */ 3159); +/* harmony import */ var _util_canReportError__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/canReportError */ 73159); /* harmony import */ var _util_toSubscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util/toSubscriber */ 6920); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./symbol/observable */ 5129); -/* harmony import */ var _util_pipe__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./util/pipe */ 7734); -/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ 7329); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./symbol/observable */ 65129); +/* harmony import */ var _util_pipe__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./util/pipe */ 27734); +/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./config */ 67329); @@ -16714,7 +16745,7 @@ function getPromiseCtor(promiseCtor) { /***/ }), -/***/ 6195: +/***/ 16195: /*!*********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Observer.js ***! \*********************************************************/ @@ -16725,8 +16756,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ empty: () => (/* binding */ empty) /* harmony export */ }); -/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ 7329); -/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/hostReportError */ 8722); +/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./config */ 67329); +/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/hostReportError */ 98722); const empty = { @@ -16744,7 +16775,34 @@ const empty = { /***/ }), -/***/ 6309: +/***/ 78369: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/OuterSubscriber.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ OuterSubscriber: () => (/* binding */ OuterSubscriber) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); + +class OuterSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + notifyNext(outerValue, innerValue, outerIndex, innerIndex, innerSub) { + this.destination.next(innerValue); + } + notifyError(error, innerSub) { + this.destination.error(error); + } + notifyComplete(innerSub) { + this.destination.complete(); + } +} + +/***/ }), + +/***/ 76309: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/ReplaySubject.js ***! \**************************************************************/ @@ -16755,12 +16813,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ReplaySubject: () => (/* binding */ ReplaySubject) /* harmony export */ }); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 2484); -/* harmony import */ var _scheduler_queue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduler/queue */ 6948); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Subscription */ 4614); -/* harmony import */ var _operators_observeOn__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./operators/observeOn */ 8892); -/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 6950); -/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SubjectSubscription */ 1460); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subject */ 32484); +/* harmony import */ var _scheduler_queue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduler/queue */ 76948); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Subscription */ 84614); +/* harmony import */ var _operators_observeOn__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./operators/observeOn */ 28892); +/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 66950); +/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SubjectSubscription */ 41460); @@ -16866,7 +16924,7 @@ class ReplayEvent { /***/ }), -/***/ 7792: +/***/ 11109: /*!**********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Scheduler.js ***! \**********************************************************/ @@ -16890,7 +16948,7 @@ Scheduler.now = () => Date.now(); /***/ }), -/***/ 2484: +/***/ 32484: /*!********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Subject.js ***! \********************************************************/ @@ -16903,12 +16961,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ Subject: () => (/* binding */ Subject), /* harmony export */ SubjectSubscriber: () => (/* binding */ SubjectSubscriber) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 3064); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 5142); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Subscription */ 4614); -/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 6950); -/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./SubjectSubscription */ 1460); -/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 1999); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 73064); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Subscription */ 84614); +/* harmony import */ var _util_ObjectUnsubscribedError__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/ObjectUnsubscribedError */ 66950); +/* harmony import */ var _SubjectSubscription__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./SubjectSubscription */ 41460); +/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 51999); @@ -17064,7 +17122,7 @@ class AnonymousSubject extends Subject { /***/ }), -/***/ 1460: +/***/ 41460: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/SubjectSubscription.js ***! \********************************************************************/ @@ -17075,7 +17133,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SubjectSubscription: () => (/* binding */ SubjectSubscription) /* harmony export */ }); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 4614); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 84614); class SubjectSubscription extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Subscription { constructor(subject, subscriber) { @@ -17104,7 +17162,7 @@ class SubjectSubscription extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Sub /***/ }), -/***/ 5142: +/***/ 55142: /*!***********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Subscriber.js ***! \***********************************************************/ @@ -17116,12 +17174,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ SafeSubscriber: () => (/* binding */ SafeSubscriber), /* harmony export */ Subscriber: () => (/* binding */ Subscriber) /* harmony export */ }); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isFunction */ 5251); -/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observer */ 6195); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 4614); -/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 1999); -/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ 7329); -/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./util/hostReportError */ 8722); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isFunction */ 45251); +/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observer */ 16195); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscription */ 84614); +/* harmony import */ var _internal_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../internal/symbol/rxSubscriber */ 51999); +/* harmony import */ var _config__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./config */ 67329); +/* harmony import */ var _util_hostReportError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./util/hostReportError */ 98722); @@ -17347,7 +17405,7 @@ class SafeSubscriber extends Subscriber { /***/ }), -/***/ 4614: +/***/ 84614: /*!*************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/Subscription.js ***! \*************************************************************/ @@ -17358,10 +17416,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Subscription: () => (/* binding */ Subscription) /* harmony export */ }); -/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/isArray */ 7264); -/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isObject */ 7560); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util/isFunction */ 5251); -/* harmony import */ var _util_UnsubscriptionError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/UnsubscriptionError */ 9164); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/isArray */ 97264); +/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./util/isObject */ 97560); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./util/isFunction */ 45251); +/* harmony import */ var _util_UnsubscriptionError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./util/UnsubscriptionError */ 29164); @@ -17499,7 +17557,7 @@ function flattenUnsubscriptionErrors(errors) { /***/ }), -/***/ 7329: +/***/ 67329: /*!*******************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/config.js ***! \*******************************************************/ @@ -17529,7 +17587,7 @@ const config = { /***/ }), -/***/ 6241: +/***/ 26241: /*!***************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/innerSubscribe.js ***! \***************************************************************/ @@ -17544,9 +17602,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ SimpleOuterSubscriber: () => (/* binding */ SimpleOuterSubscriber), /* harmony export */ innerSubscribe: () => (/* binding */ innerSubscribe) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 5142); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 3064); -/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/subscribeTo */ 3787); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Subscriber */ 55142); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Observable */ 73064); +/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util/subscribeTo */ 63787); @@ -17626,7 +17684,7 @@ function innerSubscribe(result, innerSubscriber) { /***/ }), -/***/ 9148: +/***/ 19148: /*!*********************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/ConnectableObservable.js ***! \*********************************************************************************/ @@ -17638,11 +17696,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ ConnectableObservable: () => (/* binding */ ConnectableObservable), /* harmony export */ connectableObservableDescriptor: () => (/* binding */ connectableObservableDescriptor) /* harmony export */ }); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Subject */ 2484); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); -/* harmony import */ var _operators_refCount__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/refCount */ 6159); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Subject */ 32484); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); +/* harmony import */ var _operators_refCount__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/refCount */ 26159); @@ -17801,7 +17859,132 @@ class RefCountSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_4__.Subscr /***/ }), -/***/ 506: +/***/ 64555: +/*!*************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/combineLatest.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CombineLatestOperator: () => (/* binding */ CombineLatestOperator), +/* harmony export */ CombineLatestSubscriber: () => (/* binding */ CombineLatestSubscriber), +/* harmony export */ combineLatest: () => (/* binding */ combineLatest) +/* harmony export */ }); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isArray */ 97264); +/* harmony import */ var _OuterSubscriber__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../OuterSubscriber */ 78369); +/* harmony import */ var _util_subscribeToResult__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/subscribeToResult */ 24660); +/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromArray */ 81155); + + + + + +const NONE = {}; +function combineLatest(...observables) { + let resultSelector = undefined; + let scheduler = undefined; + if ((0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_0__.isScheduler)(observables[observables.length - 1])) { + scheduler = observables.pop(); + } + if (typeof observables[observables.length - 1] === 'function') { + resultSelector = observables.pop(); + } + if (observables.length === 1 && (0,_util_isArray__WEBPACK_IMPORTED_MODULE_1__.isArray)(observables[0])) { + observables = observables[0]; + } + return (0,_fromArray__WEBPACK_IMPORTED_MODULE_2__.fromArray)(observables, scheduler).lift(new CombineLatestOperator(resultSelector)); +} +class CombineLatestOperator { + constructor(resultSelector) { + this.resultSelector = resultSelector; + } + call(subscriber, source) { + return source.subscribe(new CombineLatestSubscriber(subscriber, this.resultSelector)); + } +} +class CombineLatestSubscriber extends _OuterSubscriber__WEBPACK_IMPORTED_MODULE_3__.OuterSubscriber { + constructor(destination, resultSelector) { + super(destination); + this.resultSelector = resultSelector; + this.active = 0; + this.values = []; + this.observables = []; + } + _next(observable) { + this.values.push(NONE); + this.observables.push(observable); + } + _complete() { + const observables = this.observables; + const len = observables.length; + if (len === 0) { + this.destination.complete(); + } else { + this.active = len; + this.toRespond = len; + for (let i = 0; i < len; i++) { + const observable = observables[i]; + this.add((0,_util_subscribeToResult__WEBPACK_IMPORTED_MODULE_4__.subscribeToResult)(this, observable, undefined, i)); + } + } + } + notifyComplete(unused) { + if ((this.active -= 1) === 0) { + this.destination.complete(); + } + } + notifyNext(_outerValue, innerValue, outerIndex) { + const values = this.values; + const oldVal = values[outerIndex]; + const toRespond = !this.toRespond ? 0 : oldVal === NONE ? --this.toRespond : this.toRespond; + values[outerIndex] = innerValue; + if (toRespond === 0) { + if (this.resultSelector) { + this._tryResultSelector(values); + } else { + this.destination.next(values.slice()); + } + } + } + _tryResultSelector(values) { + let result; + try { + result = this.resultSelector.apply(this, values); + } catch (err) { + this.destination.error(err); + return; + } + this.destination.next(result); + } +} + +/***/ }), + +/***/ 75774: +/*!******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/concat.js ***! + \******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ concat: () => (/* binding */ concat) +/* harmony export */ }); +/* harmony import */ var _of__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./of */ 9681); +/* harmony import */ var _operators_concatAll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../operators/concatAll */ 98106); + + +function concat(...observables) { + return (0,_operators_concatAll__WEBPACK_IMPORTED_MODULE_0__.concatAll)()((0,_of__WEBPACK_IMPORTED_MODULE_1__.of)(...observables)); +} + +/***/ }), + +/***/ 70506: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/empty.js ***! \*****************************************************************/ @@ -17813,7 +17996,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ EMPTY: () => (/* binding */ EMPTY), /* harmony export */ empty: () => (/* binding */ empty) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); const EMPTY = new _Observable__WEBPACK_IMPORTED_MODULE_0__.Observable(subscriber => subscriber.complete()); function empty(scheduler) { @@ -17825,7 +18008,7 @@ function emptyScheduled(scheduler) { /***/ }), -/***/ 2130: +/***/ 92130: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/forkJoin.js ***! \********************************************************************/ @@ -17836,11 +18019,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ forkJoin: () => (/* binding */ forkJoin) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isArray */ 7264); -/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/map */ 7422); -/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isObject */ 7560); -/* harmony import */ var _from__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./from */ 502); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isArray */ 97264); +/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/map */ 47422); +/* harmony import */ var _util_isObject__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isObject */ 97560); +/* harmony import */ var _from__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./from */ 30502); @@ -17902,7 +18085,7 @@ function forkJoinInternal(sources, keys) { /***/ }), -/***/ 502: +/***/ 30502: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/from.js ***! \****************************************************************/ @@ -17913,9 +18096,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ from: () => (/* binding */ from) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeTo */ 3787); -/* harmony import */ var _scheduled_scheduled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduled */ 6340); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_subscribeTo__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeTo */ 63787); +/* harmony import */ var _scheduled_scheduled__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduled */ 26340); @@ -17932,7 +18115,7 @@ function from(input, scheduler) { /***/ }), -/***/ 1155: +/***/ 81155: /*!*********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/fromArray.js ***! \*********************************************************************/ @@ -17943,9 +18126,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ fromArray: () => (/* binding */ fromArray) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_subscribeToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeToArray */ 4491); -/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 8577); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_subscribeToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/subscribeToArray */ 24491); +/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 38577); @@ -17959,7 +18142,7 @@ function fromArray(input, scheduler) { /***/ }), -/***/ 3190: +/***/ 93190: /*!*********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/fromEvent.js ***! \*********************************************************************/ @@ -17970,10 +18153,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ fromEvent: () => (/* binding */ fromEvent) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isArray */ 7264); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isFunction */ 5251); -/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../operators/map */ 7422); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_isArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isArray */ 97264); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isFunction */ 45251); +/* harmony import */ var _operators_map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../operators/map */ 47422); @@ -18033,7 +18216,56 @@ function isEventTarget(sourceObj) { /***/ }), -/***/ 9718: +/***/ 17827: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/interval.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ interval: () => (/* binding */ interval) +/* harmony export */ }); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../scheduler/async */ 61432); +/* harmony import */ var _util_isNumeric__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isNumeric */ 20240); + + + +function interval(period = 0, scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async) { + if (!(0,_util_isNumeric__WEBPACK_IMPORTED_MODULE_1__.isNumeric)(period) || period < 0) { + period = 0; + } + if (!scheduler || typeof scheduler.schedule !== 'function') { + scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async; + } + return new _Observable__WEBPACK_IMPORTED_MODULE_2__.Observable(subscriber => { + subscriber.add(scheduler.schedule(dispatch, period, { + subscriber, + counter: 0, + period + })); + return subscriber; + }); +} +function dispatch(state) { + const { + subscriber, + counter, + period + } = state; + subscriber.next(counter); + this.schedule({ + subscriber, + counter: counter + 1, + period + }, period); +} + +/***/ }), + +/***/ 89718: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/merge.js ***! \*****************************************************************/ @@ -18044,10 +18276,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ merge: () => (/* binding */ merge) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 9054); -/* harmony import */ var _operators_mergeAll__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/mergeAll */ 2600); -/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fromArray */ 1155); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); +/* harmony import */ var _operators_mergeAll__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../operators/mergeAll */ 32600); +/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fromArray */ 81155); @@ -18083,9 +18315,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ of: () => (/* binding */ of) /* harmony export */ }); -/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 9054); -/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromArray */ 1155); -/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 8577); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); +/* harmony import */ var _fromArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fromArray */ 81155); +/* harmony import */ var _scheduled_scheduleArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../scheduled/scheduleArray */ 38577); @@ -18101,7 +18333,7 @@ function of(...args) { /***/ }), -/***/ 3994: +/***/ 33994: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/observable/throwError.js ***! \**********************************************************************/ @@ -18112,7 +18344,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ throwError: () => (/* binding */ throwError) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); function throwError(error, scheduler) { if (!scheduler) { @@ -18133,7 +18365,185 @@ function dispatch({ /***/ }), -/***/ 7293: +/***/ 38435: +/*!*****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/observable/timer.js ***! + \*****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ timer: () => (/* binding */ timer) +/* harmony export */ }); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../scheduler/async */ 61432); +/* harmony import */ var _util_isNumeric__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isNumeric */ 20240); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/isScheduler */ 99054); + + + + +function timer(dueTime = 0, periodOrScheduler, scheduler) { + let period = -1; + if ((0,_util_isNumeric__WEBPACK_IMPORTED_MODULE_0__.isNumeric)(periodOrScheduler)) { + period = Number(periodOrScheduler) < 1 && 1 || Number(periodOrScheduler); + } else if ((0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_1__.isScheduler)(periodOrScheduler)) { + scheduler = periodOrScheduler; + } + if (!(0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_1__.isScheduler)(scheduler)) { + scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_2__.async; + } + return new _Observable__WEBPACK_IMPORTED_MODULE_3__.Observable(subscriber => { + const due = (0,_util_isNumeric__WEBPACK_IMPORTED_MODULE_0__.isNumeric)(dueTime) ? dueTime : +dueTime - scheduler.now(); + return scheduler.schedule(dispatch, due, { + index: 0, + period, + subscriber + }); + }); +} +function dispatch(state) { + const { + index, + period, + subscriber + } = state; + subscriber.next(index); + if (subscriber.closed) { + return; + } else if (period === -1) { + return subscriber.complete(); + } + state.index = index + 1; + this.schedule(state, period); +} + +/***/ }), + +/***/ 50702: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/audit.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ audit: () => (/* binding */ audit) +/* harmony export */ }); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../innerSubscribe */ 26241); + +function audit(durationSelector) { + return function auditOperatorFunction(source) { + return source.lift(new AuditOperator(durationSelector)); + }; +} +class AuditOperator { + constructor(durationSelector) { + this.durationSelector = durationSelector; + } + call(subscriber, source) { + return source.subscribe(new AuditSubscriber(subscriber, this.durationSelector)); + } +} +class AuditSubscriber extends _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.SimpleOuterSubscriber { + constructor(destination, durationSelector) { + super(destination); + this.durationSelector = durationSelector; + this.hasValue = false; + } + _next(value) { + this.value = value; + this.hasValue = true; + if (!this.throttled) { + let duration; + try { + const { + durationSelector + } = this; + duration = durationSelector(value); + } catch (err) { + return this.destination.error(err); + } + const innerSubscription = (0,_innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.innerSubscribe)(duration, new _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.SimpleInnerSubscriber(this)); + if (!innerSubscription || innerSubscription.closed) { + this.clearThrottle(); + } else { + this.add(this.throttled = innerSubscription); + } + } + } + clearThrottle() { + const { + value, + hasValue, + throttled + } = this; + if (throttled) { + this.remove(throttled); + this.throttled = undefined; + throttled.unsubscribe(); + } + if (hasValue) { + this.value = undefined; + this.hasValue = false; + this.destination.next(value); + } + } + notifyNext() { + this.clearThrottle(); + } + notifyComplete() { + this.clearThrottle(); + } +} + +/***/ }), + +/***/ 41270: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/auditTime.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ auditTime: () => (/* binding */ auditTime) +/* harmony export */ }); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../scheduler/async */ 61432); +/* harmony import */ var _audit__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./audit */ 50702); +/* harmony import */ var _observable_timer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../observable/timer */ 38435); + + + +function auditTime(duration, scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async) { + return (0,_audit__WEBPACK_IMPORTED_MODULE_1__.audit)(() => (0,_observable_timer__WEBPACK_IMPORTED_MODULE_2__.timer)(duration, scheduler)); +} + +/***/ }), + +/***/ 98106: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/concatAll.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ concatAll: () => (/* binding */ concatAll) +/* harmony export */ }); +/* harmony import */ var _mergeAll__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeAll */ 32600); + +function concatAll() { + return (0,_mergeAll__WEBPACK_IMPORTED_MODULE_0__.mergeAll)(1); +} + +/***/ }), + +/***/ 67293: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/concatMap.js ***! \********************************************************************/ @@ -18144,7 +18554,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ concatMap: () => (/* binding */ concatMap) /* harmony export */ }); -/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 7965); +/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 87965); function concatMap(project, resultSelector) { return (0,_mergeMap__WEBPACK_IMPORTED_MODULE_0__.mergeMap)(project, resultSelector, 1); @@ -18152,7 +18562,79 @@ function concatMap(project, resultSelector) { /***/ }), -/***/ 2345: +/***/ 95933: +/*!***********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/debounceTime.js ***! + \***********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ debounceTime: () => (/* binding */ debounceTime) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _scheduler_async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../scheduler/async */ 61432); + + +function debounceTime(dueTime, scheduler = _scheduler_async__WEBPACK_IMPORTED_MODULE_0__.async) { + return source => source.lift(new DebounceTimeOperator(dueTime, scheduler)); +} +class DebounceTimeOperator { + constructor(dueTime, scheduler) { + this.dueTime = dueTime; + this.scheduler = scheduler; + } + call(subscriber, source) { + return source.subscribe(new DebounceTimeSubscriber(subscriber, this.dueTime, this.scheduler)); + } +} +class DebounceTimeSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_1__.Subscriber { + constructor(destination, dueTime, scheduler) { + super(destination); + this.dueTime = dueTime; + this.scheduler = scheduler; + this.debouncedSubscription = null; + this.lastValue = null; + this.hasValue = false; + } + _next(value) { + this.clearDebounce(); + this.lastValue = value; + this.hasValue = true; + this.add(this.debouncedSubscription = this.scheduler.schedule(dispatchNext, this.dueTime, this)); + } + _complete() { + this.debouncedNext(); + this.destination.complete(); + } + debouncedNext() { + this.clearDebounce(); + if (this.hasValue) { + const { + lastValue + } = this; + this.lastValue = null; + this.hasValue = false; + this.destination.next(lastValue); + } + } + clearDebounce() { + const debouncedSubscription = this.debouncedSubscription; + if (debouncedSubscription !== null) { + this.remove(debouncedSubscription); + debouncedSubscription.unsubscribe(); + this.debouncedSubscription = null; + } + } +} +function dispatchNext(subscriber) { + subscriber.debouncedNext(); +} + +/***/ }), + +/***/ 32345: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/defaultIfEmpty.js ***! \*************************************************************************/ @@ -18163,7 +18645,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ defaultIfEmpty: () => (/* binding */ defaultIfEmpty) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function defaultIfEmpty(defaultValue = null) { return source => source.lift(new DefaultIfEmptyOperator(defaultValue)); @@ -18196,7 +18678,7 @@ class DefaultIfEmptySubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__. /***/ }), -/***/ 5083: +/***/ 45083: /*!*******************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/distinctUntilChanged.js ***! \*******************************************************************************/ @@ -18207,7 +18689,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ distinctUntilChanged: () => (/* binding */ distinctUntilChanged) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function distinctUntilChanged(compare, keySelector) { return source => source.lift(new DistinctUntilChangedOperator(compare, keySelector)); @@ -18265,7 +18747,7 @@ class DistinctUntilChangedSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODUL /***/ }), -/***/ 5046: +/***/ 85046: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/filter.js ***! \*****************************************************************/ @@ -18276,7 +18758,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ filter: () => (/* binding */ filter) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function filter(predicate, thisArg) { return function filterOperatorFunction(source) { @@ -18315,7 +18797,7 @@ class FilterSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscrib /***/ }), -/***/ 786: +/***/ 90786: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/finalize.js ***! \*******************************************************************/ @@ -18326,8 +18808,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ finalize: () => (/* binding */ finalize) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); function finalize(callback) { @@ -18350,7 +18832,7 @@ class FinallySubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscri /***/ }), -/***/ 7627: +/***/ 17627: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/first.js ***! \****************************************************************/ @@ -18361,12 +18843,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ first: () => (/* binding */ first) /* harmony export */ }); -/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/EmptyError */ 1742); -/* harmony import */ var _filter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./filter */ 5046); -/* harmony import */ var _take__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./take */ 6939); -/* harmony import */ var _defaultIfEmpty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./defaultIfEmpty */ 2345); -/* harmony import */ var _throwIfEmpty__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./throwIfEmpty */ 1620); -/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 6361); +/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../util/EmptyError */ 51742); +/* harmony import */ var _filter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./filter */ 85046); +/* harmony import */ var _take__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./take */ 46939); +/* harmony import */ var _defaultIfEmpty__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./defaultIfEmpty */ 32345); +/* harmony import */ var _throwIfEmpty__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./throwIfEmpty */ 91620); +/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 56361); @@ -18380,7 +18862,7 @@ function first(predicate, defaultValue) { /***/ }), -/***/ 7422: +/***/ 47422: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/map.js ***! \**************************************************************/ @@ -18392,7 +18874,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ MapOperator: () => (/* binding */ MapOperator), /* harmony export */ map: () => (/* binding */ map) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function map(project, thisArg) { return function mapOperation(source) { @@ -18432,7 +18914,7 @@ class MapSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber /***/ }), -/***/ 2600: +/***/ 32600: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/mergeAll.js ***! \*******************************************************************/ @@ -18443,8 +18925,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ mergeAll: () => (/* binding */ mergeAll) /* harmony export */ }); -/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 7965); -/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 6361); +/* harmony import */ var _mergeMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeMap */ 87965); +/* harmony import */ var _util_identity__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/identity */ 56361); function mergeAll(concurrent = Number.POSITIVE_INFINITY) { @@ -18453,7 +18935,7 @@ function mergeAll(concurrent = Number.POSITIVE_INFINITY) { /***/ }), -/***/ 7965: +/***/ 87965: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/mergeMap.js ***! \*******************************************************************/ @@ -18467,9 +18949,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ flatMap: () => (/* binding */ flatMap), /* harmony export */ mergeMap: () => (/* binding */ mergeMap) /* harmony export */ }); -/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 7422); -/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 502); -/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 6241); +/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 47422); +/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 30502); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 26241); @@ -18552,7 +19034,7 @@ const flatMap = mergeMap; /***/ }), -/***/ 202: +/***/ 80202: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/multicast.js ***! \********************************************************************/ @@ -18564,7 +19046,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ MulticastOperator: () => (/* binding */ MulticastOperator), /* harmony export */ multicast: () => (/* binding */ multicast) /* harmony export */ }); -/* harmony import */ var _observable_ConnectableObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/ConnectableObservable */ 9148); +/* harmony import */ var _observable_ConnectableObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/ConnectableObservable */ 19148); function multicast(subjectOrSubjectFactory, selector) { return function multicastOperatorFunction(source) { @@ -18603,7 +19085,7 @@ class MulticastOperator { /***/ }), -/***/ 8892: +/***/ 28892: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/observeOn.js ***! \********************************************************************/ @@ -18617,8 +19099,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ ObserveOnSubscriber: () => (/* binding */ ObserveOnSubscriber), /* harmony export */ observeOn: () => (/* binding */ observeOn) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _Notification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Notification */ 7618); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _Notification__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Notification */ 77618); function observeOn(scheduler, delay = 0) { @@ -18674,7 +19156,49 @@ class ObserveOnMessage { /***/ }), -/***/ 6159: +/***/ 66407: +/*!*******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/pairwise.js ***! + \*******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ pairwise: () => (/* binding */ pairwise) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); + +function pairwise() { + return source => source.lift(new PairwiseOperator()); +} +class PairwiseOperator { + call(subscriber, source) { + return source.subscribe(new PairwiseSubscriber(subscriber)); + } +} +class PairwiseSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + constructor(destination) { + super(destination); + this.hasPrev = false; + } + _next(value) { + let pair; + if (this.hasPrev) { + pair = [this.prev, value]; + } else { + this.hasPrev = true; + } + this.prev = value; + if (pair) { + this.destination.next(pair); + } + } +} + +/***/ }), + +/***/ 26159: /*!*******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/refCount.js ***! \*******************************************************************/ @@ -18685,7 +19209,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ refCount: () => (/* binding */ refCount) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function refCount() { return function refCountOperatorFunction(source) { @@ -18746,7 +19270,7 @@ class RefCountSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscr /***/ }), -/***/ 1272: +/***/ 99718: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/share.js ***! \****************************************************************/ @@ -18757,9 +19281,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ share: () => (/* binding */ share) /* harmony export */ }); -/* harmony import */ var _multicast__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./multicast */ 202); -/* harmony import */ var _refCount__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./refCount */ 6159); -/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subject */ 2484); +/* harmony import */ var _multicast__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./multicast */ 80202); +/* harmony import */ var _refCount__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./refCount */ 26159); +/* harmony import */ var _Subject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subject */ 32484); @@ -18772,7 +19296,153 @@ function share() { /***/ }), -/***/ 6520: +/***/ 680: +/*!**********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/shareReplay.js ***! + \**********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ shareReplay: () => (/* binding */ shareReplay) +/* harmony export */ }); +/* harmony import */ var _ReplaySubject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../ReplaySubject */ 76309); + +function shareReplay(configOrBufferSize, windowTime, scheduler) { + let config; + if (configOrBufferSize && typeof configOrBufferSize === 'object') { + config = configOrBufferSize; + } else { + config = { + bufferSize: configOrBufferSize, + windowTime, + refCount: false, + scheduler + }; + } + return source => source.lift(shareReplayOperator(config)); +} +function shareReplayOperator({ + bufferSize = Number.POSITIVE_INFINITY, + windowTime = Number.POSITIVE_INFINITY, + refCount: useRefCount, + scheduler +}) { + let subject; + let refCount = 0; + let subscription; + let hasError = false; + let isComplete = false; + return function shareReplayOperation(source) { + refCount++; + let innerSub; + if (!subject || hasError) { + hasError = false; + subject = new _ReplaySubject__WEBPACK_IMPORTED_MODULE_0__.ReplaySubject(bufferSize, windowTime, scheduler); + innerSub = subject.subscribe(this); + subscription = source.subscribe({ + next(value) { + subject.next(value); + }, + error(err) { + hasError = true; + subject.error(err); + }, + complete() { + isComplete = true; + subscription = undefined; + subject.complete(); + } + }); + if (isComplete) { + subscription = undefined; + } + } else { + innerSub = subject.subscribe(this); + } + this.add(() => { + refCount--; + innerSub.unsubscribe(); + innerSub = undefined; + if (subscription && !isComplete && useRefCount && refCount === 0) { + subscription.unsubscribe(); + subscription = undefined; + subject = undefined; + } + }); + }; +} + +/***/ }), + +/***/ 51063: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/skip.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ skip: () => (/* binding */ skip) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); + +function skip(count) { + return source => source.lift(new SkipOperator(count)); +} +class SkipOperator { + constructor(total) { + this.total = total; + } + call(subscriber, source) { + return source.subscribe(new SkipSubscriber(subscriber, this.total)); + } +} +class SkipSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber { + constructor(destination, total) { + super(destination); + this.total = total; + this.count = 0; + } + _next(x) { + if (++this.count > this.total) { + this.destination.next(x); + } + } +} + +/***/ }), + +/***/ 1062: +/*!********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/operators/startWith.js ***! + \********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ startWith: () => (/* binding */ startWith) +/* harmony export */ }); +/* harmony import */ var _observable_concat__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../observable/concat */ 75774); +/* harmony import */ var _util_isScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isScheduler */ 99054); + + +function startWith(...array) { + const scheduler = array[array.length - 1]; + if ((0,_util_isScheduler__WEBPACK_IMPORTED_MODULE_0__.isScheduler)(scheduler)) { + array.pop(); + return source => (0,_observable_concat__WEBPACK_IMPORTED_MODULE_1__.concat)(array, source, scheduler); + } else { + return source => (0,_observable_concat__WEBPACK_IMPORTED_MODULE_1__.concat)(array, source); + } +} + +/***/ }), + +/***/ 36520: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/switchMap.js ***! \********************************************************************/ @@ -18783,9 +19453,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ switchMap: () => (/* binding */ switchMap) /* harmony export */ }); -/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 7422); -/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 502); -/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 6241); +/* harmony import */ var _map__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./map */ 47422); +/* harmony import */ var _observable_from__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/from */ 30502); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../innerSubscribe */ 26241); @@ -18858,7 +19528,7 @@ class SwitchMapSubscriber extends _innerSubscribe__WEBPACK_IMPORTED_MODULE_2__.S /***/ }), -/***/ 6939: +/***/ 46939: /*!***************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/take.js ***! \***************************************************************/ @@ -18869,9 +19539,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ take: () => (/* binding */ take) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _util_ArgumentOutOfRangeError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/ArgumentOutOfRangeError */ 2081); -/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/empty */ 506); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _util_ArgumentOutOfRangeError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/ArgumentOutOfRangeError */ 72081); +/* harmony import */ var _observable_empty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../observable/empty */ 70506); @@ -18916,7 +19586,7 @@ class TakeSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_2__.Subscriber /***/ }), -/***/ 3303: +/***/ 13303: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/takeUntil.js ***! \********************************************************************/ @@ -18927,7 +19597,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ takeUntil: () => (/* binding */ takeUntil) /* harmony export */ }); -/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../innerSubscribe */ 6241); +/* harmony import */ var _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../innerSubscribe */ 26241); function takeUntil(notifier) { return source => source.lift(new TakeUntilOperator(notifier)); @@ -18960,7 +19630,7 @@ class TakeUntilSubscriber extends _innerSubscribe__WEBPACK_IMPORTED_MODULE_0__.S /***/ }), -/***/ 5746: +/***/ 15746: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/tap.js ***! \**************************************************************/ @@ -18971,9 +19641,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ tap: () => (/* binding */ tap) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); /* harmony import */ var _util_noop__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/noop */ 5717); -/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isFunction */ 5251); +/* harmony import */ var _util_isFunction__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isFunction */ 45251); @@ -19041,7 +19711,7 @@ class TapSubscriber extends _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber /***/ }), -/***/ 1620: +/***/ 91620: /*!***********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/operators/throwIfEmpty.js ***! \***********************************************************************/ @@ -19052,8 +19722,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ throwIfEmpty: () => (/* binding */ throwIfEmpty) /* harmony export */ }); -/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/EmptyError */ 1742); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _util_EmptyError__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/EmptyError */ 51742); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function throwIfEmpty(errorFactory = defaultErrorFactory) { @@ -19099,7 +19769,7 @@ function defaultErrorFactory() { /***/ }), -/***/ 8577: +/***/ 38577: /*!************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduleArray.js ***! \************************************************************************/ @@ -19110,8 +19780,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduleArray: () => (/* binding */ scheduleArray) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); function scheduleArray(input, scheduler) { @@ -19134,7 +19804,7 @@ function scheduleArray(input, scheduler) { /***/ }), -/***/ 5299: +/***/ 35299: /*!***************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduleIterable.js ***! \***************************************************************************/ @@ -19145,9 +19815,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduleIterable: () => (/* binding */ scheduleIterable) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/iterator */ 6603); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/iterator */ 86603); @@ -19193,7 +19863,7 @@ function scheduleIterable(input, scheduler) { /***/ }), -/***/ 8275: +/***/ 68275: /*!*****************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduleObservable.js ***! \*****************************************************************************/ @@ -19204,9 +19874,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduleObservable: () => (/* binding */ scheduleObservable) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/observable */ 5129); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../symbol/observable */ 65129); @@ -19233,7 +19903,7 @@ function scheduleObservable(input, scheduler) { /***/ }), -/***/ 5576: +/***/ 65576: /*!**************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/schedulePromise.js ***! \**************************************************************************/ @@ -19244,8 +19914,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ schedulePromise: () => (/* binding */ schedulePromise) /* harmony export */ }); -/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 3064); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Subscription */ 84614); function schedulePromise(input, scheduler) { @@ -19265,7 +19935,7 @@ function schedulePromise(input, scheduler) { /***/ }), -/***/ 6340: +/***/ 26340: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduled/scheduled.js ***! \********************************************************************/ @@ -19276,14 +19946,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ scheduled: () => (/* binding */ scheduled) /* harmony export */ }); -/* harmony import */ var _scheduleObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./scheduleObservable */ 8275); -/* harmony import */ var _schedulePromise__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./schedulePromise */ 5576); -/* harmony import */ var _scheduleArray__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduleArray */ 8577); -/* harmony import */ var _scheduleIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./scheduleIterable */ 5299); -/* harmony import */ var _util_isInteropObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isInteropObservable */ 9428); +/* harmony import */ var _scheduleObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./scheduleObservable */ 68275); +/* harmony import */ var _schedulePromise__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./schedulePromise */ 65576); +/* harmony import */ var _scheduleArray__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./scheduleArray */ 38577); +/* harmony import */ var _scheduleIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./scheduleIterable */ 35299); +/* harmony import */ var _util_isInteropObservable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util/isInteropObservable */ 49428); /* harmony import */ var _util_isPromise__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../util/isPromise */ 8290); -/* harmony import */ var _util_isArrayLike__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/isArrayLike */ 4361); -/* harmony import */ var _util_isIterable__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/isIterable */ 5540); +/* harmony import */ var _util_isArrayLike__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../util/isArrayLike */ 24361); +/* harmony import */ var _util_isIterable__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../util/isIterable */ 95540); @@ -19309,7 +19979,7 @@ function scheduled(input, scheduler) { /***/ }), -/***/ 8674: +/***/ 38674: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/Action.js ***! \*****************************************************************/ @@ -19320,7 +19990,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ Action: () => (/* binding */ Action) /* harmony export */ }); -/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscription */ 4614); +/* harmony import */ var _Subscription__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscription */ 84614); class Action extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Subscription { constructor(scheduler, work) { @@ -19333,7 +20003,171 @@ class Action extends _Subscription__WEBPACK_IMPORTED_MODULE_0__.Subscription { /***/ }), -/***/ 5610: +/***/ 69922: +/*!*******************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameAction.js ***! + \*******************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AnimationFrameAction: () => (/* binding */ AnimationFrameAction) +/* harmony export */ }); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 65610); + +class AnimationFrameAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction { + constructor(scheduler, work) { + super(scheduler, work); + this.scheduler = scheduler; + this.work = work; + } + requestAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0) { + return super.requestAsyncId(scheduler, id, delay); + } + scheduler.actions.push(this); + return scheduler.scheduled || (scheduler.scheduled = requestAnimationFrame(() => scheduler.flush(null))); + } + recycleAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0 || delay === null && this.delay > 0) { + return super.recycleAsyncId(scheduler, id, delay); + } + if (scheduler.actions.length === 0) { + cancelAnimationFrame(id); + scheduler.scheduled = undefined; + } + return undefined; + } +} + +/***/ }), + +/***/ 83453: +/*!**********************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AnimationFrameScheduler.js ***! + \**********************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AnimationFrameScheduler: () => (/* binding */ AnimationFrameScheduler) +/* harmony export */ }); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); + +class AnimationFrameScheduler extends _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler { + flush(action) { + this.active = true; + this.scheduled = undefined; + const { + actions + } = this; + let error; + let index = -1; + let count = actions.length; + action = action || actions.shift(); + do { + if (error = action.execute(action.state, action.delay)) { + break; + } + } while (++index < count && (action = actions.shift())); + this.active = false; + if (error) { + while (++index < count && (action = actions.shift())) { + action.unsubscribe(); + } + throw error; + } + } +} + +/***/ }), + +/***/ 77130: +/*!*********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsapAction.js ***! + \*********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AsapAction: () => (/* binding */ AsapAction) +/* harmony export */ }); +/* harmony import */ var _util_Immediate__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util/Immediate */ 14642); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 65610); + + +class AsapAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction { + constructor(scheduler, work) { + super(scheduler, work); + this.scheduler = scheduler; + this.work = work; + } + requestAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0) { + return super.requestAsyncId(scheduler, id, delay); + } + scheduler.actions.push(this); + return scheduler.scheduled || (scheduler.scheduled = _util_Immediate__WEBPACK_IMPORTED_MODULE_1__.Immediate.setImmediate(scheduler.flush.bind(scheduler, null))); + } + recycleAsyncId(scheduler, id, delay = 0) { + if (delay !== null && delay > 0 || delay === null && this.delay > 0) { + return super.recycleAsyncId(scheduler, id, delay); + } + if (scheduler.actions.length === 0) { + _util_Immediate__WEBPACK_IMPORTED_MODULE_1__.Immediate.clearImmediate(id); + scheduler.scheduled = undefined; + } + return undefined; + } +} + +/***/ }), + +/***/ 63263: +/*!************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsapScheduler.js ***! + \************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ AsapScheduler: () => (/* binding */ AsapScheduler) +/* harmony export */ }); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); + +class AsapScheduler extends _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler { + flush(action) { + this.active = true; + this.scheduled = undefined; + const { + actions + } = this; + let error; + let index = -1; + let count = actions.length; + action = action || actions.shift(); + do { + if (error = action.execute(action.state, action.delay)) { + break; + } + } while (++index < count && (action = actions.shift())); + this.active = false; + if (error) { + while (++index < count && (action = actions.shift())) { + action.unsubscribe(); + } + throw error; + } + } +} + +/***/ }), + +/***/ 65610: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsyncAction.js ***! \**********************************************************************/ @@ -19344,7 +20178,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AsyncAction: () => (/* binding */ AsyncAction) /* harmony export */ }); -/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Action */ 8674); +/* harmony import */ var _Action__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Action */ 38674); class AsyncAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action { constructor(scheduler, work) { @@ -19425,7 +20259,7 @@ class AsyncAction extends _Action__WEBPACK_IMPORTED_MODULE_0__.Action { /***/ }), -/***/ 7203: +/***/ 57203: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/AsyncScheduler.js ***! \*************************************************************************/ @@ -19436,7 +20270,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AsyncScheduler: () => (/* binding */ AsyncScheduler) /* harmony export */ }); -/* harmony import */ var _Scheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Scheduler */ 7792); +/* harmony import */ var _Scheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Scheduler */ 11109); class AsyncScheduler extends _Scheduler__WEBPACK_IMPORTED_MODULE_0__.Scheduler { constructor(SchedulerAction, now = _Scheduler__WEBPACK_IMPORTED_MODULE_0__.Scheduler.now) { @@ -19485,7 +20319,7 @@ class AsyncScheduler extends _Scheduler__WEBPACK_IMPORTED_MODULE_0__.Scheduler { /***/ }), -/***/ 5586: +/***/ 75586: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/QueueAction.js ***! \**********************************************************************/ @@ -19496,7 +20330,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QueueAction: () => (/* binding */ QueueAction) /* harmony export */ }); -/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 5610); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncAction */ 65610); class QueueAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction { constructor(scheduler, work) { @@ -19526,7 +20360,7 @@ class QueueAction extends _AsyncAction__WEBPACK_IMPORTED_MODULE_0__.AsyncAction /***/ }), -/***/ 4942: +/***/ 64942: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/QueueScheduler.js ***! \*************************************************************************/ @@ -19537,13 +20371,76 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QueueScheduler: () => (/* binding */ QueueScheduler) /* harmony export */ }); -/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 7203); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); class QueueScheduler extends _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler {} /***/ }), -/***/ 6948: +/***/ 82727: +/*!*************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/animationFrame.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ animationFrame: () => (/* binding */ animationFrame), +/* harmony export */ animationFrameScheduler: () => (/* binding */ animationFrameScheduler) +/* harmony export */ }); +/* harmony import */ var _AnimationFrameAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnimationFrameAction */ 69922); +/* harmony import */ var _AnimationFrameScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AnimationFrameScheduler */ 83453); + + +const animationFrameScheduler = new _AnimationFrameScheduler__WEBPACK_IMPORTED_MODULE_0__.AnimationFrameScheduler(_AnimationFrameAction__WEBPACK_IMPORTED_MODULE_1__.AnimationFrameAction); +const animationFrame = animationFrameScheduler; + +/***/ }), + +/***/ 81151: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/asap.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ asap: () => (/* binding */ asap), +/* harmony export */ asapScheduler: () => (/* binding */ asapScheduler) +/* harmony export */ }); +/* harmony import */ var _AsapAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AsapAction */ 77130); +/* harmony import */ var _AsapScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsapScheduler */ 63263); + + +const asapScheduler = new _AsapScheduler__WEBPACK_IMPORTED_MODULE_0__.AsapScheduler(_AsapAction__WEBPACK_IMPORTED_MODULE_1__.AsapAction); +const asap = asapScheduler; + +/***/ }), + +/***/ 61432: +/*!****************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/scheduler/async.js ***! + \****************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ async: () => (/* binding */ async), +/* harmony export */ asyncScheduler: () => (/* binding */ asyncScheduler) +/* harmony export */ }); +/* harmony import */ var _AsyncAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AsyncAction */ 65610); +/* harmony import */ var _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AsyncScheduler */ 57203); + + +const asyncScheduler = new _AsyncScheduler__WEBPACK_IMPORTED_MODULE_0__.AsyncScheduler(_AsyncAction__WEBPACK_IMPORTED_MODULE_1__.AsyncAction); +const async = asyncScheduler; + +/***/ }), + +/***/ 76948: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/scheduler/queue.js ***! \****************************************************************/ @@ -19555,8 +20452,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ queue: () => (/* binding */ queue), /* harmony export */ queueScheduler: () => (/* binding */ queueScheduler) /* harmony export */ }); -/* harmony import */ var _QueueAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./QueueAction */ 5586); -/* harmony import */ var _QueueScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./QueueScheduler */ 4942); +/* harmony import */ var _QueueAction__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./QueueAction */ 75586); +/* harmony import */ var _QueueScheduler__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./QueueScheduler */ 64942); const queueScheduler = new _QueueScheduler__WEBPACK_IMPORTED_MODULE_0__.QueueScheduler(_QueueAction__WEBPACK_IMPORTED_MODULE_1__.QueueAction); @@ -19564,7 +20461,7 @@ const queue = queueScheduler; /***/ }), -/***/ 6603: +/***/ 86603: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/symbol/iterator.js ***! \****************************************************************/ @@ -19588,7 +20485,7 @@ const $$iterator = iterator; /***/ }), -/***/ 5129: +/***/ 65129: /*!******************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/symbol/observable.js ***! \******************************************************************/ @@ -19603,7 +20500,7 @@ const observable = (() => typeof Symbol === 'function' && Symbol.observable || ' /***/ }), -/***/ 1999: +/***/ 51999: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/symbol/rxSubscriber.js ***! \********************************************************************/ @@ -19620,7 +20517,7 @@ const $$rxSubscriber = rxSubscriber; /***/ }), -/***/ 2081: +/***/ 72081: /*!*****************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/ArgumentOutOfRangeError.js ***! \*****************************************************************************/ @@ -19645,7 +20542,7 @@ const ArgumentOutOfRangeError = ArgumentOutOfRangeErrorImpl; /***/ }), -/***/ 1742: +/***/ 51742: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/EmptyError.js ***! \****************************************************************/ @@ -19670,7 +20567,48 @@ const EmptyError = EmptyErrorImpl; /***/ }), -/***/ 6950: +/***/ 14642: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/Immediate.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ Immediate: () => (/* binding */ Immediate), +/* harmony export */ TestTools: () => (/* binding */ TestTools) +/* harmony export */ }); +let nextHandle = 1; +const RESOLVED = (() => Promise.resolve())(); +const activeHandles = {}; +function findAndClearHandle(handle) { + if (handle in activeHandles) { + delete activeHandles[handle]; + return true; + } + return false; +} +const Immediate = { + setImmediate(cb) { + const handle = nextHandle++; + activeHandles[handle] = true; + RESOLVED.then(() => findAndClearHandle(handle) && cb()); + return handle; + }, + clearImmediate(handle) { + findAndClearHandle(handle); + } +}; +const TestTools = { + pending() { + return Object.keys(activeHandles).length; + } +}; + +/***/ }), + +/***/ 66950: /*!*****************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/ObjectUnsubscribedError.js ***! \*****************************************************************************/ @@ -19695,7 +20633,7 @@ const ObjectUnsubscribedError = ObjectUnsubscribedErrorImpl; /***/ }), -/***/ 9164: +/***/ 29164: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/UnsubscriptionError.js ***! \*************************************************************************/ @@ -19722,7 +20660,7 @@ const UnsubscriptionError = UnsubscriptionErrorImpl; /***/ }), -/***/ 3159: +/***/ 73159: /*!********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/canReportError.js ***! \********************************************************************/ @@ -19733,7 +20671,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ canReportError: () => (/* binding */ canReportError) /* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); function canReportError(observer) { while (observer) { @@ -19755,7 +20693,7 @@ function canReportError(observer) { /***/ }), -/***/ 8722: +/***/ 98722: /*!*********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/hostReportError.js ***! \*********************************************************************/ @@ -19774,7 +20712,7 @@ function hostReportError(err) { /***/ }), -/***/ 6361: +/***/ 56361: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/identity.js ***! \**************************************************************/ @@ -19791,7 +20729,7 @@ function identity(x) { /***/ }), -/***/ 7264: +/***/ 97264: /*!*************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isArray.js ***! \*************************************************************/ @@ -19806,7 +20744,7 @@ const isArray = (() => Array.isArray || (x => x && typeof x.length === 'number') /***/ }), -/***/ 4361: +/***/ 24361: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isArrayLike.js ***! \*****************************************************************/ @@ -19821,7 +20759,7 @@ const isArrayLike = x => x && typeof x.length === 'number' && typeof x !== 'func /***/ }), -/***/ 5251: +/***/ 45251: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isFunction.js ***! \****************************************************************/ @@ -19838,7 +20776,7 @@ function isFunction(x) { /***/ }), -/***/ 9428: +/***/ 49428: /*!*************************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isInteropObservable.js ***! \*************************************************************************/ @@ -19849,7 +20787,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ isInteropObservable: () => (/* binding */ isInteropObservable) /* harmony export */ }); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 5129); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 65129); function isInteropObservable(input) { return input && typeof input[_symbol_observable__WEBPACK_IMPORTED_MODULE_0__.observable] === 'function'; @@ -19857,7 +20795,7 @@ function isInteropObservable(input) { /***/ }), -/***/ 5540: +/***/ 95540: /*!****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isIterable.js ***! \****************************************************************/ @@ -19868,7 +20806,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ isIterable: () => (/* binding */ isIterable) /* harmony export */ }); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 6603); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 86603); function isIterable(input) { return input && typeof input[_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__.iterator] === 'function'; @@ -19876,7 +20814,26 @@ function isIterable(input) { /***/ }), -/***/ 7560: +/***/ 20240: +/*!***************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/isNumeric.js ***! + \***************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ isNumeric: () => (/* binding */ isNumeric) +/* harmony export */ }); +/* harmony import */ var _isArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray */ 97264); + +function isNumeric(val) { + return !(0,_isArray__WEBPACK_IMPORTED_MODULE_0__.isArray)(val) && val - parseFloat(val) + 1 >= 0; +} + +/***/ }), + +/***/ 97560: /*!**************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isObject.js ***! \**************************************************************/ @@ -19893,6 +20850,25 @@ function isObject(x) { /***/ }), +/***/ 72450: +/*!******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/isObservable.js ***! + \******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ isObservable: () => (/* binding */ isObservable) +/* harmony export */ }); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Observable */ 73064); + +function isObservable(obj) { + return !!obj && (obj instanceof _Observable__WEBPACK_IMPORTED_MODULE_0__.Observable || typeof obj.lift === 'function' && typeof obj.subscribe === 'function'); +} + +/***/ }), + /***/ 8290: /*!***************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isPromise.js ***! @@ -19910,7 +20886,7 @@ function isPromise(value) { /***/ }), -/***/ 9054: +/***/ 99054: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/isScheduler.js ***! \*****************************************************************/ @@ -19942,7 +20918,7 @@ function noop() {} /***/ }), -/***/ 7734: +/***/ 27734: /*!**********************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/pipe.js ***! \**********************************************************/ @@ -19954,7 +20930,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ pipe: () => (/* binding */ pipe), /* harmony export */ pipeFromArray: () => (/* binding */ pipeFromArray) /* harmony export */ }); -/* harmony import */ var _identity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity */ 6361); +/* harmony import */ var _identity__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity */ 56361); function pipe(...fns) { return pipeFromArray(fns); @@ -19973,7 +20949,7 @@ function pipeFromArray(fns) { /***/ }), -/***/ 3787: +/***/ 63787: /*!*****************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeTo.js ***! \*****************************************************************/ @@ -19984,15 +20960,15 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ subscribeTo: () => (/* binding */ subscribeTo) /* harmony export */ }); -/* harmony import */ var _subscribeToArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./subscribeToArray */ 4491); -/* harmony import */ var _subscribeToPromise__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./subscribeToPromise */ 9757); -/* harmony import */ var _subscribeToIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./subscribeToIterable */ 8883); -/* harmony import */ var _subscribeToObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./subscribeToObservable */ 3746); -/* harmony import */ var _isArrayLike__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLike */ 4361); +/* harmony import */ var _subscribeToArray__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./subscribeToArray */ 24491); +/* harmony import */ var _subscribeToPromise__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./subscribeToPromise */ 29757); +/* harmony import */ var _subscribeToIterable__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./subscribeToIterable */ 78883); +/* harmony import */ var _subscribeToObservable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./subscribeToObservable */ 93746); +/* harmony import */ var _isArrayLike__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLike */ 24361); /* harmony import */ var _isPromise__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isPromise */ 8290); -/* harmony import */ var _isObject__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./isObject */ 7560); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../symbol/iterator */ 6603); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 5129); +/* harmony import */ var _isObject__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./isObject */ 97560); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../symbol/iterator */ 86603); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 65129); @@ -20020,321 +20996,10753 @@ const subscribeTo = result => { /***/ }), -/***/ 4491: +/***/ 24491: /*!**********************************************************************!*\ !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToArray.js ***! \**********************************************************************/ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToArray: () => (/* binding */ subscribeToArray) -/* harmony export */ }); -const subscribeToArray = array => subscriber => { - for (let i = 0, len = array.length; i < len && !subscriber.closed; i++) { - subscriber.next(array[i]); +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToArray: () => (/* binding */ subscribeToArray) +/* harmony export */ }); +const subscribeToArray = array => subscriber => { + for (let i = 0, len = array.length; i < len && !subscriber.closed; i++) { + subscriber.next(array[i]); + } + subscriber.complete(); +}; + +/***/ }), + +/***/ 78883: +/*!*************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToIterable.js ***! + \*************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToIterable: () => (/* binding */ subscribeToIterable) +/* harmony export */ }); +/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 86603); + +const subscribeToIterable = iterable => subscriber => { + const iterator = iterable[_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__.iterator](); + do { + let item; + try { + item = iterator.next(); + } catch (err) { + subscriber.error(err); + return subscriber; + } + if (item.done) { + subscriber.complete(); + break; + } + subscriber.next(item.value); + if (subscriber.closed) { + break; + } + } while (true); + if (typeof iterator.return === 'function') { + subscriber.add(() => { + if (iterator.return) { + iterator.return(); + } + }); + } + return subscriber; +}; + +/***/ }), + +/***/ 93746: +/*!***************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToObservable.js ***! + \***************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToObservable: () => (/* binding */ subscribeToObservable) +/* harmony export */ }); +/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 65129); + +const subscribeToObservable = obj => subscriber => { + const obs = obj[_symbol_observable__WEBPACK_IMPORTED_MODULE_0__.observable](); + if (typeof obs.subscribe !== 'function') { + throw new TypeError('Provided object does not correctly implement Symbol.observable'); + } else { + return obs.subscribe(subscriber); + } +}; + +/***/ }), + +/***/ 29757: +/*!************************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToPromise.js ***! + \************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToPromise: () => (/* binding */ subscribeToPromise) +/* harmony export */ }); +/* harmony import */ var _hostReportError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./hostReportError */ 98722); + +const subscribeToPromise = promise => subscriber => { + promise.then(value => { + if (!subscriber.closed) { + subscriber.next(value); + subscriber.complete(); + } + }, err => subscriber.error(err)).then(null, _hostReportError__WEBPACK_IMPORTED_MODULE_0__.hostReportError); + return subscriber; +}; + +/***/ }), + +/***/ 24660: +/*!***********************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToResult.js ***! + \***********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ subscribeToResult: () => (/* binding */ subscribeToResult) +/* harmony export */ }); +/* harmony import */ var _InnerSubscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../InnerSubscriber */ 16090); +/* harmony import */ var _subscribeTo__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./subscribeTo */ 63787); +/* harmony import */ var _Observable__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Observable */ 73064); + + + +function subscribeToResult(outerSubscriber, result, outerValue, outerIndex, innerSubscriber = new _InnerSubscriber__WEBPACK_IMPORTED_MODULE_0__.InnerSubscriber(outerSubscriber, outerValue, outerIndex)) { + if (innerSubscriber.closed) { + return undefined; + } + if (result instanceof _Observable__WEBPACK_IMPORTED_MODULE_1__.Observable) { + return result.subscribe(innerSubscriber); + } + return (0,_subscribeTo__WEBPACK_IMPORTED_MODULE_2__.subscribeTo)(result)(innerSubscriber); +} + +/***/ }), + +/***/ 6920: +/*!******************************************************************!*\ + !*** ./node_modules/rxjs/_esm2015/internal/util/toSubscriber.js ***! + \******************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ toSubscriber: () => (/* binding */ toSubscriber) +/* harmony export */ }); +/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 55142); +/* harmony import */ var _symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../symbol/rxSubscriber */ 51999); +/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Observer */ 16195); + + + +function toSubscriber(nextOrObserver, error, complete) { + if (nextOrObserver) { + if (nextOrObserver instanceof _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber) { + return nextOrObserver; + } + if (nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber]) { + return nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber](); + } + } + if (!nextOrObserver && !error && !complete) { + return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(_Observer__WEBPACK_IMPORTED_MODULE_2__.empty); + } + return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(nextOrObserver, error, complete); +} + +/***/ }), + +/***/ 99210: +/*!******************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/native.js ***! + \******************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ + randomUUID +}); + +/***/ }), + +/***/ 39772: +/*!*****************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/regex.js ***! + \*****************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); + +/***/ }), + +/***/ 47948: +/*!***************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/rng.js ***! + \***************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (/* binding */ rng) +/* harmony export */ }); +// Unique ID creation requires a high quality random # generator. In the browser we therefore +// require the crypto API and do not support built-in fallback to lower quality random number +// generators (like Math.random()). +let getRandomValues; +const rnds8 = new Uint8Array(16); +function rng() { + // lazy load so that environments that need to polyfill have a chance to do so + if (!getRandomValues) { + // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. + getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto); + if (!getRandomValues) { + throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); + } + } + return getRandomValues(rnds8); +} + +/***/ }), + +/***/ 10564: +/*!*********************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/stringify.js ***! + \*********************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), +/* harmony export */ unsafeStringify: () => (/* binding */ unsafeStringify) +/* harmony export */ }); +/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ 69359); + +/** + * Convert array of 16 byte values to UUID string format of the form: + * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + */ + +const byteToHex = []; +for (let i = 0; i < 256; ++i) { + byteToHex.push((i + 0x100).toString(16).slice(1)); +} +function unsafeStringify(arr, offset = 0) { + // Note: Be careful editing this code! It's been tuned for performance + // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 + return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]; +} +function stringify(arr, offset = 0) { + const uuid = unsafeStringify(arr, offset); // Consistency check for valid UUID. If this throws, it's likely due to one + // of the following: + // - One or more input array values don't map to a hex octet (leading to + // "undefined" in the uuid) + // - Invalid input values for the RFC `version` or `variant` fields + + if (!(0,_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) { + throw TypeError('Stringified UUID is invalid'); + } + return uuid; +} +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (stringify); + +/***/ }), + +/***/ 94289: +/*!**************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/v4.js ***! + \**************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _native_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./native.js */ 99210); +/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rng.js */ 47948); +/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./stringify.js */ 10564); + + + +function v4(options, buf, offset) { + if (_native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID && !buf && !options) { + return _native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID(); + } + options = options || {}; + const rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_1__["default"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + + rnds[6] = rnds[6] & 0x0f | 0x40; + rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided + + if (buf) { + offset = offset || 0; + for (let i = 0; i < 16; ++i) { + buf[offset + i] = rnds[i]; + } + return buf; + } + return (0,_stringify_js__WEBPACK_IMPORTED_MODULE_2__.unsafeStringify)(rnds); +} +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (v4); + +/***/ }), + +/***/ 69359: +/*!********************************************************!*\ + !*** ./node_modules/uuid/dist/esm-browser/validate.js ***! + \********************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) +/* harmony export */ }); +/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ 39772); + +function validate(uuid) { + return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__["default"].test(uuid); +} +/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (validate); + +/***/ }), + +/***/ 93170: +/*!*****************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/a11y.mjs ***! + \*****************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ A11yModule: () => (/* binding */ A11yModule), +/* harmony export */ ActiveDescendantKeyManager: () => (/* binding */ ActiveDescendantKeyManager), +/* harmony export */ AriaDescriber: () => (/* binding */ AriaDescriber), +/* harmony export */ CDK_DESCRIBEDBY_HOST_ATTRIBUTE: () => (/* binding */ CDK_DESCRIBEDBY_HOST_ATTRIBUTE), +/* harmony export */ CDK_DESCRIBEDBY_ID_PREFIX: () => (/* binding */ CDK_DESCRIBEDBY_ID_PREFIX), +/* harmony export */ CdkAriaLive: () => (/* binding */ CdkAriaLive), +/* harmony export */ CdkMonitorFocus: () => (/* binding */ CdkMonitorFocus), +/* harmony export */ CdkTrapFocus: () => (/* binding */ CdkTrapFocus), +/* harmony export */ ConfigurableFocusTrap: () => (/* binding */ ConfigurableFocusTrap), +/* harmony export */ ConfigurableFocusTrapFactory: () => (/* binding */ ConfigurableFocusTrapFactory), +/* harmony export */ EventListenerFocusTrapInertStrategy: () => (/* binding */ EventListenerFocusTrapInertStrategy), +/* harmony export */ FOCUS_MONITOR_DEFAULT_OPTIONS: () => (/* binding */ FOCUS_MONITOR_DEFAULT_OPTIONS), +/* harmony export */ FOCUS_TRAP_INERT_STRATEGY: () => (/* binding */ FOCUS_TRAP_INERT_STRATEGY), +/* harmony export */ FocusKeyManager: () => (/* binding */ FocusKeyManager), +/* harmony export */ FocusMonitor: () => (/* binding */ FocusMonitor), +/* harmony export */ FocusTrap: () => (/* binding */ FocusTrap), +/* harmony export */ FocusTrapFactory: () => (/* binding */ FocusTrapFactory), +/* harmony export */ HighContrastModeDetector: () => (/* binding */ HighContrastModeDetector), +/* harmony export */ INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS: () => (/* binding */ INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS), +/* harmony export */ INPUT_MODALITY_DETECTOR_OPTIONS: () => (/* binding */ INPUT_MODALITY_DETECTOR_OPTIONS), +/* harmony export */ InputModalityDetector: () => (/* binding */ InputModalityDetector), +/* harmony export */ InteractivityChecker: () => (/* binding */ InteractivityChecker), +/* harmony export */ IsFocusableConfig: () => (/* binding */ IsFocusableConfig), +/* harmony export */ LIVE_ANNOUNCER_DEFAULT_OPTIONS: () => (/* binding */ LIVE_ANNOUNCER_DEFAULT_OPTIONS), +/* harmony export */ LIVE_ANNOUNCER_ELEMENT_TOKEN: () => (/* binding */ LIVE_ANNOUNCER_ELEMENT_TOKEN), +/* harmony export */ LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY: () => (/* binding */ LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY), +/* harmony export */ ListKeyManager: () => (/* binding */ ListKeyManager), +/* harmony export */ LiveAnnouncer: () => (/* binding */ LiveAnnouncer), +/* harmony export */ MESSAGES_CONTAINER_ID: () => (/* binding */ MESSAGES_CONTAINER_ID), +/* harmony export */ addAriaReferencedId: () => (/* binding */ addAriaReferencedId), +/* harmony export */ getAriaReferenceIds: () => (/* binding */ getAriaReferenceIds), +/* harmony export */ isFakeMousedownFromScreenReader: () => (/* binding */ isFakeMousedownFromScreenReader), +/* harmony export */ isFakeTouchstartFromScreenReader: () => (/* binding */ isFakeTouchstartFromScreenReader), +/* harmony export */ removeAriaReferencedId: () => (/* binding */ removeAriaReferencedId) +/* harmony export */ }); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs */ 70462); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! rxjs */ 9681); +/* harmony import */ var _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/cdk/keycodes */ 30554); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs/operators */ 15746); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 95933); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 85046); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 46939); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs/operators */ 51063); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs/operators */ 45083); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @angular/cdk/observers */ 66787); +/* harmony import */ var _angular_cdk_layout__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! @angular/cdk/layout */ 39743); + + + + + + + + + + + + + +/** IDs are delimited by an empty space, as per the spec. */ +const ID_DELIMITER = ' '; +/** + * Adds the given ID to the specified ARIA attribute on an element. + * Used for attributes such as aria-labelledby, aria-owns, etc. + */ +function addAriaReferencedId(el, attr, id) { + const ids = getAriaReferenceIds(el, attr); + if (ids.some(existingId => existingId.trim() == id.trim())) { + return; + } + ids.push(id.trim()); + el.setAttribute(attr, ids.join(ID_DELIMITER)); +} +/** + * Removes the given ID from the specified ARIA attribute on an element. + * Used for attributes such as aria-labelledby, aria-owns, etc. + */ +function removeAriaReferencedId(el, attr, id) { + const ids = getAriaReferenceIds(el, attr); + const filteredIds = ids.filter(val => val != id.trim()); + if (filteredIds.length) { + el.setAttribute(attr, filteredIds.join(ID_DELIMITER)); + } else { + el.removeAttribute(attr); + } +} +/** + * Gets the list of IDs referenced by the given ARIA attribute on an element. + * Used for attributes such as aria-labelledby, aria-owns, etc. + */ +function getAriaReferenceIds(el, attr) { + // Get string array of all individual ids (whitespace delimited) in the attribute value + return (el.getAttribute(attr) || '').match(/\S+/g) || []; +} + +/** + * ID used for the body container where all messages are appended. + * @deprecated No longer being used. To be removed. + * @breaking-change 14.0.0 + */ +const MESSAGES_CONTAINER_ID = 'cdk-describedby-message-container'; +/** + * ID prefix used for each created message element. + * @deprecated To be turned into a private variable. + * @breaking-change 14.0.0 + */ +const CDK_DESCRIBEDBY_ID_PREFIX = 'cdk-describedby-message'; +/** + * Attribute given to each host element that is described by a message element. + * @deprecated To be turned into a private variable. + * @breaking-change 14.0.0 + */ +const CDK_DESCRIBEDBY_HOST_ATTRIBUTE = 'cdk-describedby-host'; +/** Global incremental identifier for each registered message element. */ +let nextId = 0; +/** + * Utility that creates visually hidden elements with a message content. Useful for elements that + * want to use aria-describedby to further describe themselves without adding additional visual + * content. + */ +class AriaDescriber { + constructor(_document, + /** + * @deprecated To be turned into a required parameter. + * @breaking-change 14.0.0 + */ + _platform) { + this._platform = _platform; + /** Map of all registered message elements that have been placed into the document. */ + this._messageRegistry = new Map(); + /** Container for all registered messages. */ + this._messagesContainer = null; + /** Unique ID for the service. */ + this._id = `${nextId++}`; + this._document = _document; + this._id = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_core__WEBPACK_IMPORTED_MODULE_0__.APP_ID) + '-' + nextId++; + } + describe(hostElement, message, role) { + if (!this._canBeDescribed(hostElement, message)) { + return; + } + const key = getKey(message, role); + if (typeof message !== 'string') { + // We need to ensure that the element has an ID. + setMessageId(message, this._id); + this._messageRegistry.set(key, { + messageElement: message, + referenceCount: 0 + }); + } else if (!this._messageRegistry.has(key)) { + this._createMessageElement(message, role); + } + if (!this._isElementDescribedByMessage(hostElement, key)) { + this._addMessageReference(hostElement, key); + } + } + removeDescription(hostElement, message, role) { + if (!message || !this._isElementNode(hostElement)) { + return; + } + const key = getKey(message, role); + if (this._isElementDescribedByMessage(hostElement, key)) { + this._removeMessageReference(hostElement, key); + } + // If the message is a string, it means that it's one that we created for the + // consumer so we can remove it safely, otherwise we should leave it in place. + if (typeof message === 'string') { + const registeredMessage = this._messageRegistry.get(key); + if (registeredMessage && registeredMessage.referenceCount === 0) { + this._deleteMessageElement(key); + } + } + if (this._messagesContainer?.childNodes.length === 0) { + this._messagesContainer.remove(); + this._messagesContainer = null; + } + } + /** Unregisters all created message elements and removes the message container. */ + ngOnDestroy() { + const describedElements = this._document.querySelectorAll(`[${CDK_DESCRIBEDBY_HOST_ATTRIBUTE}="${this._id}"]`); + for (let i = 0; i < describedElements.length; i++) { + this._removeCdkDescribedByReferenceIds(describedElements[i]); + describedElements[i].removeAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE); + } + this._messagesContainer?.remove(); + this._messagesContainer = null; + this._messageRegistry.clear(); + } + /** + * Creates a new element in the visually hidden message container element with the message + * as its content and adds it to the message registry. + */ + _createMessageElement(message, role) { + const messageElement = this._document.createElement('div'); + setMessageId(messageElement, this._id); + messageElement.textContent = message; + if (role) { + messageElement.setAttribute('role', role); + } + this._createMessagesContainer(); + this._messagesContainer.appendChild(messageElement); + this._messageRegistry.set(getKey(message, role), { + messageElement, + referenceCount: 0 + }); + } + /** Deletes the message element from the global messages container. */ + _deleteMessageElement(key) { + this._messageRegistry.get(key)?.messageElement?.remove(); + this._messageRegistry.delete(key); + } + /** Creates the global container for all aria-describedby messages. */ + _createMessagesContainer() { + if (this._messagesContainer) { + return; + } + const containerClassName = 'cdk-describedby-message-container'; + const serverContainers = this._document.querySelectorAll(`.${containerClassName}[platform="server"]`); + for (let i = 0; i < serverContainers.length; i++) { + // When going from the server to the client, we may end up in a situation where there's + // already a container on the page, but we don't have a reference to it. Clear the + // old container so we don't get duplicates. Doing this, instead of emptying the previous + // container, should be slightly faster. + serverContainers[i].remove(); + } + const messagesContainer = this._document.createElement('div'); + // We add `visibility: hidden` in order to prevent text in this container from + // being searchable by the browser's Ctrl + F functionality. + // Screen-readers will still read the description for elements with aria-describedby even + // when the description element is not visible. + messagesContainer.style.visibility = 'hidden'; + // Even though we use `visibility: hidden`, we still apply `cdk-visually-hidden` so that + // the description element doesn't impact page layout. + messagesContainer.classList.add(containerClassName); + messagesContainer.classList.add('cdk-visually-hidden'); + // @breaking-change 14.0.0 Remove null check for `_platform`. + if (this._platform && !this._platform.isBrowser) { + messagesContainer.setAttribute('platform', 'server'); + } + this._document.body.appendChild(messagesContainer); + this._messagesContainer = messagesContainer; + } + /** Removes all cdk-describedby messages that are hosted through the element. */ + _removeCdkDescribedByReferenceIds(element) { + // Remove all aria-describedby reference IDs that are prefixed by CDK_DESCRIBEDBY_ID_PREFIX + const originalReferenceIds = getAriaReferenceIds(element, 'aria-describedby').filter(id => id.indexOf(CDK_DESCRIBEDBY_ID_PREFIX) != 0); + element.setAttribute('aria-describedby', originalReferenceIds.join(' ')); + } + /** + * Adds a message reference to the element using aria-describedby and increments the registered + * message's reference count. + */ + _addMessageReference(element, key) { + const registeredMessage = this._messageRegistry.get(key); + // Add the aria-describedby reference and set the + // describedby_host attribute to mark the element. + addAriaReferencedId(element, 'aria-describedby', registeredMessage.messageElement.id); + element.setAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE, this._id); + registeredMessage.referenceCount++; + } + /** + * Removes a message reference from the element using aria-describedby + * and decrements the registered message's reference count. + */ + _removeMessageReference(element, key) { + const registeredMessage = this._messageRegistry.get(key); + registeredMessage.referenceCount--; + removeAriaReferencedId(element, 'aria-describedby', registeredMessage.messageElement.id); + element.removeAttribute(CDK_DESCRIBEDBY_HOST_ATTRIBUTE); + } + /** Returns true if the element has been described by the provided message ID. */ + _isElementDescribedByMessage(element, key) { + const referenceIds = getAriaReferenceIds(element, 'aria-describedby'); + const registeredMessage = this._messageRegistry.get(key); + const messageId = registeredMessage && registeredMessage.messageElement.id; + return !!messageId && referenceIds.indexOf(messageId) != -1; + } + /** Determines whether a message can be described on a particular element. */ + _canBeDescribed(element, message) { + if (!this._isElementNode(element)) { + return false; + } + if (message && typeof message === 'object') { + // We'd have to make some assumptions about the description element's text, if the consumer + // passed in an element. Assume that if an element is passed in, the consumer has verified + // that it can be used as a description. + return true; + } + const trimmedMessage = message == null ? '' : `${message}`.trim(); + const ariaLabel = element.getAttribute('aria-label'); + // We shouldn't set descriptions if they're exactly the same as the `aria-label` of the + // element, because screen readers will end up reading out the same text twice in a row. + return trimmedMessage ? !ariaLabel || ariaLabel.trim() !== trimmedMessage : false; + } + /** Checks whether a node is an Element node. */ + _isElementNode(element) { + return element.nodeType === this._document.ELEMENT_NODE; + } + static #_ = this.ɵfac = function AriaDescriber_Factory(t) { + return new (t || AriaDescriber)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: AriaDescriber, + factory: AriaDescriber.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](AriaDescriber, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }]; + }, null); +})(); +/** Gets a key that can be used to look messages up in the registry. */ +function getKey(message, role) { + return typeof message === 'string' ? `${role || ''}/${message}` : message; +} +/** Assigns a unique ID to an element, if it doesn't have one already. */ +function setMessageId(element, serviceId) { + if (!element.id) { + element.id = `${CDK_DESCRIBEDBY_ID_PREFIX}-${serviceId}-${nextId++}`; + } +} + +/** + * This class manages keyboard events for selectable lists. If you pass it a query list + * of items, it will set the active item correctly when arrow events occur. + */ +class ListKeyManager { + constructor(_items) { + this._items = _items; + this._activeItemIndex = -1; + this._activeItem = null; + this._wrap = false; + this._letterKeyStream = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + this._typeaheadSubscription = rxjs__WEBPACK_IMPORTED_MODULE_4__.Subscription.EMPTY; + this._vertical = true; + this._allowedModifierKeys = []; + this._homeAndEnd = false; + this._pageUpAndDown = { + enabled: false, + delta: 10 + }; + /** + * Predicate function that can be used to check whether an item should be skipped + * by the key manager. By default, disabled items are skipped. + */ + this._skipPredicateFn = item => item.disabled; + // Buffer for the letters that the user has pressed when the typeahead option is turned on. + this._pressedLetters = []; + /** + * Stream that emits any time the TAB key is pressed, so components can react + * when focus is shifted off of the list. + */ + this.tabOut = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + /** Stream that emits whenever the active item of the list manager changes. */ + this.change = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + // We allow for the items to be an array because, in some cases, the consumer may + // not have access to a QueryList of the items they want to manage (e.g. when the + // items aren't being collected via `ViewChildren` or `ContentChildren`). + if (_items instanceof _angular_core__WEBPACK_IMPORTED_MODULE_0__.QueryList) { + this._itemChangesSubscription = _items.changes.subscribe(newItems => { + if (this._activeItem) { + const itemArray = newItems.toArray(); + const newIndex = itemArray.indexOf(this._activeItem); + if (newIndex > -1 && newIndex !== this._activeItemIndex) { + this._activeItemIndex = newIndex; + } + } + }); + } + } + /** + * Sets the predicate function that determines which items should be skipped by the + * list key manager. + * @param predicate Function that determines whether the given item should be skipped. + */ + skipPredicate(predicate) { + this._skipPredicateFn = predicate; + return this; + } + /** + * Configures wrapping mode, which determines whether the active item will wrap to + * the other end of list when there are no more items in the given direction. + * @param shouldWrap Whether the list should wrap when reaching the end. + */ + withWrap(shouldWrap = true) { + this._wrap = shouldWrap; + return this; + } + /** + * Configures whether the key manager should be able to move the selection vertically. + * @param enabled Whether vertical selection should be enabled. + */ + withVerticalOrientation(enabled = true) { + this._vertical = enabled; + return this; + } + /** + * Configures the key manager to move the selection horizontally. + * Passing in `null` will disable horizontal movement. + * @param direction Direction in which the selection can be moved. + */ + withHorizontalOrientation(direction) { + this._horizontal = direction; + return this; + } + /** + * Modifier keys which are allowed to be held down and whose default actions will be prevented + * as the user is pressing the arrow keys. Defaults to not allowing any modifier keys. + */ + withAllowedModifierKeys(keys) { + this._allowedModifierKeys = keys; + return this; + } + /** + * Turns on typeahead mode which allows users to set the active item by typing. + * @param debounceInterval Time to wait after the last keystroke before setting the active item. + */ + withTypeAhead(debounceInterval = 200) { + if ((typeof ngDevMode === 'undefined' || ngDevMode) && this._items.length && this._items.some(item => typeof item.getLabel !== 'function')) { + throw Error('ListKeyManager items in typeahead mode must implement the `getLabel` method.'); + } + this._typeaheadSubscription.unsubscribe(); + // Debounce the presses of non-navigational keys, collect the ones that correspond to letters + // and convert those letters back into a string. Afterwards find the first item that starts + // with that string and select it. + this._typeaheadSubscription = this._letterKeyStream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_5__.tap)(letter => this._pressedLetters.push(letter)), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.debounceTime)(debounceInterval), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.filter)(() => this._pressedLetters.length > 0), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_8__.map)(() => this._pressedLetters.join(''))).subscribe(inputString => { + const items = this._getItemsArray(); + // Start at 1 because we want to start searching at the item immediately + // following the current active item. + for (let i = 1; i < items.length + 1; i++) { + const index = (this._activeItemIndex + i) % items.length; + const item = items[index]; + if (!this._skipPredicateFn(item) && item.getLabel().toUpperCase().trim().indexOf(inputString) === 0) { + this.setActiveItem(index); + break; + } + } + this._pressedLetters = []; + }); + return this; + } + /** Cancels the current typeahead sequence. */ + cancelTypeahead() { + this._pressedLetters = []; + return this; + } + /** + * Configures the key manager to activate the first and last items + * respectively when the Home or End key is pressed. + * @param enabled Whether pressing the Home or End key activates the first/last item. + */ + withHomeAndEnd(enabled = true) { + this._homeAndEnd = enabled; + return this; + } + /** + * Configures the key manager to activate every 10th, configured or first/last element in up/down direction + * respectively when the Page-Up or Page-Down key is pressed. + * @param enabled Whether pressing the Page-Up or Page-Down key activates the first/last item. + * @param delta Whether pressing the Home or End key activates the first/last item. + */ + withPageUpDown(enabled = true, delta = 10) { + this._pageUpAndDown = { + enabled, + delta + }; + return this; + } + setActiveItem(item) { + const previousActiveItem = this._activeItem; + this.updateActiveItem(item); + if (this._activeItem !== previousActiveItem) { + this.change.next(this._activeItemIndex); + } + } + /** + * Sets the active item depending on the key event passed in. + * @param event Keyboard event to be used for determining which element should be active. + */ + onKeydown(event) { + const keyCode = event.keyCode; + const modifiers = ['altKey', 'ctrlKey', 'metaKey', 'shiftKey']; + const isModifierAllowed = modifiers.every(modifier => { + return !event[modifier] || this._allowedModifierKeys.indexOf(modifier) > -1; + }); + switch (keyCode) { + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.TAB: + this.tabOut.next(); + return; + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.DOWN_ARROW: + if (this._vertical && isModifierAllowed) { + this.setNextItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.UP_ARROW: + if (this._vertical && isModifierAllowed) { + this.setPreviousItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.RIGHT_ARROW: + if (this._horizontal && isModifierAllowed) { + this._horizontal === 'rtl' ? this.setPreviousItemActive() : this.setNextItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.LEFT_ARROW: + if (this._horizontal && isModifierAllowed) { + this._horizontal === 'rtl' ? this.setNextItemActive() : this.setPreviousItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.HOME: + if (this._homeAndEnd && isModifierAllowed) { + this.setFirstItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.END: + if (this._homeAndEnd && isModifierAllowed) { + this.setLastItemActive(); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.PAGE_UP: + if (this._pageUpAndDown.enabled && isModifierAllowed) { + const targetIndex = this._activeItemIndex - this._pageUpAndDown.delta; + this._setActiveItemByIndex(targetIndex > 0 ? targetIndex : 0, 1); + break; + } else { + return; + } + case _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.PAGE_DOWN: + if (this._pageUpAndDown.enabled && isModifierAllowed) { + const targetIndex = this._activeItemIndex + this._pageUpAndDown.delta; + const itemsLength = this._getItemsArray().length; + this._setActiveItemByIndex(targetIndex < itemsLength ? targetIndex : itemsLength - 1, -1); + break; + } else { + return; + } + default: + if (isModifierAllowed || (0,_angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.hasModifierKey)(event, 'shiftKey')) { + // Attempt to use the `event.key` which also maps it to the user's keyboard language, + // otherwise fall back to resolving alphanumeric characters via the keyCode. + if (event.key && event.key.length === 1) { + this._letterKeyStream.next(event.key.toLocaleUpperCase()); + } else if (keyCode >= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.A && keyCode <= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.Z || keyCode >= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.ZERO && keyCode <= _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.NINE) { + this._letterKeyStream.next(String.fromCharCode(keyCode)); + } + } + // Note that we return here, in order to avoid preventing + // the default action of non-navigational keys. + return; + } + this._pressedLetters = []; + event.preventDefault(); + } + /** Index of the currently active item. */ + get activeItemIndex() { + return this._activeItemIndex; + } + /** The active item. */ + get activeItem() { + return this._activeItem; + } + /** Gets whether the user is currently typing into the manager using the typeahead feature. */ + isTyping() { + return this._pressedLetters.length > 0; + } + /** Sets the active item to the first enabled item in the list. */ + setFirstItemActive() { + this._setActiveItemByIndex(0, 1); + } + /** Sets the active item to the last enabled item in the list. */ + setLastItemActive() { + this._setActiveItemByIndex(this._items.length - 1, -1); + } + /** Sets the active item to the next enabled item in the list. */ + setNextItemActive() { + this._activeItemIndex < 0 ? this.setFirstItemActive() : this._setActiveItemByDelta(1); + } + /** Sets the active item to a previous enabled item in the list. */ + setPreviousItemActive() { + this._activeItemIndex < 0 && this._wrap ? this.setLastItemActive() : this._setActiveItemByDelta(-1); + } + updateActiveItem(item) { + const itemArray = this._getItemsArray(); + const index = typeof item === 'number' ? item : itemArray.indexOf(item); + const activeItem = itemArray[index]; + // Explicitly check for `null` and `undefined` because other falsy values are valid. + this._activeItem = activeItem == null ? null : activeItem; + this._activeItemIndex = index; + } + /** Cleans up the key manager. */ + destroy() { + this._typeaheadSubscription.unsubscribe(); + this._itemChangesSubscription?.unsubscribe(); + this._letterKeyStream.complete(); + this.tabOut.complete(); + this.change.complete(); + this._pressedLetters = []; + } + /** + * This method sets the active item, given a list of items and the delta between the + * currently active item and the new active item. It will calculate differently + * depending on whether wrap mode is turned on. + */ + _setActiveItemByDelta(delta) { + this._wrap ? this._setActiveInWrapMode(delta) : this._setActiveInDefaultMode(delta); + } + /** + * Sets the active item properly given "wrap" mode. In other words, it will continue to move + * down the list until it finds an item that is not disabled, and it will wrap if it + * encounters either end of the list. + */ + _setActiveInWrapMode(delta) { + const items = this._getItemsArray(); + for (let i = 1; i <= items.length; i++) { + const index = (this._activeItemIndex + delta * i + items.length) % items.length; + const item = items[index]; + if (!this._skipPredicateFn(item)) { + this.setActiveItem(index); + return; + } + } + } + /** + * Sets the active item properly given the default mode. In other words, it will + * continue to move down the list until it finds an item that is not disabled. If + * it encounters either end of the list, it will stop and not wrap. + */ + _setActiveInDefaultMode(delta) { + this._setActiveItemByIndex(this._activeItemIndex + delta, delta); + } + /** + * Sets the active item to the first enabled item starting at the index specified. If the + * item is disabled, it will move in the fallbackDelta direction until it either + * finds an enabled item or encounters the end of the list. + */ + _setActiveItemByIndex(index, fallbackDelta) { + const items = this._getItemsArray(); + if (!items[index]) { + return; + } + while (this._skipPredicateFn(items[index])) { + index += fallbackDelta; + if (!items[index]) { + return; + } + } + this.setActiveItem(index); + } + /** Returns the items as an array. */ + _getItemsArray() { + return this._items instanceof _angular_core__WEBPACK_IMPORTED_MODULE_0__.QueryList ? this._items.toArray() : this._items; + } +} +class ActiveDescendantKeyManager extends ListKeyManager { + setActiveItem(index) { + if (this.activeItem) { + this.activeItem.setInactiveStyles(); + } + super.setActiveItem(index); + if (this.activeItem) { + this.activeItem.setActiveStyles(); + } + } +} +class FocusKeyManager extends ListKeyManager { + constructor() { + super(...arguments); + this._origin = 'program'; + } + /** + * Sets the focus origin that will be passed in to the items for any subsequent `focus` calls. + * @param origin Focus origin to be used when focusing items. + */ + setFocusOrigin(origin) { + this._origin = origin; + return this; + } + setActiveItem(item) { + super.setActiveItem(item); + if (this.activeItem) { + this.activeItem.focus(this._origin); + } + } +} + +/** + * Configuration for the isFocusable method. + */ +class IsFocusableConfig { + constructor() { + /** + * Whether to count an element as focusable even if it is not currently visible. + */ + this.ignoreVisibility = false; + } +} +// The InteractivityChecker leans heavily on the ally.js accessibility utilities. +// Methods like `isTabbable` are only covering specific edge-cases for the browsers which are +// supported. +/** + * Utility for checking the interactivity of an element, such as whether it is focusable or + * tabbable. + */ +class InteractivityChecker { + constructor(_platform) { + this._platform = _platform; + } + /** + * Gets whether an element is disabled. + * + * @param element Element to be checked. + * @returns Whether the element is disabled. + */ + isDisabled(element) { + // This does not capture some cases, such as a non-form control with a disabled attribute or + // a form control inside of a disabled form, but should capture the most common cases. + return element.hasAttribute('disabled'); + } + /** + * Gets whether an element is visible for the purposes of interactivity. + * + * This will capture states like `display: none` and `visibility: hidden`, but not things like + * being clipped by an `overflow: hidden` parent or being outside the viewport. + * + * @returns Whether the element is visible. + */ + isVisible(element) { + return hasGeometry(element) && getComputedStyle(element).visibility === 'visible'; + } + /** + * Gets whether an element can be reached via Tab key. + * Assumes that the element has already been checked with isFocusable. + * + * @param element Element to be checked. + * @returns Whether the element is tabbable. + */ + isTabbable(element) { + // Nothing is tabbable on the server 😎 + if (!this._platform.isBrowser) { + return false; + } + const frameElement = getFrameElement(getWindow(element)); + if (frameElement) { + // Frame elements inherit their tabindex onto all child elements. + if (getTabIndexValue(frameElement) === -1) { + return false; + } + // Browsers disable tabbing to an element inside of an invisible frame. + if (!this.isVisible(frameElement)) { + return false; + } + } + let nodeName = element.nodeName.toLowerCase(); + let tabIndexValue = getTabIndexValue(element); + if (element.hasAttribute('contenteditable')) { + return tabIndexValue !== -1; + } + if (nodeName === 'iframe' || nodeName === 'object') { + // The frame or object's content may be tabbable depending on the content, but it's + // not possibly to reliably detect the content of the frames. We always consider such + // elements as non-tabbable. + return false; + } + // In iOS, the browser only considers some specific elements as tabbable. + if (this._platform.WEBKIT && this._platform.IOS && !isPotentiallyTabbableIOS(element)) { + return false; + } + if (nodeName === 'audio') { + // Audio elements without controls enabled are never tabbable, regardless + // of the tabindex attribute explicitly being set. + if (!element.hasAttribute('controls')) { + return false; + } + // Audio elements with controls are by default tabbable unless the + // tabindex attribute is set to `-1` explicitly. + return tabIndexValue !== -1; + } + if (nodeName === 'video') { + // For all video elements, if the tabindex attribute is set to `-1`, the video + // is not tabbable. Note: We cannot rely on the default `HTMLElement.tabIndex` + // property as that one is set to `-1` in Chrome, Edge and Safari v13.1. The + // tabindex attribute is the source of truth here. + if (tabIndexValue === -1) { + return false; + } + // If the tabindex is explicitly set, and not `-1` (as per check before), the + // video element is always tabbable (regardless of whether it has controls or not). + if (tabIndexValue !== null) { + return true; + } + // Otherwise (when no explicit tabindex is set), a video is only tabbable if it + // has controls enabled. Firefox is special as videos are always tabbable regardless + // of whether there are controls or not. + return this._platform.FIREFOX || element.hasAttribute('controls'); + } + return element.tabIndex >= 0; + } + /** + * Gets whether an element can be focused by the user. + * + * @param element Element to be checked. + * @param config The config object with options to customize this method's behavior + * @returns Whether the element is focusable. + */ + isFocusable(element, config) { + // Perform checks in order of left to most expensive. + // Again, naive approach that does not capture many edge cases and browser quirks. + return isPotentiallyFocusable(element) && !this.isDisabled(element) && (config?.ignoreVisibility || this.isVisible(element)); + } + static #_ = this.ɵfac = function InteractivityChecker_Factory(t) { + return new (t || InteractivityChecker)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: InteractivityChecker, + factory: InteractivityChecker.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](InteractivityChecker, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }]; + }, null); +})(); +/** + * Returns the frame element from a window object. Since browsers like MS Edge throw errors if + * the frameElement property is being accessed from a different host address, this property + * should be accessed carefully. + */ +function getFrameElement(window) { + try { + return window.frameElement; + } catch { + return null; + } +} +/** Checks whether the specified element has any geometry / rectangles. */ +function hasGeometry(element) { + // Use logic from jQuery to check for an invisible element. + // See https://github.com/jquery/jquery/blob/master/src/css/hiddenVisibleSelectors.js#L12 + return !!(element.offsetWidth || element.offsetHeight || typeof element.getClientRects === 'function' && element.getClientRects().length); +} +/** Gets whether an element's */ +function isNativeFormElement(element) { + let nodeName = element.nodeName.toLowerCase(); + return nodeName === 'input' || nodeName === 'select' || nodeName === 'button' || nodeName === 'textarea'; +} +/** Gets whether an element is an ``. */ +function isHiddenInput(element) { + return isInputElement(element) && element.type == 'hidden'; +} +/** Gets whether an element is an anchor that has an href attribute. */ +function isAnchorWithHref(element) { + return isAnchorElement(element) && element.hasAttribute('href'); +} +/** Gets whether an element is an input element. */ +function isInputElement(element) { + return element.nodeName.toLowerCase() == 'input'; +} +/** Gets whether an element is an anchor element. */ +function isAnchorElement(element) { + return element.nodeName.toLowerCase() == 'a'; +} +/** Gets whether an element has a valid tabindex. */ +function hasValidTabIndex(element) { + if (!element.hasAttribute('tabindex') || element.tabIndex === undefined) { + return false; + } + let tabIndex = element.getAttribute('tabindex'); + return !!(tabIndex && !isNaN(parseInt(tabIndex, 10))); +} +/** + * Returns the parsed tabindex from the element attributes instead of returning the + * evaluated tabindex from the browsers defaults. + */ +function getTabIndexValue(element) { + if (!hasValidTabIndex(element)) { + return null; + } + // See browser issue in Gecko https://bugzilla.mozilla.org/show_bug.cgi?id=1128054 + const tabIndex = parseInt(element.getAttribute('tabindex') || '', 10); + return isNaN(tabIndex) ? -1 : tabIndex; +} +/** Checks whether the specified element is potentially tabbable on iOS */ +function isPotentiallyTabbableIOS(element) { + let nodeName = element.nodeName.toLowerCase(); + let inputType = nodeName === 'input' && element.type; + return inputType === 'text' || inputType === 'password' || nodeName === 'select' || nodeName === 'textarea'; +} +/** + * Gets whether an element is potentially focusable without taking current visible/disabled state + * into account. + */ +function isPotentiallyFocusable(element) { + // Inputs are potentially focusable *unless* they're type="hidden". + if (isHiddenInput(element)) { + return false; + } + return isNativeFormElement(element) || isAnchorWithHref(element) || element.hasAttribute('contenteditable') || hasValidTabIndex(element); +} +/** Gets the parent window of a DOM node with regards of being inside of an iframe. */ +function getWindow(node) { + // ownerDocument is null if `node` itself *is* a document. + return node.ownerDocument && node.ownerDocument.defaultView || window; +} + +/** + * Class that allows for trapping focus within a DOM element. + * + * This class currently uses a relatively simple approach to focus trapping. + * It assumes that the tab order is the same as DOM order, which is not necessarily true. + * Things like `tabIndex > 0`, flex `order`, and shadow roots can cause the two to be misaligned. + * + * @deprecated Use `ConfigurableFocusTrap` instead. + * @breaking-change 11.0.0 + */ +class FocusTrap { + /** Whether the focus trap is active. */ + get enabled() { + return this._enabled; + } + set enabled(value) { + this._enabled = value; + if (this._startAnchor && this._endAnchor) { + this._toggleAnchorTabIndex(value, this._startAnchor); + this._toggleAnchorTabIndex(value, this._endAnchor); + } + } + constructor(_element, _checker, _ngZone, _document, deferAnchors = false) { + this._element = _element; + this._checker = _checker; + this._ngZone = _ngZone; + this._document = _document; + this._hasAttached = false; + // Event listeners for the anchors. Need to be regular functions so that we can unbind them later. + this.startAnchorListener = () => this.focusLastTabbableElement(); + this.endAnchorListener = () => this.focusFirstTabbableElement(); + this._enabled = true; + if (!deferAnchors) { + this.attachAnchors(); + } + } + /** Destroys the focus trap by cleaning up the anchors. */ + destroy() { + const startAnchor = this._startAnchor; + const endAnchor = this._endAnchor; + if (startAnchor) { + startAnchor.removeEventListener('focus', this.startAnchorListener); + startAnchor.remove(); + } + if (endAnchor) { + endAnchor.removeEventListener('focus', this.endAnchorListener); + endAnchor.remove(); + } + this._startAnchor = this._endAnchor = null; + this._hasAttached = false; + } + /** + * Inserts the anchors into the DOM. This is usually done automatically + * in the constructor, but can be deferred for cases like directives with `*ngIf`. + * @returns Whether the focus trap managed to attach successfully. This may not be the case + * if the target element isn't currently in the DOM. + */ + attachAnchors() { + // If we're not on the browser, there can be no focus to trap. + if (this._hasAttached) { + return true; + } + this._ngZone.runOutsideAngular(() => { + if (!this._startAnchor) { + this._startAnchor = this._createAnchor(); + this._startAnchor.addEventListener('focus', this.startAnchorListener); + } + if (!this._endAnchor) { + this._endAnchor = this._createAnchor(); + this._endAnchor.addEventListener('focus', this.endAnchorListener); + } + }); + if (this._element.parentNode) { + this._element.parentNode.insertBefore(this._startAnchor, this._element); + this._element.parentNode.insertBefore(this._endAnchor, this._element.nextSibling); + this._hasAttached = true; + } + return this._hasAttached; + } + /** + * Waits for the zone to stabilize, then focuses the first tabbable element. + * @returns Returns a promise that resolves with a boolean, depending + * on whether focus was moved successfully. + */ + focusInitialElementWhenReady(options) { + return new Promise(resolve => { + this._executeOnStable(() => resolve(this.focusInitialElement(options))); + }); + } + /** + * Waits for the zone to stabilize, then focuses + * the first tabbable element within the focus trap region. + * @returns Returns a promise that resolves with a boolean, depending + * on whether focus was moved successfully. + */ + focusFirstTabbableElementWhenReady(options) { + return new Promise(resolve => { + this._executeOnStable(() => resolve(this.focusFirstTabbableElement(options))); + }); + } + /** + * Waits for the zone to stabilize, then focuses + * the last tabbable element within the focus trap region. + * @returns Returns a promise that resolves with a boolean, depending + * on whether focus was moved successfully. + */ + focusLastTabbableElementWhenReady(options) { + return new Promise(resolve => { + this._executeOnStable(() => resolve(this.focusLastTabbableElement(options))); + }); + } + /** + * Get the specified boundary element of the trapped region. + * @param bound The boundary to get (start or end of trapped region). + * @returns The boundary element. + */ + _getRegionBoundary(bound) { + // Contains the deprecated version of selector, for temporary backwards comparability. + const markers = this._element.querySelectorAll(`[cdk-focus-region-${bound}], ` + `[cdkFocusRegion${bound}], ` + `[cdk-focus-${bound}]`); + if (typeof ngDevMode === 'undefined' || ngDevMode) { + for (let i = 0; i < markers.length; i++) { + // @breaking-change 8.0.0 + if (markers[i].hasAttribute(`cdk-focus-${bound}`)) { + console.warn(`Found use of deprecated attribute 'cdk-focus-${bound}', ` + `use 'cdkFocusRegion${bound}' instead. The deprecated ` + `attribute will be removed in 8.0.0.`, markers[i]); + } else if (markers[i].hasAttribute(`cdk-focus-region-${bound}`)) { + console.warn(`Found use of deprecated attribute 'cdk-focus-region-${bound}', ` + `use 'cdkFocusRegion${bound}' instead. The deprecated attribute ` + `will be removed in 8.0.0.`, markers[i]); + } + } + } + if (bound == 'start') { + return markers.length ? markers[0] : this._getFirstTabbableElement(this._element); + } + return markers.length ? markers[markers.length - 1] : this._getLastTabbableElement(this._element); + } + /** + * Focuses the element that should be focused when the focus trap is initialized. + * @returns Whether focus was moved successfully. + */ + focusInitialElement(options) { + // Contains the deprecated version of selector, for temporary backwards comparability. + const redirectToElement = this._element.querySelector(`[cdk-focus-initial], ` + `[cdkFocusInitial]`); + if (redirectToElement) { + // @breaking-change 8.0.0 + if ((typeof ngDevMode === 'undefined' || ngDevMode) && redirectToElement.hasAttribute(`cdk-focus-initial`)) { + console.warn(`Found use of deprecated attribute 'cdk-focus-initial', ` + `use 'cdkFocusInitial' instead. The deprecated attribute ` + `will be removed in 8.0.0`, redirectToElement); + } + // Warn the consumer if the element they've pointed to + // isn't focusable, when not in production mode. + if ((typeof ngDevMode === 'undefined' || ngDevMode) && !this._checker.isFocusable(redirectToElement)) { + console.warn(`Element matching '[cdkFocusInitial]' is not focusable.`, redirectToElement); + } + if (!this._checker.isFocusable(redirectToElement)) { + const focusableChild = this._getFirstTabbableElement(redirectToElement); + focusableChild?.focus(options); + return !!focusableChild; + } + redirectToElement.focus(options); + return true; + } + return this.focusFirstTabbableElement(options); + } + /** + * Focuses the first tabbable element within the focus trap region. + * @returns Whether focus was moved successfully. + */ + focusFirstTabbableElement(options) { + const redirectToElement = this._getRegionBoundary('start'); + if (redirectToElement) { + redirectToElement.focus(options); + } + return !!redirectToElement; + } + /** + * Focuses the last tabbable element within the focus trap region. + * @returns Whether focus was moved successfully. + */ + focusLastTabbableElement(options) { + const redirectToElement = this._getRegionBoundary('end'); + if (redirectToElement) { + redirectToElement.focus(options); + } + return !!redirectToElement; + } + /** + * Checks whether the focus trap has successfully been attached. + */ + hasAttached() { + return this._hasAttached; + } + /** Get the first tabbable element from a DOM subtree (inclusive). */ + _getFirstTabbableElement(root) { + if (this._checker.isFocusable(root) && this._checker.isTabbable(root)) { + return root; + } + const children = root.children; + for (let i = 0; i < children.length; i++) { + const tabbableChild = children[i].nodeType === this._document.ELEMENT_NODE ? this._getFirstTabbableElement(children[i]) : null; + if (tabbableChild) { + return tabbableChild; + } + } + return null; + } + /** Get the last tabbable element from a DOM subtree (inclusive). */ + _getLastTabbableElement(root) { + if (this._checker.isFocusable(root) && this._checker.isTabbable(root)) { + return root; + } + // Iterate in reverse DOM order. + const children = root.children; + for (let i = children.length - 1; i >= 0; i--) { + const tabbableChild = children[i].nodeType === this._document.ELEMENT_NODE ? this._getLastTabbableElement(children[i]) : null; + if (tabbableChild) { + return tabbableChild; + } + } + return null; + } + /** Creates an anchor element. */ + _createAnchor() { + const anchor = this._document.createElement('div'); + this._toggleAnchorTabIndex(this._enabled, anchor); + anchor.classList.add('cdk-visually-hidden'); + anchor.classList.add('cdk-focus-trap-anchor'); + anchor.setAttribute('aria-hidden', 'true'); + return anchor; + } + /** + * Toggles the `tabindex` of an anchor, based on the enabled state of the focus trap. + * @param isEnabled Whether the focus trap is enabled. + * @param anchor Anchor on which to toggle the tabindex. + */ + _toggleAnchorTabIndex(isEnabled, anchor) { + // Remove the tabindex completely, rather than setting it to -1, because if the + // element has a tabindex, the user might still hit it when navigating with the arrow keys. + isEnabled ? anchor.setAttribute('tabindex', '0') : anchor.removeAttribute('tabindex'); + } + /** + * Toggles the`tabindex` of both anchors to either trap Tab focus or allow it to escape. + * @param enabled: Whether the anchors should trap Tab. + */ + toggleAnchors(enabled) { + if (this._startAnchor && this._endAnchor) { + this._toggleAnchorTabIndex(enabled, this._startAnchor); + this._toggleAnchorTabIndex(enabled, this._endAnchor); + } + } + /** Executes a function when the zone is stable. */ + _executeOnStable(fn) { + if (this._ngZone.isStable) { + fn(); + } else { + this._ngZone.onStable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_10__.take)(1)).subscribe(fn); + } + } +} +/** + * Factory that allows easy instantiation of focus traps. + * @deprecated Use `ConfigurableFocusTrapFactory` instead. + * @breaking-change 11.0.0 + */ +class FocusTrapFactory { + constructor(_checker, _ngZone, _document) { + this._checker = _checker; + this._ngZone = _ngZone; + this._document = _document; + } + /** + * Creates a focus-trapped region around the given element. + * @param element The element around which focus will be trapped. + * @param deferCaptureElements Defers the creation of focus-capturing elements to be done + * manually by the user. + * @returns The created focus trap instance. + */ + create(element, deferCaptureElements = false) { + return new FocusTrap(element, this._checker, this._ngZone, this._document, deferCaptureElements); + } + static #_ = this.ɵfac = function FocusTrapFactory_Factory(t) { + return new (t || FocusTrapFactory)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](InteractivityChecker), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: FocusTrapFactory, + factory: FocusTrapFactory.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FocusTrapFactory, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: InteractivityChecker + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }]; + }, null); +})(); +/** Directive for trapping focus within a region. */ +class CdkTrapFocus { + /** Whether the focus trap is active. */ + get enabled() { + return this.focusTrap.enabled; + } + set enabled(value) { + this.focusTrap.enabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceBooleanProperty)(value); + } + /** + * Whether the directive should automatically move focus into the trapped region upon + * initialization and return focus to the previous activeElement upon destruction. + */ + get autoCapture() { + return this._autoCapture; + } + set autoCapture(value) { + this._autoCapture = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceBooleanProperty)(value); + } + constructor(_elementRef, _focusTrapFactory, + /** + * @deprecated No longer being used. To be removed. + * @breaking-change 13.0.0 + */ + _document) { + this._elementRef = _elementRef; + this._focusTrapFactory = _focusTrapFactory; + /** Previously focused element to restore focus to upon destroy when using autoCapture. */ + this._previouslyFocusedElement = null; + this.focusTrap = this._focusTrapFactory.create(this._elementRef.nativeElement, true); + } + ngOnDestroy() { + this.focusTrap.destroy(); + // If we stored a previously focused element when using autoCapture, return focus to that + // element now that the trapped region is being destroyed. + if (this._previouslyFocusedElement) { + this._previouslyFocusedElement.focus(); + this._previouslyFocusedElement = null; + } + } + ngAfterContentInit() { + this.focusTrap.attachAnchors(); + if (this.autoCapture) { + this._captureFocus(); + } + } + ngDoCheck() { + if (!this.focusTrap.hasAttached()) { + this.focusTrap.attachAnchors(); + } + } + ngOnChanges(changes) { + const autoCaptureChange = changes['autoCapture']; + if (autoCaptureChange && !autoCaptureChange.firstChange && this.autoCapture && this.focusTrap.hasAttached()) { + this._captureFocus(); + } + } + _captureFocus() { + this._previouslyFocusedElement = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getFocusedElementPierceShadowDom)(); + this.focusTrap.focusInitialElementWhenReady(); + } + static #_ = this.ɵfac = function CdkTrapFocus_Factory(t) { + return new (t || CdkTrapFocus)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](FocusTrapFactory), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkTrapFocus, + selectors: [["", "cdkTrapFocus", ""]], + inputs: { + enabled: ["cdkTrapFocus", "enabled"], + autoCapture: ["cdkTrapFocusAutoCapture", "autoCapture"] + }, + exportAs: ["cdkTrapFocus"], + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵNgOnChangesFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkTrapFocus, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkTrapFocus]', + exportAs: 'cdkTrapFocus' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: FocusTrapFactory + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }]; + }, { + enabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkTrapFocus'] + }], + autoCapture: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkTrapFocusAutoCapture'] + }] + }); +})(); + +/** + * Class that allows for trapping focus within a DOM element. + * + * This class uses a strategy pattern that determines how it traps focus. + * See FocusTrapInertStrategy. + */ +class ConfigurableFocusTrap extends FocusTrap { + /** Whether the FocusTrap is enabled. */ + get enabled() { + return this._enabled; + } + set enabled(value) { + this._enabled = value; + if (this._enabled) { + this._focusTrapManager.register(this); + } else { + this._focusTrapManager.deregister(this); + } + } + constructor(_element, _checker, _ngZone, _document, _focusTrapManager, _inertStrategy, config) { + super(_element, _checker, _ngZone, _document, config.defer); + this._focusTrapManager = _focusTrapManager; + this._inertStrategy = _inertStrategy; + this._focusTrapManager.register(this); + } + /** Notifies the FocusTrapManager that this FocusTrap will be destroyed. */ + destroy() { + this._focusTrapManager.deregister(this); + super.destroy(); + } + /** @docs-private Implemented as part of ManagedFocusTrap. */ + _enable() { + this._inertStrategy.preventFocus(this); + this.toggleAnchors(true); + } + /** @docs-private Implemented as part of ManagedFocusTrap. */ + _disable() { + this._inertStrategy.allowFocus(this); + this.toggleAnchors(false); + } +} + +/** The injection token used to specify the inert strategy. */ +const FOCUS_TRAP_INERT_STRATEGY = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('FOCUS_TRAP_INERT_STRATEGY'); + +/** + * Lightweight FocusTrapInertStrategy that adds a document focus event + * listener to redirect focus back inside the FocusTrap. + */ +class EventListenerFocusTrapInertStrategy { + constructor() { + /** Focus event handler. */ + this._listener = null; + } + /** Adds a document event listener that keeps focus inside the FocusTrap. */ + preventFocus(focusTrap) { + // Ensure there's only one listener per document + if (this._listener) { + focusTrap._document.removeEventListener('focus', this._listener, true); + } + this._listener = e => this._trapFocus(focusTrap, e); + focusTrap._ngZone.runOutsideAngular(() => { + focusTrap._document.addEventListener('focus', this._listener, true); + }); + } + /** Removes the event listener added in preventFocus. */ + allowFocus(focusTrap) { + if (!this._listener) { + return; + } + focusTrap._document.removeEventListener('focus', this._listener, true); + this._listener = null; + } + /** + * Refocuses the first element in the FocusTrap if the focus event target was outside + * the FocusTrap. + * + * This is an event listener callback. The event listener is added in runOutsideAngular, + * so all this code runs outside Angular as well. + */ + _trapFocus(focusTrap, event) { + const target = event.target; + const focusTrapRoot = focusTrap._element; + // Don't refocus if target was in an overlay, because the overlay might be associated + // with an element inside the FocusTrap, ex. mat-select. + if (target && !focusTrapRoot.contains(target) && !target.closest?.('div.cdk-overlay-pane')) { + // Some legacy FocusTrap usages have logic that focuses some element on the page + // just before FocusTrap is destroyed. For backwards compatibility, wait + // to be sure FocusTrap is still enabled before refocusing. + setTimeout(() => { + // Check whether focus wasn't put back into the focus trap while the timeout was pending. + if (focusTrap.enabled && !focusTrapRoot.contains(focusTrap._document.activeElement)) { + focusTrap.focusFirstTabbableElement(); + } + }); + } + } +} + +/** Injectable that ensures only the most recently enabled FocusTrap is active. */ +class FocusTrapManager { + constructor() { + // A stack of the FocusTraps on the page. Only the FocusTrap at the + // top of the stack is active. + this._focusTrapStack = []; + } + /** + * Disables the FocusTrap at the top of the stack, and then pushes + * the new FocusTrap onto the stack. + */ + register(focusTrap) { + // Dedupe focusTraps that register multiple times. + this._focusTrapStack = this._focusTrapStack.filter(ft => ft !== focusTrap); + let stack = this._focusTrapStack; + if (stack.length) { + stack[stack.length - 1]._disable(); + } + stack.push(focusTrap); + focusTrap._enable(); + } + /** + * Removes the FocusTrap from the stack, and activates the + * FocusTrap that is the new top of the stack. + */ + deregister(focusTrap) { + focusTrap._disable(); + const stack = this._focusTrapStack; + const i = stack.indexOf(focusTrap); + if (i !== -1) { + stack.splice(i, 1); + if (stack.length) { + stack[stack.length - 1]._enable(); + } + } + } + static #_ = this.ɵfac = function FocusTrapManager_Factory(t) { + return new (t || FocusTrapManager)(); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: FocusTrapManager, + factory: FocusTrapManager.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FocusTrapManager, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], null, null); +})(); + +/** Factory that allows easy instantiation of configurable focus traps. */ +class ConfigurableFocusTrapFactory { + constructor(_checker, _ngZone, _focusTrapManager, _document, _inertStrategy) { + this._checker = _checker; + this._ngZone = _ngZone; + this._focusTrapManager = _focusTrapManager; + this._document = _document; + // TODO split up the strategies into different modules, similar to DateAdapter. + this._inertStrategy = _inertStrategy || new EventListenerFocusTrapInertStrategy(); + } + create(element, config = { + defer: false + }) { + let configObject; + if (typeof config === 'boolean') { + configObject = { + defer: config + }; + } else { + configObject = config; + } + return new ConfigurableFocusTrap(element, this._checker, this._ngZone, this._document, this._focusTrapManager, this._inertStrategy, configObject); + } + static #_ = this.ɵfac = function ConfigurableFocusTrapFactory_Factory(t) { + return new (t || ConfigurableFocusTrapFactory)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](InteractivityChecker), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](FocusTrapManager), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](FOCUS_TRAP_INERT_STRATEGY, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ConfigurableFocusTrapFactory, + factory: ConfigurableFocusTrapFactory.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ConfigurableFocusTrapFactory, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: InteractivityChecker + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: FocusTrapManager + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [FOCUS_TRAP_INERT_STRATEGY] + }] + }]; + }, null); +})(); + +/** Gets whether an event could be a faked `mousedown` event dispatched by a screen reader. */ +function isFakeMousedownFromScreenReader(event) { + // Some screen readers will dispatch a fake `mousedown` event when pressing enter or space on + // a clickable element. We can distinguish these events when `event.buttons` is zero, or + // `event.detail` is zero depending on the browser: + // - `event.buttons` works on Firefox, but fails on Chrome. + // - `detail` works on Chrome, but fails on Firefox. + return event.buttons === 0 || event.detail === 0; +} +/** Gets whether an event could be a faked `touchstart` event dispatched by a screen reader. */ +function isFakeTouchstartFromScreenReader(event) { + const touch = event.touches && event.touches[0] || event.changedTouches && event.changedTouches[0]; + // A fake `touchstart` can be distinguished from a real one by looking at the `identifier` + // which is typically >= 0 on a real device versus -1 from a screen reader. Just to be safe, + // we can also look at `radiusX` and `radiusY`. This behavior was observed against a Windows 10 + // device with a touch screen running NVDA v2020.4 and Firefox 85 or Chrome 88. + return !!touch && touch.identifier === -1 && (touch.radiusX == null || touch.radiusX === 1) && (touch.radiusY == null || touch.radiusY === 1); +} + +/** + * Injectable options for the InputModalityDetector. These are shallowly merged with the default + * options. + */ +const INPUT_MODALITY_DETECTOR_OPTIONS = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('cdk-input-modality-detector-options'); +/** + * Default options for the InputModalityDetector. + * + * Modifier keys are ignored by default (i.e. when pressed won't cause the service to detect + * keyboard input modality) for two reasons: + * + * 1. Modifier keys are commonly used with mouse to perform actions such as 'right click' or 'open + * in new tab', and are thus less representative of actual keyboard interaction. + * 2. VoiceOver triggers some keyboard events when linearly navigating with Control + Option (but + * confusingly not with Caps Lock). Thus, to have parity with other screen readers, we ignore + * these keys so as to not update the input modality. + * + * Note that we do not by default ignore the right Meta key on Safari because it has the same key + * code as the ContextMenu key on other browsers. When we switch to using event.key, we can + * distinguish between the two. + */ +const INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS = { + ignoreKeys: [_angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.ALT, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.CONTROL, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.MAC_META, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.META, _angular_cdk_keycodes__WEBPACK_IMPORTED_MODULE_9__.SHIFT] +}; +/** + * The amount of time needed to pass after a touchstart event in order for a subsequent mousedown + * event to be attributed as mouse and not touch. + * + * This is the value used by AngularJS Material. Through trial and error (on iPhone 6S) they found + * that a value of around 650ms seems appropriate. + */ +const TOUCH_BUFFER_MS = 650; +/** + * Event listener options that enable capturing and also mark the listener as passive if the browser + * supports it. + */ +const modalityEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.normalizePassiveListenerOptions)({ + passive: true, + capture: true +}); +/** + * Service that detects the user's input modality. + * + * This service does not update the input modality when a user navigates with a screen reader + * (e.g. linear navigation with VoiceOver, object navigation / browse mode with NVDA, virtual PC + * cursor mode with JAWS). This is in part due to technical limitations (i.e. keyboard events do not + * fire as expected in these modes) but is also arguably the correct behavior. Navigating with a + * screen reader is akin to visually scanning a page, and should not be interpreted as actual user + * input interaction. + * + * When a user is not navigating but *interacting* with a screen reader, this service attempts to + * update the input modality to keyboard, but in general this service's behavior is largely + * undefined. + */ +class InputModalityDetector { + /** The most recently detected input modality. */ + get mostRecentModality() { + return this._modality.value; + } + constructor(_platform, ngZone, document, options) { + this._platform = _platform; + /** + * The most recently detected input modality event target. Is null if no input modality has been + * detected or if the associated event target is null for some unknown reason. + */ + this._mostRecentTarget = null; + /** The underlying BehaviorSubject that emits whenever an input modality is detected. */ + this._modality = new rxjs__WEBPACK_IMPORTED_MODULE_12__.BehaviorSubject(null); + /** + * The timestamp of the last touch input modality. Used to determine whether mousedown events + * should be attributed to mouse or touch. + */ + this._lastTouchMs = 0; + /** + * Handles keydown events. Must be an arrow function in order to preserve the context when it gets + * bound. + */ + this._onKeydown = event => { + // If this is one of the keys we should ignore, then ignore it and don't update the input + // modality to keyboard. + if (this._options?.ignoreKeys?.some(keyCode => keyCode === event.keyCode)) { + return; + } + this._modality.next('keyboard'); + this._mostRecentTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + }; + /** + * Handles mousedown events. Must be an arrow function in order to preserve the context when it + * gets bound. + */ + this._onMousedown = event => { + // Touches trigger both touch and mouse events, so we need to distinguish between mouse events + // that were triggered via mouse vs touch. To do so, check if the mouse event occurs closely + // after the previous touch event. + if (Date.now() - this._lastTouchMs < TOUCH_BUFFER_MS) { + return; + } + // Fake mousedown events are fired by some screen readers when controls are activated by the + // screen reader. Attribute them to keyboard input modality. + this._modality.next(isFakeMousedownFromScreenReader(event) ? 'keyboard' : 'mouse'); + this._mostRecentTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + }; + /** + * Handles touchstart events. Must be an arrow function in order to preserve the context when it + * gets bound. + */ + this._onTouchstart = event => { + // Same scenario as mentioned in _onMousedown, but on touch screen devices, fake touchstart + // events are fired. Again, attribute to keyboard input modality. + if (isFakeTouchstartFromScreenReader(event)) { + this._modality.next('keyboard'); + return; + } + // Store the timestamp of this touch event, as it's used to distinguish between mouse events + // triggered via mouse vs touch. + this._lastTouchMs = Date.now(); + this._modality.next('touch'); + this._mostRecentTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + }; + this._options = { + ...INPUT_MODALITY_DETECTOR_DEFAULT_OPTIONS, + ...options + }; + // Skip the first emission as it's null. + this.modalityDetected = this._modality.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.skip)(1)); + this.modalityChanged = this.modalityDetected.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.distinctUntilChanged)()); + // If we're not in a browser, this service should do nothing, as there's no relevant input + // modality to detect. + if (_platform.isBrowser) { + ngZone.runOutsideAngular(() => { + document.addEventListener('keydown', this._onKeydown, modalityEventListenerOptions); + document.addEventListener('mousedown', this._onMousedown, modalityEventListenerOptions); + document.addEventListener('touchstart', this._onTouchstart, modalityEventListenerOptions); + }); + } + } + ngOnDestroy() { + this._modality.complete(); + if (this._platform.isBrowser) { + document.removeEventListener('keydown', this._onKeydown, modalityEventListenerOptions); + document.removeEventListener('mousedown', this._onMousedown, modalityEventListenerOptions); + document.removeEventListener('touchstart', this._onTouchstart, modalityEventListenerOptions); + } + } + static #_ = this.ɵfac = function InputModalityDetector_Factory(t) { + return new (t || InputModalityDetector)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](INPUT_MODALITY_DETECTOR_OPTIONS, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: InputModalityDetector, + factory: InputModalityDetector.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](InputModalityDetector, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: Document, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [INPUT_MODALITY_DETECTOR_OPTIONS] + }] + }]; + }, null); +})(); +const LIVE_ANNOUNCER_ELEMENT_TOKEN = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('liveAnnouncerElement', { + providedIn: 'root', + factory: LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY +}); +/** @docs-private */ +function LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY() { + return null; +} +/** Injection token that can be used to configure the default options for the LiveAnnouncer. */ +const LIVE_ANNOUNCER_DEFAULT_OPTIONS = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('LIVE_ANNOUNCER_DEFAULT_OPTIONS'); +let uniqueIds = 0; +class LiveAnnouncer { + constructor(elementToken, _ngZone, _document, _defaultOptions) { + this._ngZone = _ngZone; + this._defaultOptions = _defaultOptions; + // We inject the live element and document as `any` because the constructor signature cannot + // reference browser globals (HTMLElement, Document) on non-browser environments, since having + // a class decorator causes TypeScript to preserve the constructor signature types. + this._document = _document; + this._liveElement = elementToken || this._createLiveElement(); + } + announce(message, ...args) { + const defaultOptions = this._defaultOptions; + let politeness; + let duration; + if (args.length === 1 && typeof args[0] === 'number') { + duration = args[0]; + } else { + [politeness, duration] = args; + } + this.clear(); + clearTimeout(this._previousTimeout); + if (!politeness) { + politeness = defaultOptions && defaultOptions.politeness ? defaultOptions.politeness : 'polite'; + } + if (duration == null && defaultOptions) { + duration = defaultOptions.duration; + } + // TODO: ensure changing the politeness works on all environments we support. + this._liveElement.setAttribute('aria-live', politeness); + if (this._liveElement.id) { + this._exposeAnnouncerToModals(this._liveElement.id); + } + // This 100ms timeout is necessary for some browser + screen-reader combinations: + // - Both JAWS and NVDA over IE11 will not announce anything without a non-zero timeout. + // - With Chrome and IE11 with NVDA or JAWS, a repeated (identical) message won't be read a + // second time without clearing and then using a non-zero delay. + // (using JAWS 17 at time of this writing). + return this._ngZone.runOutsideAngular(() => { + if (!this._currentPromise) { + this._currentPromise = new Promise(resolve => this._currentResolve = resolve); + } + clearTimeout(this._previousTimeout); + this._previousTimeout = setTimeout(() => { + this._liveElement.textContent = message; + if (typeof duration === 'number') { + this._previousTimeout = setTimeout(() => this.clear(), duration); + } + this._currentResolve(); + this._currentPromise = this._currentResolve = undefined; + }, 100); + return this._currentPromise; + }); + } + /** + * Clears the current text from the announcer element. Can be used to prevent + * screen readers from reading the text out again while the user is going + * through the page landmarks. + */ + clear() { + if (this._liveElement) { + this._liveElement.textContent = ''; + } + } + ngOnDestroy() { + clearTimeout(this._previousTimeout); + this._liveElement?.remove(); + this._liveElement = null; + this._currentResolve?.(); + this._currentPromise = this._currentResolve = undefined; + } + _createLiveElement() { + const elementClass = 'cdk-live-announcer-element'; + const previousElements = this._document.getElementsByClassName(elementClass); + const liveEl = this._document.createElement('div'); + // Remove any old containers. This can happen when coming in from a server-side-rendered page. + for (let i = 0; i < previousElements.length; i++) { + previousElements[i].remove(); + } + liveEl.classList.add(elementClass); + liveEl.classList.add('cdk-visually-hidden'); + liveEl.setAttribute('aria-atomic', 'true'); + liveEl.setAttribute('aria-live', 'polite'); + liveEl.id = `cdk-live-announcer-${uniqueIds++}`; + this._document.body.appendChild(liveEl); + return liveEl; + } + /** + * Some browsers won't expose the accessibility node of the live announcer element if there is an + * `aria-modal` and the live announcer is outside of it. This method works around the issue by + * pointing the `aria-owns` of all modals to the live announcer element. + */ + _exposeAnnouncerToModals(id) { + // TODO(http://github.com/angular/components/issues/26853): consider de-duplicating this with + // the `SnakBarContainer` and other usages. + // + // Note that the selector here is limited to CDK overlays at the moment in order to reduce the + // section of the DOM we need to look through. This should cover all the cases we support, but + // the selector can be expanded if it turns out to be too narrow. + const modals = this._document.querySelectorAll('body > .cdk-overlay-container [aria-modal="true"]'); + for (let i = 0; i < modals.length; i++) { + const modal = modals[i]; + const ariaOwns = modal.getAttribute('aria-owns'); + if (!ariaOwns) { + modal.setAttribute('aria-owns', id); + } else if (ariaOwns.indexOf(id) === -1) { + modal.setAttribute('aria-owns', ariaOwns + ' ' + id); + } + } + } + static #_ = this.ɵfac = function LiveAnnouncer_Factory(t) { + return new (t || LiveAnnouncer)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](LIVE_ANNOUNCER_ELEMENT_TOKEN, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](LIVE_ANNOUNCER_DEFAULT_OPTIONS, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: LiveAnnouncer, + factory: LiveAnnouncer.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](LiveAnnouncer, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [LIVE_ANNOUNCER_ELEMENT_TOKEN] + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [LIVE_ANNOUNCER_DEFAULT_OPTIONS] + }] + }]; + }, null); +})(); +/** + * A directive that works similarly to aria-live, but uses the LiveAnnouncer to ensure compatibility + * with a wider range of browsers and screen readers. + */ +class CdkAriaLive { + /** The aria-live politeness level to use when announcing messages. */ + get politeness() { + return this._politeness; + } + set politeness(value) { + this._politeness = value === 'off' || value === 'assertive' ? value : 'polite'; + if (this._politeness === 'off') { + if (this._subscription) { + this._subscription.unsubscribe(); + this._subscription = null; + } + } else if (!this._subscription) { + this._subscription = this._ngZone.runOutsideAngular(() => { + return this._contentObserver.observe(this._elementRef).subscribe(() => { + // Note that we use textContent here, rather than innerText, in order to avoid a reflow. + const elementText = this._elementRef.nativeElement.textContent; + // The `MutationObserver` fires also for attribute + // changes which we don't want to announce. + if (elementText !== this._previousAnnouncedText) { + this._liveAnnouncer.announce(elementText, this._politeness, this.duration); + this._previousAnnouncedText = elementText; + } + }); + }); + } + } + constructor(_elementRef, _liveAnnouncer, _contentObserver, _ngZone) { + this._elementRef = _elementRef; + this._liveAnnouncer = _liveAnnouncer; + this._contentObserver = _contentObserver; + this._ngZone = _ngZone; + this._politeness = 'polite'; + } + ngOnDestroy() { + if (this._subscription) { + this._subscription.unsubscribe(); + } + } + static #_ = this.ɵfac = function CdkAriaLive_Factory(t) { + return new (t || CdkAriaLive)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](LiveAnnouncer), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ContentObserver), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkAriaLive, + selectors: [["", "cdkAriaLive", ""]], + inputs: { + politeness: ["cdkAriaLive", "politeness"], + duration: ["cdkAriaLiveDuration", "duration"] + }, + exportAs: ["cdkAriaLive"] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkAriaLive, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkAriaLive]', + exportAs: 'cdkAriaLive' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: LiveAnnouncer + }, { + type: _angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ContentObserver + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, { + politeness: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkAriaLive'] + }], + duration: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkAriaLiveDuration'] + }] + }); +})(); + +/** InjectionToken for FocusMonitorOptions. */ +const FOCUS_MONITOR_DEFAULT_OPTIONS = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('cdk-focus-monitor-default-options'); +/** + * Event listener options that enable capturing and also + * mark the listener as passive if the browser supports it. + */ +const captureEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.normalizePassiveListenerOptions)({ + passive: true, + capture: true +}); +/** Monitors mouse and keyboard events to determine the cause of focus events. */ +class FocusMonitor { + constructor(_ngZone, _platform, _inputModalityDetector, /** @breaking-change 11.0.0 make document required */ + document, options) { + this._ngZone = _ngZone; + this._platform = _platform; + this._inputModalityDetector = _inputModalityDetector; + /** The focus origin that the next focus event is a result of. */ + this._origin = null; + /** Whether the window has just been focused. */ + this._windowFocused = false; + /** + * Whether the origin was determined via a touch interaction. Necessary as properly attributing + * focus events to touch interactions requires special logic. + */ + this._originFromTouchInteraction = false; + /** Map of elements being monitored to their info. */ + this._elementInfo = new Map(); + /** The number of elements currently being monitored. */ + this._monitoredElementCount = 0; + /** + * Keeps track of the root nodes to which we've currently bound a focus/blur handler, + * as well as the number of monitored elements that they contain. We have to treat focus/blur + * handlers differently from the rest of the events, because the browser won't emit events + * to the document when focus moves inside of a shadow root. + */ + this._rootNodeFocusListenerCount = new Map(); + /** + * Event listener for `focus` events on the window. + * Needs to be an arrow function in order to preserve the context when it gets bound. + */ + this._windowFocusListener = () => { + // Make a note of when the window regains focus, so we can + // restore the origin info for the focused element. + this._windowFocused = true; + this._windowFocusTimeoutId = window.setTimeout(() => this._windowFocused = false); + }; + /** Subject for stopping our InputModalityDetector subscription. */ + this._stopInputModalityDetector = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + /** + * Event listener for `focus` and 'blur' events on the document. + * Needs to be an arrow function in order to preserve the context when it gets bound. + */ + this._rootNodeFocusAndBlurListener = event => { + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + // We need to walk up the ancestor chain in order to support `checkChildren`. + for (let element = target; element; element = element.parentElement) { + if (event.type === 'focus') { + this._onFocus(event, element); + } else { + this._onBlur(event, element); + } + } + }; + this._document = document; + this._detectionMode = options?.detectionMode || 0 /* FocusMonitorDetectionMode.IMMEDIATE */; + } + monitor(element, checkChildren = false) { + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceElement)(element); + // Do nothing if we're not on the browser platform or the passed in node isn't an element. + if (!this._platform.isBrowser || nativeElement.nodeType !== 1) { + // Note: we don't want the observable to emit at all so we don't pass any parameters. + return (0,rxjs__WEBPACK_IMPORTED_MODULE_16__.of)(); + } + // If the element is inside the shadow DOM, we need to bind our focus/blur listeners to + // the shadow root, rather than the `document`, because the browser won't emit focus events + // to the `document`, if focus is moving within the same shadow root. + const rootNode = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getShadowRoot)(nativeElement) || this._getDocument(); + const cachedInfo = this._elementInfo.get(nativeElement); + // Check if we're already monitoring this element. + if (cachedInfo) { + if (checkChildren) { + // TODO(COMP-318): this can be problematic, because it'll turn all non-checkChildren + // observers into ones that behave as if `checkChildren` was turned on. We need a more + // robust solution. + cachedInfo.checkChildren = true; + } + return cachedInfo.subject; + } + // Create monitored element info. + const info = { + checkChildren: checkChildren, + subject: new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(), + rootNode + }; + this._elementInfo.set(nativeElement, info); + this._registerGlobalListeners(info); + return info.subject; + } + stopMonitoring(element) { + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceElement)(element); + const elementInfo = this._elementInfo.get(nativeElement); + if (elementInfo) { + elementInfo.subject.complete(); + this._setClasses(nativeElement); + this._elementInfo.delete(nativeElement); + this._removeGlobalListeners(elementInfo); + } + } + focusVia(element, origin, options) { + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_11__.coerceElement)(element); + const focusedElement = this._getDocument().activeElement; + // If the element is focused already, calling `focus` again won't trigger the event listener + // which means that the focus classes won't be updated. If that's the case, update the classes + // directly without waiting for an event. + if (nativeElement === focusedElement) { + this._getClosestElementsInfo(nativeElement).forEach(([currentElement, info]) => this._originChanged(currentElement, origin, info)); + } else { + this._setOrigin(origin); + // `focus` isn't available on the server + if (typeof nativeElement.focus === 'function') { + nativeElement.focus(options); + } + } + } + ngOnDestroy() { + this._elementInfo.forEach((_info, element) => this.stopMonitoring(element)); + } + /** Access injected document if available or fallback to global document reference */ + _getDocument() { + return this._document || document; + } + /** Use defaultView of injected document if available or fallback to global window reference */ + _getWindow() { + const doc = this._getDocument(); + return doc.defaultView || window; + } + _getFocusOrigin(focusEventTarget) { + if (this._origin) { + // If the origin was realized via a touch interaction, we need to perform additional checks + // to determine whether the focus origin should be attributed to touch or program. + if (this._originFromTouchInteraction) { + return this._shouldBeAttributedToTouch(focusEventTarget) ? 'touch' : 'program'; + } else { + return this._origin; + } + } + // If the window has just regained focus, we can restore the most recent origin from before the + // window blurred. Otherwise, we've reached the point where we can't identify the source of the + // focus. This typically means one of two things happened: + // + // 1) The element was programmatically focused, or + // 2) The element was focused via screen reader navigation (which generally doesn't fire + // events). + // + // Because we can't distinguish between these two cases, we default to setting `program`. + if (this._windowFocused && this._lastFocusOrigin) { + return this._lastFocusOrigin; + } + // If the interaction is coming from an input label, we consider it a mouse interactions. + // This is a special case where focus moves on `click`, rather than `mousedown` which breaks + // our detection, because all our assumptions are for `mousedown`. We need to handle this + // special case, because it's very common for checkboxes and radio buttons. + if (focusEventTarget && this._isLastInteractionFromInputLabel(focusEventTarget)) { + return 'mouse'; + } + return 'program'; + } + /** + * Returns whether the focus event should be attributed to touch. Recall that in IMMEDIATE mode, a + * touch origin isn't immediately reset at the next tick (see _setOrigin). This means that when we + * handle a focus event following a touch interaction, we need to determine whether (1) the focus + * event was directly caused by the touch interaction or (2) the focus event was caused by a + * subsequent programmatic focus call triggered by the touch interaction. + * @param focusEventTarget The target of the focus event under examination. + */ + _shouldBeAttributedToTouch(focusEventTarget) { + // Please note that this check is not perfect. Consider the following edge case: + // + //
+ //
+ //
+ // + // Suppose there is a FocusMonitor in IMMEDIATE mode attached to #parent. When the user touches + // #child, #parent is programmatically focused. This code will attribute the focus to touch + // instead of program. This is a relatively minor edge-case that can be worked around by using + // focusVia(parent, 'program') to focus #parent. + return this._detectionMode === 1 /* FocusMonitorDetectionMode.EVENTUAL */ || !!focusEventTarget?.contains(this._inputModalityDetector._mostRecentTarget); + } + /** + * Sets the focus classes on the element based on the given focus origin. + * @param element The element to update the classes on. + * @param origin The focus origin. + */ + _setClasses(element, origin) { + element.classList.toggle('cdk-focused', !!origin); + element.classList.toggle('cdk-touch-focused', origin === 'touch'); + element.classList.toggle('cdk-keyboard-focused', origin === 'keyboard'); + element.classList.toggle('cdk-mouse-focused', origin === 'mouse'); + element.classList.toggle('cdk-program-focused', origin === 'program'); + } + /** + * Updates the focus origin. If we're using immediate detection mode, we schedule an async + * function to clear the origin at the end of a timeout. The duration of the timeout depends on + * the origin being set. + * @param origin The origin to set. + * @param isFromInteraction Whether we are setting the origin from an interaction event. + */ + _setOrigin(origin, isFromInteraction = false) { + this._ngZone.runOutsideAngular(() => { + this._origin = origin; + this._originFromTouchInteraction = origin === 'touch' && isFromInteraction; + // If we're in IMMEDIATE mode, reset the origin at the next tick (or in `TOUCH_BUFFER_MS` ms + // for a touch event). We reset the origin at the next tick because Firefox focuses one tick + // after the interaction event. We wait `TOUCH_BUFFER_MS` ms before resetting the origin for + // a touch event because when a touch event is fired, the associated focus event isn't yet in + // the event queue. Before doing so, clear any pending timeouts. + if (this._detectionMode === 0 /* FocusMonitorDetectionMode.IMMEDIATE */) { + clearTimeout(this._originTimeoutId); + const ms = this._originFromTouchInteraction ? TOUCH_BUFFER_MS : 1; + this._originTimeoutId = setTimeout(() => this._origin = null, ms); + } + }); + } + /** + * Handles focus events on a registered element. + * @param event The focus event. + * @param element The monitored element. + */ + _onFocus(event, element) { + // NOTE(mmalerba): We currently set the classes based on the focus origin of the most recent + // focus event affecting the monitored element. If we want to use the origin of the first event + // instead we should check for the cdk-focused class here and return if the element already has + // it. (This only matters for elements that have includesChildren = true). + // If we are not counting child-element-focus as focused, make sure that the event target is the + // monitored element itself. + const elementInfo = this._elementInfo.get(element); + const focusEventTarget = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__._getEventTarget)(event); + if (!elementInfo || !elementInfo.checkChildren && element !== focusEventTarget) { + return; + } + this._originChanged(element, this._getFocusOrigin(focusEventTarget), elementInfo); + } + /** + * Handles blur events on a registered element. + * @param event The blur event. + * @param element The monitored element. + */ + _onBlur(event, element) { + // If we are counting child-element-focus as focused, make sure that we aren't just blurring in + // order to focus another child of the monitored element. + const elementInfo = this._elementInfo.get(element); + if (!elementInfo || elementInfo.checkChildren && event.relatedTarget instanceof Node && element.contains(event.relatedTarget)) { + return; + } + this._setClasses(element); + this._emitOrigin(elementInfo, null); + } + _emitOrigin(info, origin) { + if (info.subject.observers.length) { + this._ngZone.run(() => info.subject.next(origin)); + } + } + _registerGlobalListeners(elementInfo) { + if (!this._platform.isBrowser) { + return; + } + const rootNode = elementInfo.rootNode; + const rootNodeFocusListeners = this._rootNodeFocusListenerCount.get(rootNode) || 0; + if (!rootNodeFocusListeners) { + this._ngZone.runOutsideAngular(() => { + rootNode.addEventListener('focus', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + rootNode.addEventListener('blur', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + }); + } + this._rootNodeFocusListenerCount.set(rootNode, rootNodeFocusListeners + 1); + // Register global listeners when first element is monitored. + if (++this._monitoredElementCount === 1) { + // Note: we listen to events in the capture phase so we + // can detect them even if the user stops propagation. + this._ngZone.runOutsideAngular(() => { + const window = this._getWindow(); + window.addEventListener('focus', this._windowFocusListener); + }); + // The InputModalityDetector is also just a collection of global listeners. + this._inputModalityDetector.modalityDetected.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.takeUntil)(this._stopInputModalityDetector)).subscribe(modality => { + this._setOrigin(modality, true /* isFromInteraction */); + }); + } + } + _removeGlobalListeners(elementInfo) { + const rootNode = elementInfo.rootNode; + if (this._rootNodeFocusListenerCount.has(rootNode)) { + const rootNodeFocusListeners = this._rootNodeFocusListenerCount.get(rootNode); + if (rootNodeFocusListeners > 1) { + this._rootNodeFocusListenerCount.set(rootNode, rootNodeFocusListeners - 1); + } else { + rootNode.removeEventListener('focus', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + rootNode.removeEventListener('blur', this._rootNodeFocusAndBlurListener, captureEventListenerOptions); + this._rootNodeFocusListenerCount.delete(rootNode); + } + } + // Unregister global listeners when last element is unmonitored. + if (! --this._monitoredElementCount) { + const window = this._getWindow(); + window.removeEventListener('focus', this._windowFocusListener); + // Equivalently, stop our InputModalityDetector subscription. + this._stopInputModalityDetector.next(); + // Clear timeouts for all potentially pending timeouts to prevent the leaks. + clearTimeout(this._windowFocusTimeoutId); + clearTimeout(this._originTimeoutId); + } + } + /** Updates all the state on an element once its focus origin has changed. */ + _originChanged(element, origin, elementInfo) { + this._setClasses(element, origin); + this._emitOrigin(elementInfo, origin); + this._lastFocusOrigin = origin; + } + /** + * Collects the `MonitoredElementInfo` of a particular element and + * all of its ancestors that have enabled `checkChildren`. + * @param element Element from which to start the search. + */ + _getClosestElementsInfo(element) { + const results = []; + this._elementInfo.forEach((info, currentElement) => { + if (currentElement === element || info.checkChildren && currentElement.contains(element)) { + results.push([currentElement, info]); + } + }); + return results; + } + /** + * Returns whether an interaction is likely to have come from the user clicking the `label` of + * an `input` or `textarea` in order to focus it. + * @param focusEventTarget Target currently receiving focus. + */ + _isLastInteractionFromInputLabel(focusEventTarget) { + const { + _mostRecentTarget: mostRecentTarget, + mostRecentModality + } = this._inputModalityDetector; + // If the last interaction used the mouse on an element contained by one of the labels + // of an `input`/`textarea` that is currently focused, it is very likely that the + // user redirected focus using the label. + if (mostRecentModality !== 'mouse' || !mostRecentTarget || mostRecentTarget === focusEventTarget || focusEventTarget.nodeName !== 'INPUT' && focusEventTarget.nodeName !== 'TEXTAREA' || focusEventTarget.disabled) { + return false; + } + const labels = focusEventTarget.labels; + if (labels) { + for (let i = 0; i < labels.length; i++) { + if (labels[i].contains(mostRecentTarget)) { + return true; + } + } + } + return false; + } + static #_ = this.ɵfac = function FocusMonitor_Factory(t) { + return new (t || FocusMonitor)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](InputModalityDetector), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](FOCUS_MONITOR_DEFAULT_OPTIONS, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: FocusMonitor, + factory: FocusMonitor.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](FocusMonitor, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }, { + type: InputModalityDetector + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [FOCUS_MONITOR_DEFAULT_OPTIONS] + }] + }]; + }, null); +})(); +/** + * Directive that determines how a particular element was focused (via keyboard, mouse, touch, or + * programmatically) and adds corresponding classes to the element. + * + * There are two variants of this directive: + * 1) cdkMonitorElementFocus: does not consider an element to be focused if one of its children is + * focused. + * 2) cdkMonitorSubtreeFocus: considers an element focused if it or any of its children are focused. + */ +class CdkMonitorFocus { + constructor(_elementRef, _focusMonitor) { + this._elementRef = _elementRef; + this._focusMonitor = _focusMonitor; + this._focusOrigin = null; + this.cdkFocusChange = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + } + get focusOrigin() { + return this._focusOrigin; + } + ngAfterViewInit() { + const element = this._elementRef.nativeElement; + this._monitorSubscription = this._focusMonitor.monitor(element, element.nodeType === 1 && element.hasAttribute('cdkMonitorSubtreeFocus')).subscribe(origin => { + this._focusOrigin = origin; + this.cdkFocusChange.emit(origin); + }); + } + ngOnDestroy() { + this._focusMonitor.stopMonitoring(this._elementRef); + if (this._monitorSubscription) { + this._monitorSubscription.unsubscribe(); + } + } + static #_ = this.ɵfac = function CdkMonitorFocus_Factory(t) { + return new (t || CdkMonitorFocus)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](FocusMonitor)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkMonitorFocus, + selectors: [["", "cdkMonitorElementFocus", ""], ["", "cdkMonitorSubtreeFocus", ""]], + outputs: { + cdkFocusChange: "cdkFocusChange" + }, + exportAs: ["cdkMonitorFocus"] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkMonitorFocus, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkMonitorElementFocus], [cdkMonitorSubtreeFocus]', + exportAs: 'cdkMonitorFocus' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: FocusMonitor + }]; + }, { + cdkFocusChange: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output + }] + }); +})(); + +/** CSS class applied to the document body when in black-on-white high-contrast mode. */ +const BLACK_ON_WHITE_CSS_CLASS = 'cdk-high-contrast-black-on-white'; +/** CSS class applied to the document body when in white-on-black high-contrast mode. */ +const WHITE_ON_BLACK_CSS_CLASS = 'cdk-high-contrast-white-on-black'; +/** CSS class applied to the document body when in high-contrast mode. */ +const HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS = 'cdk-high-contrast-active'; +/** + * Service to determine whether the browser is currently in a high-contrast-mode environment. + * + * Microsoft Windows supports an accessibility feature called "High Contrast Mode". This mode + * changes the appearance of all applications, including web applications, to dramatically increase + * contrast. + * + * IE, Edge, and Firefox currently support this mode. Chrome does not support Windows High Contrast + * Mode. This service does not detect high-contrast mode as added by the Chrome "High Contrast" + * browser extension. + */ +class HighContrastModeDetector { + constructor(_platform, document) { + this._platform = _platform; + this._document = document; + this._breakpointSubscription = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_cdk_layout__WEBPACK_IMPORTED_MODULE_18__.BreakpointObserver).observe('(forced-colors: active)').subscribe(() => { + if (this._hasCheckedHighContrastMode) { + this._hasCheckedHighContrastMode = false; + this._applyBodyHighContrastModeCssClasses(); + } + }); + } + /** Gets the current high-contrast-mode for the page. */ + getHighContrastMode() { + if (!this._platform.isBrowser) { + return 0 /* HighContrastMode.NONE */; + } + // Create a test element with an arbitrary background-color that is neither black nor + // white; high-contrast mode will coerce the color to either black or white. Also ensure that + // appending the test element to the DOM does not affect layout by absolutely positioning it + const testElement = this._document.createElement('div'); + testElement.style.backgroundColor = 'rgb(1,2,3)'; + testElement.style.position = 'absolute'; + this._document.body.appendChild(testElement); + // Get the computed style for the background color, collapsing spaces to normalize between + // browsers. Once we get this color, we no longer need the test element. Access the `window` + // via the document so we can fake it in tests. Note that we have extra null checks, because + // this logic will likely run during app bootstrap and throwing can break the entire app. + const documentWindow = this._document.defaultView || window; + const computedStyle = documentWindow && documentWindow.getComputedStyle ? documentWindow.getComputedStyle(testElement) : null; + const computedColor = (computedStyle && computedStyle.backgroundColor || '').replace(/ /g, ''); + testElement.remove(); + switch (computedColor) { + // Pre Windows 11 dark theme. + case 'rgb(0,0,0)': + // Windows 11 dark themes. + case 'rgb(45,50,54)': + case 'rgb(32,32,32)': + return 2 /* HighContrastMode.WHITE_ON_BLACK */; + // Pre Windows 11 light theme. + case 'rgb(255,255,255)': + // Windows 11 light theme. + case 'rgb(255,250,239)': + return 1 /* HighContrastMode.BLACK_ON_WHITE */; + } + return 0 /* HighContrastMode.NONE */; + } + ngOnDestroy() { + this._breakpointSubscription.unsubscribe(); + } + /** Applies CSS classes indicating high-contrast mode to document body (browser-only). */ + _applyBodyHighContrastModeCssClasses() { + if (!this._hasCheckedHighContrastMode && this._platform.isBrowser && this._document.body) { + const bodyClasses = this._document.body.classList; + bodyClasses.remove(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, BLACK_ON_WHITE_CSS_CLASS, WHITE_ON_BLACK_CSS_CLASS); + this._hasCheckedHighContrastMode = true; + const mode = this.getHighContrastMode(); + if (mode === 1 /* HighContrastMode.BLACK_ON_WHITE */) { + bodyClasses.add(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, BLACK_ON_WHITE_CSS_CLASS); + } else if (mode === 2 /* HighContrastMode.WHITE_ON_BLACK */) { + bodyClasses.add(HIGH_CONTRAST_MODE_ACTIVE_CSS_CLASS, WHITE_ON_BLACK_CSS_CLASS); + } + } + } + static #_ = this.ɵfac = function HighContrastModeDetector_Factory(t) { + return new (t || HighContrastModeDetector)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: HighContrastModeDetector, + factory: HighContrastModeDetector.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](HighContrastModeDetector, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_2__.Platform + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT] + }] + }]; + }, null); +})(); +class A11yModule { + constructor(highContrastModeDetector) { + highContrastModeDetector._applyBodyHighContrastModeCssClasses(); + } + static #_ = this.ɵfac = function A11yModule_Factory(t) { + return new (t || A11yModule)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](HighContrastModeDetector)); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: A11yModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ + imports: [_angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ObserversModule] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](A11yModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + imports: [_angular_cdk_observers__WEBPACK_IMPORTED_MODULE_15__.ObserversModule], + declarations: [CdkAriaLive, CdkTrapFocus, CdkMonitorFocus], + exports: [CdkAriaLive, CdkTrapFocus, CdkMonitorFocus] + }] + }], function () { + return [{ + type: HighContrastModeDetector + }]; + }, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 24565: +/*!*****************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/bidi.mjs ***! + \*****************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ BidiModule: () => (/* binding */ BidiModule), +/* harmony export */ DIR_DOCUMENT: () => (/* binding */ DIR_DOCUMENT), +/* harmony export */ Dir: () => (/* binding */ Dir), +/* harmony export */ Directionality: () => (/* binding */ Directionality) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); + + + + +/** + * Injection token used to inject the document into Directionality. + * This is used so that the value can be faked in tests. + * + * We can't use the real document in tests because changing the real `dir` causes geometry-based + * tests in Safari to fail. + * + * We also can't re-provide the DOCUMENT token from platform-browser because the unit tests + * themselves use things like `querySelector` in test code. + * + * This token is defined in a separate file from Directionality as a workaround for + * https://github.com/angular/angular/issues/22559 + * + * @docs-private + */ +const DIR_DOCUMENT = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('cdk-dir-doc', { + providedIn: 'root', + factory: DIR_DOCUMENT_FACTORY +}); +/** @docs-private */ +function DIR_DOCUMENT_FACTORY() { + return (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_common__WEBPACK_IMPORTED_MODULE_1__.DOCUMENT); +} + +/** Regex that matches locales with an RTL script. Taken from `goog.i18n.bidi.isRtlLanguage`. */ +const RTL_LOCALE_PATTERN = /^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i; +/** Resolves a string value to a specific direction. */ +function _resolveDirectionality(rawValue) { + const value = rawValue?.toLowerCase() || ''; + if (value === 'auto' && typeof navigator !== 'undefined' && navigator?.language) { + return RTL_LOCALE_PATTERN.test(navigator.language) ? 'rtl' : 'ltr'; + } + return value === 'rtl' ? 'rtl' : 'ltr'; +} +/** + * The directionality (LTR / RTL) context for the application (or a subtree of it). + * Exposes the current direction and a stream of direction changes. + */ +class Directionality { + constructor(_document) { + /** The current 'ltr' or 'rtl' value. */ + this.value = 'ltr'; + /** Stream that emits whenever the 'ltr' / 'rtl' state changes. */ + this.change = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + if (_document) { + const bodyDir = _document.body ? _document.body.dir : null; + const htmlDir = _document.documentElement ? _document.documentElement.dir : null; + this.value = _resolveDirectionality(bodyDir || htmlDir || 'ltr'); + } + } + ngOnDestroy() { + this.change.complete(); + } + static #_ = this.ɵfac = function Directionality_Factory(t) { + return new (t || Directionality)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](DIR_DOCUMENT, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: Directionality, + factory: Directionality.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](Directionality, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [DIR_DOCUMENT] + }] + }]; + }, null); +})(); + +/** + * Directive to listen for changes of direction of part of the DOM. + * + * Provides itself as Directionality such that descendant directives only need to ever inject + * Directionality to get the closest direction. + */ +class Dir { + constructor() { + /** Normalized direction that accounts for invalid/unsupported values. */ + this._dir = 'ltr'; + /** Whether the `value` has been set to its initial value. */ + this._isInitialized = false; + /** Event emitted when the direction changes. */ + this.change = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + } + /** @docs-private */ + get dir() { + return this._dir; + } + set dir(value) { + const previousValue = this._dir; + // Note: `_resolveDirectionality` resolves the language based on the browser's language, + // whereas the browser does it based on the content of the element. Since doing so based + // on the content can be expensive, for now we're doing the simpler matching. + this._dir = _resolveDirectionality(value); + this._rawDir = value; + if (previousValue !== this._dir && this._isInitialized) { + this.change.emit(this._dir); + } + } + /** Current layout direction of the element. */ + get value() { + return this.dir; + } + /** Initialize once default value has been set. */ + ngAfterContentInit() { + this._isInitialized = true; + } + ngOnDestroy() { + this.change.complete(); + } + static #_ = this.ɵfac = function Dir_Factory(t) { + return new (t || Dir)(); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: Dir, + selectors: [["", "dir", ""]], + hostVars: 1, + hostBindings: function Dir_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵattribute"]("dir", ctx._rawDir); + } + }, + inputs: { + dir: "dir" + }, + outputs: { + change: "dirChange" + }, + exportAs: ["dir"], + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: Directionality, + useExisting: Dir + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](Dir, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[dir]', + providers: [{ + provide: Directionality, + useExisting: Dir + }], + host: { + '[attr.dir]': '_rawDir' + }, + exportAs: 'dir' + }] + }], null, { + change: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output, + args: ['dirChange'] + }], + dir: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); +class BidiModule { + static #_ = this.ɵfac = function BidiModule_Factory(t) { + return new (t || BidiModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: BidiModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](BidiModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + exports: [Dir], + declarations: [Dir] + }] + }], null, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 55998: +/*!*********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/coercion.mjs ***! + \*********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ _isNumberValue: () => (/* binding */ _isNumberValue), +/* harmony export */ coerceArray: () => (/* binding */ coerceArray), +/* harmony export */ coerceBooleanProperty: () => (/* binding */ coerceBooleanProperty), +/* harmony export */ coerceCssPixelValue: () => (/* binding */ coerceCssPixelValue), +/* harmony export */ coerceElement: () => (/* binding */ coerceElement), +/* harmony export */ coerceNumberProperty: () => (/* binding */ coerceNumberProperty), +/* harmony export */ coerceStringArray: () => (/* binding */ coerceStringArray) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); + + +/** Coerces a data-bound value (typically a string) to a boolean. */ +function coerceBooleanProperty(value) { + return value != null && `${value}` !== 'false'; +} +function coerceNumberProperty(value, fallbackValue = 0) { + return _isNumberValue(value) ? Number(value) : fallbackValue; +} +/** + * Whether the provided value is considered a number. + * @docs-private + */ +function _isNumberValue(value) { + // parseFloat(value) handles most of the cases we're interested in (it treats null, empty string, + // and other non-number values as NaN, where Number just uses 0) but it considers the string + // '123hello' to be a valid number. Therefore we also check if Number(value) is NaN. + return !isNaN(parseFloat(value)) && !isNaN(Number(value)); +} +function coerceArray(value) { + return Array.isArray(value) ? value : [value]; +} + +/** Coerces a value to a CSS pixel value. */ +function coerceCssPixelValue(value) { + if (value == null) { + return ''; + } + return typeof value === 'string' ? value : `${value}px`; +} + +/** + * Coerces an ElementRef or an Element into an element. + * Useful for APIs that can accept either a ref or the native element itself. + */ +function coerceElement(elementOrRef) { + return elementOrRef instanceof _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef ? elementOrRef.nativeElement : elementOrRef; +} + +/** + * Coerces a value to an array of trimmed non-empty strings. + * Any input that is not an array, `null` or `undefined` will be turned into a string + * via `toString()` and subsequently split with the given separator. + * `null` and `undefined` will result in an empty array. + * This results in the following outcomes: + * - `null` -> `[]` + * - `[null]` -> `["null"]` + * - `["a", "b ", " "]` -> `["a", "b"]` + * - `[1, [2, 3]]` -> `["1", "2,3"]` + * - `[{ a: 0 }]` -> `["[object Object]"]` + * - `{ a: 0 }` -> `["[object", "Object]"]` + * + * Useful for defining CSS classes or table columns. + * @param value the value to coerce into an array of strings + * @param separator split-separator if value isn't an array + */ +function coerceStringArray(value, separator = /\s+/) { + const result = []; + if (value != null) { + const sourceValues = Array.isArray(value) ? value : `${value}`.split(separator); + for (const sourceValue of sourceValues) { + const trimmedString = `${sourceValue}`.trim(); + if (trimmedString) { + result.push(trimmedString); + } + } + } + return result; +} + + +/***/ }), + +/***/ 20636: +/*!************************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/collections.mjs ***! + \************************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ ArrayDataSource: () => (/* binding */ ArrayDataSource), +/* harmony export */ DataSource: () => (/* binding */ DataSource), +/* harmony export */ SelectionModel: () => (/* binding */ SelectionModel), +/* harmony export */ UniqueSelectionDispatcher: () => (/* binding */ UniqueSelectionDispatcher), +/* harmony export */ _DisposeViewRepeaterStrategy: () => (/* binding */ _DisposeViewRepeaterStrategy), +/* harmony export */ _RecycleViewRepeaterStrategy: () => (/* binding */ _RecycleViewRepeaterStrategy), +/* harmony export */ _VIEW_REPEATER_STRATEGY: () => (/* binding */ _VIEW_REPEATER_STRATEGY), +/* harmony export */ getMultipleValuesInSingleSelectionError: () => (/* binding */ getMultipleValuesInSingleSelectionError), +/* harmony export */ isDataSource: () => (/* binding */ isDataSource) +/* harmony export */ }); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs */ 19148); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 72450); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 9681); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); + + + +class DataSource {} +/** Checks whether an object is a data source. */ +function isDataSource(value) { + // Check if the value is a DataSource by observing if it has a connect function. Cannot + // be checked as an `instanceof DataSource` since people could create their own sources + // that match the interface, but don't extend DataSource. We also can't use `isObservable` + // here, because of some internal apps. + return value && typeof value.connect === 'function' && !(value instanceof rxjs__WEBPACK_IMPORTED_MODULE_0__.ConnectableObservable); +} + +/** DataSource wrapper for a native array. */ +class ArrayDataSource extends DataSource { + constructor(_data) { + super(); + this._data = _data; + } + connect() { + return (0,rxjs__WEBPACK_IMPORTED_MODULE_1__.isObservable)(this._data) ? this._data : (0,rxjs__WEBPACK_IMPORTED_MODULE_2__.of)(this._data); + } + disconnect() {} +} + +/** + * A repeater that destroys views when they are removed from a + * {@link ViewContainerRef}. When new items are inserted into the container, + * the repeater will always construct a new embedded view for each item. + * + * @template T The type for the embedded view's $implicit property. + * @template R The type for the item in each IterableDiffer change record. + * @template C The type for the context passed to each embedded view. + */ +class _DisposeViewRepeaterStrategy { + applyChanges(changes, viewContainerRef, itemContextFactory, itemValueResolver, itemViewChanged) { + changes.forEachOperation((record, adjustedPreviousIndex, currentIndex) => { + let view; + let operation; + if (record.previousIndex == null) { + const insertContext = itemContextFactory(record, adjustedPreviousIndex, currentIndex); + view = viewContainerRef.createEmbeddedView(insertContext.templateRef, insertContext.context, insertContext.index); + operation = 1 /* _ViewRepeaterOperation.INSERTED */; + } else if (currentIndex == null) { + viewContainerRef.remove(adjustedPreviousIndex); + operation = 3 /* _ViewRepeaterOperation.REMOVED */; + } else { + view = viewContainerRef.get(adjustedPreviousIndex); + viewContainerRef.move(view, currentIndex); + operation = 2 /* _ViewRepeaterOperation.MOVED */; + } + if (itemViewChanged) { + itemViewChanged({ + context: view?.context, + operation, + record + }); + } + }); + } + detach() {} +} + +/** + * A repeater that caches views when they are removed from a + * {@link ViewContainerRef}. When new items are inserted into the container, + * the repeater will reuse one of the cached views instead of creating a new + * embedded view. Recycling cached views reduces the quantity of expensive DOM + * inserts. + * + * @template T The type for the embedded view's $implicit property. + * @template R The type for the item in each IterableDiffer change record. + * @template C The type for the context passed to each embedded view. + */ +class _RecycleViewRepeaterStrategy { + constructor() { + /** + * The size of the cache used to store unused views. + * Setting the cache size to `0` will disable caching. Defaults to 20 views. + */ + this.viewCacheSize = 20; + /** + * View cache that stores embedded view instances that have been previously stamped out, + * but don't are not currently rendered. The view repeater will reuse these views rather than + * creating brand new ones. + * + * TODO(michaeljamesparsons) Investigate whether using a linked list would improve performance. + */ + this._viewCache = []; + } + /** Apply changes to the DOM. */ + applyChanges(changes, viewContainerRef, itemContextFactory, itemValueResolver, itemViewChanged) { + // Rearrange the views to put them in the right location. + changes.forEachOperation((record, adjustedPreviousIndex, currentIndex) => { + let view; + let operation; + if (record.previousIndex == null) { + // Item added. + const viewArgsFactory = () => itemContextFactory(record, adjustedPreviousIndex, currentIndex); + view = this._insertView(viewArgsFactory, currentIndex, viewContainerRef, itemValueResolver(record)); + operation = view ? 1 /* _ViewRepeaterOperation.INSERTED */ : 0 /* _ViewRepeaterOperation.REPLACED */; + } else if (currentIndex == null) { + // Item removed. + this._detachAndCacheView(adjustedPreviousIndex, viewContainerRef); + operation = 3 /* _ViewRepeaterOperation.REMOVED */; + } else { + // Item moved. + view = this._moveView(adjustedPreviousIndex, currentIndex, viewContainerRef, itemValueResolver(record)); + operation = 2 /* _ViewRepeaterOperation.MOVED */; + } + if (itemViewChanged) { + itemViewChanged({ + context: view?.context, + operation, + record + }); + } + }); + } + detach() { + for (const view of this._viewCache) { + view.destroy(); + } + this._viewCache = []; + } + /** + * Inserts a view for a new item, either from the cache or by creating a new + * one. Returns `undefined` if the item was inserted into a cached view. + */ + _insertView(viewArgsFactory, currentIndex, viewContainerRef, value) { + const cachedView = this._insertViewFromCache(currentIndex, viewContainerRef); + if (cachedView) { + cachedView.context.$implicit = value; + return undefined; + } + const viewArgs = viewArgsFactory(); + return viewContainerRef.createEmbeddedView(viewArgs.templateRef, viewArgs.context, viewArgs.index); + } + /** Detaches the view at the given index and inserts into the view cache. */ + _detachAndCacheView(index, viewContainerRef) { + const detachedView = viewContainerRef.detach(index); + this._maybeCacheView(detachedView, viewContainerRef); + } + /** Moves view at the previous index to the current index. */ + _moveView(adjustedPreviousIndex, currentIndex, viewContainerRef, value) { + const view = viewContainerRef.get(adjustedPreviousIndex); + viewContainerRef.move(view, currentIndex); + view.context.$implicit = value; + return view; + } + /** + * Cache the given detached view. If the cache is full, the view will be + * destroyed. + */ + _maybeCacheView(view, viewContainerRef) { + if (this._viewCache.length < this.viewCacheSize) { + this._viewCache.push(view); + } else { + const index = viewContainerRef.indexOf(view); + // The host component could remove views from the container outside of + // the view repeater. It's unlikely this will occur, but just in case, + // destroy the view on its own, otherwise destroy it through the + // container to ensure that all the references are removed. + if (index === -1) { + view.destroy(); + } else { + viewContainerRef.remove(index); + } + } + } + /** Inserts a recycled view from the cache at the given index. */ + _insertViewFromCache(index, viewContainerRef) { + const cachedView = this._viewCache.pop(); + if (cachedView) { + viewContainerRef.insert(cachedView, index); + } + return cachedView || null; + } +} + +/** + * Class to be used to power selecting one or more options from a list. + */ +class SelectionModel { + /** Selected values. */ + get selected() { + if (!this._selected) { + this._selected = Array.from(this._selection.values()); + } + return this._selected; + } + constructor(_multiple = false, initiallySelectedValues, _emitChanges = true, compareWith) { + this._multiple = _multiple; + this._emitChanges = _emitChanges; + this.compareWith = compareWith; + /** Currently-selected values. */ + this._selection = new Set(); + /** Keeps track of the deselected options that haven't been emitted by the change event. */ + this._deselectedToEmit = []; + /** Keeps track of the selected options that haven't been emitted by the change event. */ + this._selectedToEmit = []; + /** Event emitted when the value has changed. */ + this.changed = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + if (initiallySelectedValues && initiallySelectedValues.length) { + if (_multiple) { + initiallySelectedValues.forEach(value => this._markSelected(value)); + } else { + this._markSelected(initiallySelectedValues[0]); + } + // Clear the array in order to avoid firing the change event for preselected values. + this._selectedToEmit.length = 0; + } + } + /** + * Selects a value or an array of values. + * @param values The values to select + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + select(...values) { + this._verifyValueAssignment(values); + values.forEach(value => this._markSelected(value)); + const changed = this._hasQueuedChanges(); + this._emitChangeEvent(); + return changed; + } + /** + * Deselects a value or an array of values. + * @param values The values to deselect + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + deselect(...values) { + this._verifyValueAssignment(values); + values.forEach(value => this._unmarkSelected(value)); + const changed = this._hasQueuedChanges(); + this._emitChangeEvent(); + return changed; + } + /** + * Sets the selected values + * @param values The new selected values + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + setSelection(...values) { + this._verifyValueAssignment(values); + const oldValues = this.selected; + const newSelectedSet = new Set(values); + values.forEach(value => this._markSelected(value)); + oldValues.filter(value => !newSelectedSet.has(value)).forEach(value => this._unmarkSelected(value)); + const changed = this._hasQueuedChanges(); + this._emitChangeEvent(); + return changed; + } + /** + * Toggles a value between selected and deselected. + * @param value The value to toggle + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + toggle(value) { + return this.isSelected(value) ? this.deselect(value) : this.select(value); + } + /** + * Clears all of the selected values. + * @param flushEvent Whether to flush the changes in an event. + * If false, the changes to the selection will be flushed along with the next event. + * @return Whether the selection changed as a result of this call + * @breaking-change 16.0.0 make return type boolean + */ + clear(flushEvent = true) { + this._unmarkAll(); + const changed = this._hasQueuedChanges(); + if (flushEvent) { + this._emitChangeEvent(); + } + return changed; + } + /** + * Determines whether a value is selected. + */ + isSelected(value) { + return this._selection.has(this._getConcreteValue(value)); + } + /** + * Determines whether the model does not have a value. + */ + isEmpty() { + return this._selection.size === 0; + } + /** + * Determines whether the model has a value. + */ + hasValue() { + return !this.isEmpty(); + } + /** + * Sorts the selected values based on a predicate function. + */ + sort(predicate) { + if (this._multiple && this.selected) { + this._selected.sort(predicate); + } + } + /** + * Gets whether multiple values can be selected. + */ + isMultipleSelection() { + return this._multiple; + } + /** Emits a change event and clears the records of selected and deselected values. */ + _emitChangeEvent() { + // Clear the selected values so they can be re-cached. + this._selected = null; + if (this._selectedToEmit.length || this._deselectedToEmit.length) { + this.changed.next({ + source: this, + added: this._selectedToEmit, + removed: this._deselectedToEmit + }); + this._deselectedToEmit = []; + this._selectedToEmit = []; + } + } + /** Selects a value. */ + _markSelected(value) { + value = this._getConcreteValue(value); + if (!this.isSelected(value)) { + if (!this._multiple) { + this._unmarkAll(); + } + if (!this.isSelected(value)) { + this._selection.add(value); + } + if (this._emitChanges) { + this._selectedToEmit.push(value); + } + } + } + /** Deselects a value. */ + _unmarkSelected(value) { + value = this._getConcreteValue(value); + if (this.isSelected(value)) { + this._selection.delete(value); + if (this._emitChanges) { + this._deselectedToEmit.push(value); + } + } + } + /** Clears out the selected values. */ + _unmarkAll() { + if (!this.isEmpty()) { + this._selection.forEach(value => this._unmarkSelected(value)); + } + } + /** + * Verifies the value assignment and throws an error if the specified value array is + * including multiple values while the selection model is not supporting multiple values. + */ + _verifyValueAssignment(values) { + if (values.length > 1 && !this._multiple && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw getMultipleValuesInSingleSelectionError(); + } + } + /** Whether there are queued up change to be emitted. */ + _hasQueuedChanges() { + return !!(this._deselectedToEmit.length || this._selectedToEmit.length); + } + /** Returns a value that is comparable to inputValue by applying compareWith function, returns the same inputValue otherwise. */ + _getConcreteValue(inputValue) { + if (!this.compareWith) { + return inputValue; + } else { + for (let selectedValue of this._selection) { + if (this.compareWith(inputValue, selectedValue)) { + return selectedValue; + } + } + return inputValue; + } + } +} +/** + * Returns an error that reports that multiple values are passed into a selection model + * with a single value. + * @docs-private + */ +function getMultipleValuesInSingleSelectionError() { + return Error('Cannot pass multiple values into SelectionModel with single-value mode.'); +} + +/** + * Class to coordinate unique selection based on name. + * Intended to be consumed as an Angular service. + * This service is needed because native radio change events are only fired on the item currently + * being selected, and we still need to uncheck the previous selection. + * + * This service does not *store* any IDs and names because they may change at any time, so it is + * less error-prone if they are simply passed through when the events occur. + */ +class UniqueSelectionDispatcher { + constructor() { + this._listeners = []; + } + /** + * Notify other items that selection for the given name has been set. + * @param id ID of the item. + * @param name Name of the item. + */ + notify(id, name) { + for (let listener of this._listeners) { + listener(id, name); + } + } + /** + * Listen for future changes to item selection. + * @return Function used to deregister listener + */ + listen(listener) { + this._listeners.push(listener); + return () => { + this._listeners = this._listeners.filter(registered => { + return listener !== registered; + }); + }; + } + ngOnDestroy() { + this._listeners = []; + } + static #_ = this.ɵfac = function UniqueSelectionDispatcher_Factory(t) { + return new (t || UniqueSelectionDispatcher)(); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_4__["ɵɵdefineInjectable"]({ + token: UniqueSelectionDispatcher, + factory: UniqueSelectionDispatcher.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_4__["ɵsetClassMetadata"](UniqueSelectionDispatcher, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_4__.Injectable, + args: [{ + providedIn: 'root' + }] + }], null, null); +})(); + +/** + * Injection token for {@link _ViewRepeater}. This token is for use by Angular Material only. + * @docs-private + */ +const _VIEW_REPEATER_STRATEGY = new _angular_core__WEBPACK_IMPORTED_MODULE_4__.InjectionToken('_ViewRepeater'); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 17792: +/*!**********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/drag-drop.mjs ***! + \**********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CDK_DRAG_CONFIG: () => (/* binding */ CDK_DRAG_CONFIG), +/* harmony export */ CDK_DRAG_HANDLE: () => (/* binding */ CDK_DRAG_HANDLE), +/* harmony export */ CDK_DRAG_PARENT: () => (/* binding */ CDK_DRAG_PARENT), +/* harmony export */ CDK_DRAG_PLACEHOLDER: () => (/* binding */ CDK_DRAG_PLACEHOLDER), +/* harmony export */ CDK_DRAG_PREVIEW: () => (/* binding */ CDK_DRAG_PREVIEW), +/* harmony export */ CDK_DROP_LIST: () => (/* binding */ CDK_DROP_LIST), +/* harmony export */ CDK_DROP_LIST_GROUP: () => (/* binding */ CDK_DROP_LIST_GROUP), +/* harmony export */ CdkDrag: () => (/* binding */ CdkDrag), +/* harmony export */ CdkDragHandle: () => (/* binding */ CdkDragHandle), +/* harmony export */ CdkDragPlaceholder: () => (/* binding */ CdkDragPlaceholder), +/* harmony export */ CdkDragPreview: () => (/* binding */ CdkDragPreview), +/* harmony export */ CdkDropList: () => (/* binding */ CdkDropList), +/* harmony export */ CdkDropListGroup: () => (/* binding */ CdkDropListGroup), +/* harmony export */ DragDrop: () => (/* binding */ DragDrop), +/* harmony export */ DragDropModule: () => (/* binding */ DragDropModule), +/* harmony export */ DragDropRegistry: () => (/* binding */ DragDropRegistry), +/* harmony export */ DragRef: () => (/* binding */ DragRef), +/* harmony export */ DropListRef: () => (/* binding */ DropListRef), +/* harmony export */ copyArrayItem: () => (/* binding */ copyArrayItem), +/* harmony export */ moveItemInArray: () => (/* binding */ moveItemInArray), +/* harmony export */ transferArrayItem: () => (/* binding */ transferArrayItem) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/cdk/scrolling */ 50275); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_cdk_a11y__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/cdk/a11y */ 93170); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 17827); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs */ 82727); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 89718); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs/operators */ 46939); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! rxjs/operators */ 1062); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! rxjs/operators */ 15746); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! @angular/cdk/bidi */ 24565); + + + + + + + + + + + + +/** + * Shallow-extends a stylesheet object with another stylesheet-like object. + * Note that the keys in `source` have to be dash-cased. + * @docs-private + */ +function extendStyles(dest, source, importantProperties) { + for (let key in source) { + if (source.hasOwnProperty(key)) { + const value = source[key]; + if (value) { + dest.setProperty(key, value, importantProperties?.has(key) ? 'important' : ''); + } else { + dest.removeProperty(key); + } + } + } + return dest; +} +/** + * Toggles whether the native drag interactions should be enabled for an element. + * @param element Element on which to toggle the drag interactions. + * @param enable Whether the drag interactions should be enabled. + * @docs-private + */ +function toggleNativeDragInteractions(element, enable) { + const userSelect = enable ? '' : 'none'; + extendStyles(element.style, { + 'touch-action': enable ? '' : 'none', + '-webkit-user-drag': enable ? '' : 'none', + '-webkit-tap-highlight-color': enable ? '' : 'transparent', + 'user-select': userSelect, + '-ms-user-select': userSelect, + '-webkit-user-select': userSelect, + '-moz-user-select': userSelect + }); +} +/** + * Toggles whether an element is visible while preserving its dimensions. + * @param element Element whose visibility to toggle + * @param enable Whether the element should be visible. + * @param importantProperties Properties to be set as `!important`. + * @docs-private + */ +function toggleVisibility(element, enable, importantProperties) { + extendStyles(element.style, { + position: enable ? '' : 'fixed', + top: enable ? '' : '0', + opacity: enable ? '' : '0', + left: enable ? '' : '-999em' + }, importantProperties); +} +/** + * Combines a transform string with an optional other transform + * that exited before the base transform was applied. + */ +function combineTransforms(transform, initialTransform) { + return initialTransform && initialTransform != 'none' ? transform + ' ' + initialTransform : transform; +} + +/** Parses a CSS time value to milliseconds. */ +function parseCssTimeUnitsToMs(value) { + // Some browsers will return it in seconds, whereas others will return milliseconds. + const multiplier = value.toLowerCase().indexOf('ms') > -1 ? 1 : 1000; + return parseFloat(value) * multiplier; +} +/** Gets the transform transition duration, including the delay, of an element in milliseconds. */ +function getTransformTransitionDurationInMs(element) { + const computedStyle = getComputedStyle(element); + const transitionedProperties = parseCssPropertyValue(computedStyle, 'transition-property'); + const property = transitionedProperties.find(prop => prop === 'transform' || prop === 'all'); + // If there's no transition for `all` or `transform`, we shouldn't do anything. + if (!property) { + return 0; + } + // Get the index of the property that we're interested in and match + // it up to the same index in `transition-delay` and `transition-duration`. + const propertyIndex = transitionedProperties.indexOf(property); + const rawDurations = parseCssPropertyValue(computedStyle, 'transition-duration'); + const rawDelays = parseCssPropertyValue(computedStyle, 'transition-delay'); + return parseCssTimeUnitsToMs(rawDurations[propertyIndex]) + parseCssTimeUnitsToMs(rawDelays[propertyIndex]); +} +/** Parses out multiple values from a computed style into an array. */ +function parseCssPropertyValue(computedStyle, name) { + const value = computedStyle.getPropertyValue(name); + return value.split(',').map(part => part.trim()); +} + +/** Gets a mutable version of an element's bounding `ClientRect`. */ +function getMutableClientRect(element) { + const clientRect = element.getBoundingClientRect(); + // We need to clone the `clientRect` here, because all the values on it are readonly + // and we need to be able to update them. Also we can't use a spread here, because + // the values on a `ClientRect` aren't own properties. See: + // https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect#Notes + return { + top: clientRect.top, + right: clientRect.right, + bottom: clientRect.bottom, + left: clientRect.left, + width: clientRect.width, + height: clientRect.height, + x: clientRect.x, + y: clientRect.y + }; +} +/** + * Checks whether some coordinates are within a `ClientRect`. + * @param clientRect ClientRect that is being checked. + * @param x Coordinates along the X axis. + * @param y Coordinates along the Y axis. + */ +function isInsideClientRect(clientRect, x, y) { + const { + top, + bottom, + left, + right + } = clientRect; + return y >= top && y <= bottom && x >= left && x <= right; +} +/** + * Updates the top/left positions of a `ClientRect`, as well as their bottom/right counterparts. + * @param clientRect `ClientRect` that should be updated. + * @param top Amount to add to the `top` position. + * @param left Amount to add to the `left` position. + */ +function adjustClientRect(clientRect, top, left) { + clientRect.top += top; + clientRect.bottom = clientRect.top + clientRect.height; + clientRect.left += left; + clientRect.right = clientRect.left + clientRect.width; +} +/** + * Checks whether the pointer coordinates are close to a ClientRect. + * @param rect ClientRect to check against. + * @param threshold Threshold around the ClientRect. + * @param pointerX Coordinates along the X axis. + * @param pointerY Coordinates along the Y axis. + */ +function isPointerNearClientRect(rect, threshold, pointerX, pointerY) { + const { + top, + right, + bottom, + left, + width, + height + } = rect; + const xThreshold = width * threshold; + const yThreshold = height * threshold; + return pointerY > top - yThreshold && pointerY < bottom + yThreshold && pointerX > left - xThreshold && pointerX < right + xThreshold; +} + +/** Keeps track of the scroll position and dimensions of the parents of an element. */ +class ParentPositionTracker { + constructor(_document) { + this._document = _document; + /** Cached positions of the scrollable parent elements. */ + this.positions = new Map(); + } + /** Clears the cached positions. */ + clear() { + this.positions.clear(); + } + /** Caches the positions. Should be called at the beginning of a drag sequence. */ + cache(elements) { + this.clear(); + this.positions.set(this._document, { + scrollPosition: this.getViewportScrollPosition() + }); + elements.forEach(element => { + this.positions.set(element, { + scrollPosition: { + top: element.scrollTop, + left: element.scrollLeft + }, + clientRect: getMutableClientRect(element) + }); + }); + } + /** Handles scrolling while a drag is taking place. */ + handleScroll(event) { + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event); + const cachedPosition = this.positions.get(target); + if (!cachedPosition) { + return null; + } + const scrollPosition = cachedPosition.scrollPosition; + let newTop; + let newLeft; + if (target === this._document) { + const viewportScrollPosition = this.getViewportScrollPosition(); + newTop = viewportScrollPosition.top; + newLeft = viewportScrollPosition.left; + } else { + newTop = target.scrollTop; + newLeft = target.scrollLeft; + } + const topDifference = scrollPosition.top - newTop; + const leftDifference = scrollPosition.left - newLeft; + // Go through and update the cached positions of the scroll + // parents that are inside the element that was scrolled. + this.positions.forEach((position, node) => { + if (position.clientRect && target !== node && target.contains(node)) { + adjustClientRect(position.clientRect, topDifference, leftDifference); + } + }); + scrollPosition.top = newTop; + scrollPosition.left = newLeft; + return { + top: topDifference, + left: leftDifference + }; + } + /** + * Gets the scroll position of the viewport. Note that we use the scrollX and scrollY directly, + * instead of going through the `ViewportRuler`, because the first value the ruler looks at is + * the top/left offset of the `document.documentElement` which works for most cases, but breaks + * if the element is offset by something like the `BlockScrollStrategy`. + */ + getViewportScrollPosition() { + return { + top: window.scrollY, + left: window.scrollX + }; + } +} + +/** Creates a deep clone of an element. */ +function deepCloneNode(node) { + const clone = node.cloneNode(true); + const descendantsWithId = clone.querySelectorAll('[id]'); + const nodeName = node.nodeName.toLowerCase(); + // Remove the `id` to avoid having multiple elements with the same id on the page. + clone.removeAttribute('id'); + for (let i = 0; i < descendantsWithId.length; i++) { + descendantsWithId[i].removeAttribute('id'); + } + if (nodeName === 'canvas') { + transferCanvasData(node, clone); + } else if (nodeName === 'input' || nodeName === 'select' || nodeName === 'textarea') { + transferInputData(node, clone); + } + transferData('canvas', node, clone, transferCanvasData); + transferData('input, textarea, select', node, clone, transferInputData); + return clone; +} +/** Matches elements between an element and its clone and allows for their data to be cloned. */ +function transferData(selector, node, clone, callback) { + const descendantElements = node.querySelectorAll(selector); + if (descendantElements.length) { + const cloneElements = clone.querySelectorAll(selector); + for (let i = 0; i < descendantElements.length; i++) { + callback(descendantElements[i], cloneElements[i]); + } + } +} +// Counter for unique cloned radio button names. +let cloneUniqueId = 0; +/** Transfers the data of one input element to another. */ +function transferInputData(source, clone) { + // Browsers throw an error when assigning the value of a file input programmatically. + if (clone.type !== 'file') { + clone.value = source.value; + } + // Radio button `name` attributes must be unique for radio button groups + // otherwise original radio buttons can lose their checked state + // once the clone is inserted in the DOM. + if (clone.type === 'radio' && clone.name) { + clone.name = `mat-clone-${clone.name}-${cloneUniqueId++}`; + } +} +/** Transfers the data of one canvas element to another. */ +function transferCanvasData(source, clone) { + const context = clone.getContext('2d'); + if (context) { + // In some cases `drawImage` can throw (e.g. if the canvas size is 0x0). + // We can't do much about it so just ignore the error. + try { + context.drawImage(source, 0, 0); + } catch {} + } +} + +/** Options that can be used to bind a passive event listener. */ +const passiveEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__.normalizePassiveListenerOptions)({ + passive: true +}); +/** Options that can be used to bind an active event listener. */ +const activeEventListenerOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__.normalizePassiveListenerOptions)({ + passive: false +}); +/** + * Time in milliseconds for which to ignore mouse events, after + * receiving a touch event. Used to avoid doing double work for + * touch devices where the browser fires fake mouse events, in + * addition to touch events. + */ +const MOUSE_EVENT_IGNORE_TIME = 800; +/** Inline styles to be set as `!important` while dragging. */ +const dragImportantProperties = new Set([ +// Needs to be important, because some `mat-table` sets `position: sticky !important`. See #22781. +'position']); +/** + * Reference to a draggable item. Used to manipulate or dispose of the item. + */ +class DragRef { + /** Whether starting to drag this element is disabled. */ + get disabled() { + return this._disabled || !!(this._dropContainer && this._dropContainer.disabled); + } + set disabled(value) { + const newValue = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + if (newValue !== this._disabled) { + this._disabled = newValue; + this._toggleNativeDragInteractions(); + this._handles.forEach(handle => toggleNativeDragInteractions(handle, newValue)); + } + } + constructor(element, _config, _document, _ngZone, _viewportRuler, _dragDropRegistry) { + this._config = _config; + this._document = _document; + this._ngZone = _ngZone; + this._viewportRuler = _viewportRuler; + this._dragDropRegistry = _dragDropRegistry; + /** + * CSS `transform` applied to the element when it isn't being dragged. We need a + * passive transform in order for the dragged element to retain its new position + * after the user has stopped dragging and because we need to know the relative + * position in case they start dragging again. This corresponds to `element.style.transform`. + */ + this._passiveTransform = { + x: 0, + y: 0 + }; + /** CSS `transform` that is applied to the element while it's being dragged. */ + this._activeTransform = { + x: 0, + y: 0 + }; + /** + * Whether the dragging sequence has been started. Doesn't + * necessarily mean that the element has been moved. + */ + this._hasStartedDragging = false; + /** Emits when the item is being moved. */ + this._moveEvents = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Subscription to pointer movement events. */ + this._pointerMoveSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Subscription to the event that is dispatched when the user lifts their pointer. */ + this._pointerUpSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Subscription to the viewport being scrolled. */ + this._scrollSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Subscription to the viewport being resized. */ + this._resizeSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Cached reference to the boundary element. */ + this._boundaryElement = null; + /** Whether the native dragging interactions have been enabled on the root element. */ + this._nativeInteractionsEnabled = true; + /** Elements that can be used to drag the draggable item. */ + this._handles = []; + /** Registered handles that are currently disabled. */ + this._disabledHandles = new Set(); + /** Layout direction of the item. */ + this._direction = 'ltr'; + /** + * Amount of milliseconds to wait after the user has put their + * pointer down before starting to drag the element. + */ + this.dragStartDelay = 0; + this._disabled = false; + /** Emits as the drag sequence is being prepared. */ + this.beforeStarted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user starts dragging the item. */ + this.started = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user has released a drag item, before any animations have started. */ + this.released = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user stops dragging an item in the container. */ + this.ended = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user has moved the item into a new container. */ + this.entered = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user removes the item its container by dragging it into another container. */ + this.exited = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user drops the item inside a container. */ + this.dropped = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits as the user is dragging the item. Use with caution, + * because this event will fire for every pixel that the user has dragged. + */ + this.moved = this._moveEvents; + /** Handler for the `mousedown`/`touchstart` events. */ + this._pointerDown = event => { + this.beforeStarted.next(); + // Delegate the event based on whether it started from a handle or the element itself. + if (this._handles.length) { + const targetHandle = this._getTargetHandle(event); + if (targetHandle && !this._disabledHandles.has(targetHandle) && !this.disabled) { + this._initializeDragSequence(targetHandle, event); + } + } else if (!this.disabled) { + this._initializeDragSequence(this._rootElement, event); + } + }; + /** Handler that is invoked when the user moves their pointer after they've initiated a drag. */ + this._pointerMove = event => { + const pointerPosition = this._getPointerPositionOnPage(event); + if (!this._hasStartedDragging) { + const distanceX = Math.abs(pointerPosition.x - this._pickupPositionOnPage.x); + const distanceY = Math.abs(pointerPosition.y - this._pickupPositionOnPage.y); + const isOverThreshold = distanceX + distanceY >= this._config.dragStartThreshold; + // Only start dragging after the user has moved more than the minimum distance in either + // direction. Note that this is preferable over doing something like `skip(minimumDistance)` + // in the `pointerMove` subscription, because we're not guaranteed to have one move event + // per pixel of movement (e.g. if the user moves their pointer quickly). + if (isOverThreshold) { + const isDelayElapsed = Date.now() >= this._dragStartTime + this._getDragStartDelay(event); + const container = this._dropContainer; + if (!isDelayElapsed) { + this._endDragSequence(event); + return; + } + // Prevent other drag sequences from starting while something in the container is still + // being dragged. This can happen while we're waiting for the drop animation to finish + // and can cause errors, because some elements might still be moving around. + if (!container || !container.isDragging() && !container.isReceiving()) { + // Prevent the default action as soon as the dragging sequence is considered as + // "started" since waiting for the next event can allow the device to begin scrolling. + event.preventDefault(); + this._hasStartedDragging = true; + this._ngZone.run(() => this._startDragSequence(event)); + } + } + return; + } + // We prevent the default action down here so that we know that dragging has started. This is + // important for touch devices where doing this too early can unnecessarily block scrolling, + // if there's a dragging delay. + event.preventDefault(); + const constrainedPointerPosition = this._getConstrainedPointerPosition(pointerPosition); + this._hasMoved = true; + this._lastKnownPointerPosition = pointerPosition; + this._updatePointerDirectionDelta(constrainedPointerPosition); + if (this._dropContainer) { + this._updateActiveDropContainer(constrainedPointerPosition, pointerPosition); + } else { + // If there's a position constraint function, we want the element's top/left to be at the + // specific position on the page. Use the initial position as a reference if that's the case. + const offset = this.constrainPosition ? this._initialClientRect : this._pickupPositionOnPage; + const activeTransform = this._activeTransform; + activeTransform.x = constrainedPointerPosition.x - offset.x + this._passiveTransform.x; + activeTransform.y = constrainedPointerPosition.y - offset.y + this._passiveTransform.y; + this._applyRootElementTransform(activeTransform.x, activeTransform.y); + } + // Since this event gets fired for every pixel while dragging, we only + // want to fire it if the consumer opted into it. Also we have to + // re-enter the zone because we run all of the events on the outside. + if (this._moveEvents.observers.length) { + this._ngZone.run(() => { + this._moveEvents.next({ + source: this, + pointerPosition: constrainedPointerPosition, + event, + distance: this._getDragDistance(constrainedPointerPosition), + delta: this._pointerDirectionDelta + }); + }); + } + }; + /** Handler that is invoked when the user lifts their pointer up, after initiating a drag. */ + this._pointerUp = event => { + this._endDragSequence(event); + }; + /** Handles a native `dragstart` event. */ + this._nativeDragStart = event => { + if (this._handles.length) { + const targetHandle = this._getTargetHandle(event); + if (targetHandle && !this._disabledHandles.has(targetHandle) && !this.disabled) { + event.preventDefault(); + } + } else if (!this.disabled) { + // Usually this isn't necessary since the we prevent the default action in `pointerDown`, + // but some cases like dragging of links can slip through (see #24403). + event.preventDefault(); + } + }; + this.withRootElement(element).withParent(_config.parentDragRef || null); + this._parentPositions = new ParentPositionTracker(_document); + _dragDropRegistry.registerDragItem(this); + } + /** + * Returns the element that is being used as a placeholder + * while the current element is being dragged. + */ + getPlaceholderElement() { + return this._placeholder; + } + /** Returns the root draggable element. */ + getRootElement() { + return this._rootElement; + } + /** + * Gets the currently-visible element that represents the drag item. + * While dragging this is the placeholder, otherwise it's the root element. + */ + getVisibleElement() { + return this.isDragging() ? this.getPlaceholderElement() : this.getRootElement(); + } + /** Registers the handles that can be used to drag the element. */ + withHandles(handles) { + this._handles = handles.map(handle => (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(handle)); + this._handles.forEach(handle => toggleNativeDragInteractions(handle, this.disabled)); + this._toggleNativeDragInteractions(); + // Delete any lingering disabled handles that may have been destroyed. Note that we re-create + // the set, rather than iterate over it and filter out the destroyed handles, because while + // the ES spec allows for sets to be modified while they're being iterated over, some polyfills + // use an array internally which may throw an error. + const disabledHandles = new Set(); + this._disabledHandles.forEach(handle => { + if (this._handles.indexOf(handle) > -1) { + disabledHandles.add(handle); + } + }); + this._disabledHandles = disabledHandles; + return this; + } + /** + * Registers the template that should be used for the drag preview. + * @param template Template that from which to stamp out the preview. + */ + withPreviewTemplate(template) { + this._previewTemplate = template; + return this; + } + /** + * Registers the template that should be used for the drag placeholder. + * @param template Template that from which to stamp out the placeholder. + */ + withPlaceholderTemplate(template) { + this._placeholderTemplate = template; + return this; + } + /** + * Sets an alternate drag root element. The root element is the element that will be moved as + * the user is dragging. Passing an alternate root element is useful when trying to enable + * dragging on an element that you might not have access to. + */ + withRootElement(rootElement) { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(rootElement); + if (element !== this._rootElement) { + if (this._rootElement) { + this._removeRootElementListeners(this._rootElement); + } + this._ngZone.runOutsideAngular(() => { + element.addEventListener('mousedown', this._pointerDown, activeEventListenerOptions); + element.addEventListener('touchstart', this._pointerDown, passiveEventListenerOptions); + element.addEventListener('dragstart', this._nativeDragStart, activeEventListenerOptions); + }); + this._initialTransform = undefined; + this._rootElement = element; + } + if (typeof SVGElement !== 'undefined' && this._rootElement instanceof SVGElement) { + this._ownerSVGElement = this._rootElement.ownerSVGElement; + } + return this; + } + /** + * Element to which the draggable's position will be constrained. + */ + withBoundaryElement(boundaryElement) { + this._boundaryElement = boundaryElement ? (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(boundaryElement) : null; + this._resizeSubscription.unsubscribe(); + if (boundaryElement) { + this._resizeSubscription = this._viewportRuler.change(10).subscribe(() => this._containInsideBoundaryOnResize()); + } + return this; + } + /** Sets the parent ref that the ref is nested in. */ + withParent(parent) { + this._parentDragRef = parent; + return this; + } + /** Removes the dragging functionality from the DOM element. */ + dispose() { + this._removeRootElementListeners(this._rootElement); + // Do this check before removing from the registry since it'll + // stop being considered as dragged once it is removed. + if (this.isDragging()) { + // Since we move out the element to the end of the body while it's being + // dragged, we have to make sure that it's removed if it gets destroyed. + this._rootElement?.remove(); + } + this._anchor?.remove(); + this._destroyPreview(); + this._destroyPlaceholder(); + this._dragDropRegistry.removeDragItem(this); + this._removeSubscriptions(); + this.beforeStarted.complete(); + this.started.complete(); + this.released.complete(); + this.ended.complete(); + this.entered.complete(); + this.exited.complete(); + this.dropped.complete(); + this._moveEvents.complete(); + this._handles = []; + this._disabledHandles.clear(); + this._dropContainer = undefined; + this._resizeSubscription.unsubscribe(); + this._parentPositions.clear(); + this._boundaryElement = this._rootElement = this._ownerSVGElement = this._placeholderTemplate = this._previewTemplate = this._anchor = this._parentDragRef = null; + } + /** Checks whether the element is currently being dragged. */ + isDragging() { + return this._hasStartedDragging && this._dragDropRegistry.isDragging(this); + } + /** Resets a standalone drag item to its initial position. */ + reset() { + this._rootElement.style.transform = this._initialTransform || ''; + this._activeTransform = { + x: 0, + y: 0 + }; + this._passiveTransform = { + x: 0, + y: 0 + }; + } + /** + * Sets a handle as disabled. While a handle is disabled, it'll capture and interrupt dragging. + * @param handle Handle element that should be disabled. + */ + disableHandle(handle) { + if (!this._disabledHandles.has(handle) && this._handles.indexOf(handle) > -1) { + this._disabledHandles.add(handle); + toggleNativeDragInteractions(handle, true); + } + } + /** + * Enables a handle, if it has been disabled. + * @param handle Handle element to be enabled. + */ + enableHandle(handle) { + if (this._disabledHandles.has(handle)) { + this._disabledHandles.delete(handle); + toggleNativeDragInteractions(handle, this.disabled); + } + } + /** Sets the layout direction of the draggable item. */ + withDirection(direction) { + this._direction = direction; + return this; + } + /** Sets the container that the item is part of. */ + _withDropContainer(container) { + this._dropContainer = container; + } + /** + * Gets the current position in pixels the draggable outside of a drop container. + */ + getFreeDragPosition() { + const position = this.isDragging() ? this._activeTransform : this._passiveTransform; + return { + x: position.x, + y: position.y + }; + } + /** + * Sets the current position in pixels the draggable outside of a drop container. + * @param value New position to be set. + */ + setFreeDragPosition(value) { + this._activeTransform = { + x: 0, + y: 0 + }; + this._passiveTransform.x = value.x; + this._passiveTransform.y = value.y; + if (!this._dropContainer) { + this._applyRootElementTransform(value.x, value.y); + } + return this; + } + /** + * Sets the container into which to insert the preview element. + * @param value Container into which to insert the preview. + */ + withPreviewContainer(value) { + this._previewContainer = value; + return this; + } + /** Updates the item's sort order based on the last-known pointer position. */ + _sortFromLastPointerPosition() { + const position = this._lastKnownPointerPosition; + if (position && this._dropContainer) { + this._updateActiveDropContainer(this._getConstrainedPointerPosition(position), position); + } + } + /** Unsubscribes from the global subscriptions. */ + _removeSubscriptions() { + this._pointerMoveSubscription.unsubscribe(); + this._pointerUpSubscription.unsubscribe(); + this._scrollSubscription.unsubscribe(); + } + /** Destroys the preview element and its ViewRef. */ + _destroyPreview() { + this._preview?.remove(); + this._previewRef?.destroy(); + this._preview = this._previewRef = null; + } + /** Destroys the placeholder element and its ViewRef. */ + _destroyPlaceholder() { + this._placeholder?.remove(); + this._placeholderRef?.destroy(); + this._placeholder = this._placeholderRef = null; + } + /** + * Clears subscriptions and stops the dragging sequence. + * @param event Browser event object that ended the sequence. + */ + _endDragSequence(event) { + // Note that here we use `isDragging` from the service, rather than from `this`. + // The difference is that the one from the service reflects whether a dragging sequence + // has been initiated, whereas the one on `this` includes whether the user has passed + // the minimum dragging threshold. + if (!this._dragDropRegistry.isDragging(this)) { + return; + } + this._removeSubscriptions(); + this._dragDropRegistry.stopDragging(this); + this._toggleNativeDragInteractions(); + if (this._handles) { + this._rootElement.style.webkitTapHighlightColor = this._rootElementTapHighlight; + } + if (!this._hasStartedDragging) { + return; + } + this.released.next({ + source: this, + event + }); + if (this._dropContainer) { + // Stop scrolling immediately, instead of waiting for the animation to finish. + this._dropContainer._stopScrolling(); + this._animatePreviewToPlaceholder().then(() => { + this._cleanupDragArtifacts(event); + this._cleanupCachedDimensions(); + this._dragDropRegistry.stopDragging(this); + }); + } else { + // Convert the active transform into a passive one. This means that next time + // the user starts dragging the item, its position will be calculated relatively + // to the new passive transform. + this._passiveTransform.x = this._activeTransform.x; + const pointerPosition = this._getPointerPositionOnPage(event); + this._passiveTransform.y = this._activeTransform.y; + this._ngZone.run(() => { + this.ended.next({ + source: this, + distance: this._getDragDistance(pointerPosition), + dropPoint: pointerPosition, + event + }); + }); + this._cleanupCachedDimensions(); + this._dragDropRegistry.stopDragging(this); + } + } + /** Starts the dragging sequence. */ + _startDragSequence(event) { + if (isTouchEvent(event)) { + this._lastTouchEventTime = Date.now(); + } + this._toggleNativeDragInteractions(); + const dropContainer = this._dropContainer; + if (dropContainer) { + const element = this._rootElement; + const parent = element.parentNode; + const placeholder = this._placeholder = this._createPlaceholderElement(); + const anchor = this._anchor = this._anchor || this._document.createComment(''); + // Needs to happen before the root element is moved. + const shadowRoot = this._getShadowRoot(); + // Insert an anchor node so that we can restore the element's position in the DOM. + parent.insertBefore(anchor, element); + // There's no risk of transforms stacking when inside a drop container so + // we can keep the initial transform up to date any time dragging starts. + this._initialTransform = element.style.transform || ''; + // Create the preview after the initial transform has + // been cached, because it can be affected by the transform. + this._preview = this._createPreviewElement(); + // We move the element out at the end of the body and we make it hidden, because keeping it in + // place will throw off the consumer's `:last-child` selectors. We can't remove the element + // from the DOM completely, because iOS will stop firing all subsequent events in the chain. + toggleVisibility(element, false, dragImportantProperties); + this._document.body.appendChild(parent.replaceChild(placeholder, element)); + this._getPreviewInsertionPoint(parent, shadowRoot).appendChild(this._preview); + this.started.next({ + source: this, + event + }); // Emit before notifying the container. + dropContainer.start(); + this._initialContainer = dropContainer; + this._initialIndex = dropContainer.getItemIndex(this); + } else { + this.started.next({ + source: this, + event + }); + this._initialContainer = this._initialIndex = undefined; + } + // Important to run after we've called `start` on the parent container + // so that it has had time to resolve its scrollable parents. + this._parentPositions.cache(dropContainer ? dropContainer.getScrollableParents() : []); + } + /** + * Sets up the different variables and subscriptions + * that will be necessary for the dragging sequence. + * @param referenceElement Element that started the drag sequence. + * @param event Browser event object that started the sequence. + */ + _initializeDragSequence(referenceElement, event) { + // Stop propagation if the item is inside another + // draggable so we don't start multiple drag sequences. + if (this._parentDragRef) { + event.stopPropagation(); + } + const isDragging = this.isDragging(); + const isTouchSequence = isTouchEvent(event); + const isAuxiliaryMouseButton = !isTouchSequence && event.button !== 0; + const rootElement = this._rootElement; + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event); + const isSyntheticEvent = !isTouchSequence && this._lastTouchEventTime && this._lastTouchEventTime + MOUSE_EVENT_IGNORE_TIME > Date.now(); + const isFakeEvent = isTouchSequence ? (0,_angular_cdk_a11y__WEBPACK_IMPORTED_MODULE_4__.isFakeTouchstartFromScreenReader)(event) : (0,_angular_cdk_a11y__WEBPACK_IMPORTED_MODULE_4__.isFakeMousedownFromScreenReader)(event); + // If the event started from an element with the native HTML drag&drop, it'll interfere + // with our own dragging (e.g. `img` tags do it by default). Prevent the default action + // to stop it from happening. Note that preventing on `dragstart` also seems to work, but + // it's flaky and it fails if the user drags it away quickly. Also note that we only want + // to do this for `mousedown` since doing the same for `touchstart` will stop any `click` + // events from firing on touch devices. + if (target && target.draggable && event.type === 'mousedown') { + event.preventDefault(); + } + // Abort if the user is already dragging or is using a mouse button other than the primary one. + if (isDragging || isAuxiliaryMouseButton || isSyntheticEvent || isFakeEvent) { + return; + } + // If we've got handles, we need to disable the tap highlight on the entire root element, + // otherwise iOS will still add it, even though all the drag interactions on the handle + // are disabled. + if (this._handles.length) { + const rootStyles = rootElement.style; + this._rootElementTapHighlight = rootStyles.webkitTapHighlightColor || ''; + rootStyles.webkitTapHighlightColor = 'transparent'; + } + this._hasStartedDragging = this._hasMoved = false; + // Avoid multiple subscriptions and memory leaks when multi touch + // (isDragging check above isn't enough because of possible temporal and/or dimensional delays) + this._removeSubscriptions(); + this._initialClientRect = this._rootElement.getBoundingClientRect(); + this._pointerMoveSubscription = this._dragDropRegistry.pointerMove.subscribe(this._pointerMove); + this._pointerUpSubscription = this._dragDropRegistry.pointerUp.subscribe(this._pointerUp); + this._scrollSubscription = this._dragDropRegistry.scrolled(this._getShadowRoot()).subscribe(scrollEvent => this._updateOnScroll(scrollEvent)); + if (this._boundaryElement) { + this._boundaryRect = getMutableClientRect(this._boundaryElement); + } + // If we have a custom preview we can't know ahead of time how large it'll be so we position + // it next to the cursor. The exception is when the consumer has opted into making the preview + // the same size as the root element, in which case we do know the size. + const previewTemplate = this._previewTemplate; + this._pickupPositionInElement = previewTemplate && previewTemplate.template && !previewTemplate.matchSize ? { + x: 0, + y: 0 + } : this._getPointerPositionInElement(this._initialClientRect, referenceElement, event); + const pointerPosition = this._pickupPositionOnPage = this._lastKnownPointerPosition = this._getPointerPositionOnPage(event); + this._pointerDirectionDelta = { + x: 0, + y: 0 + }; + this._pointerPositionAtLastDirectionChange = { + x: pointerPosition.x, + y: pointerPosition.y + }; + this._dragStartTime = Date.now(); + this._dragDropRegistry.startDragging(this, event); + } + /** Cleans up the DOM artifacts that were added to facilitate the element being dragged. */ + _cleanupDragArtifacts(event) { + // Restore the element's visibility and insert it at its old position in the DOM. + // It's important that we maintain the position, because moving the element around in the DOM + // can throw off `NgFor` which does smart diffing and re-creates elements only when necessary, + // while moving the existing elements in all other cases. + toggleVisibility(this._rootElement, true, dragImportantProperties); + this._anchor.parentNode.replaceChild(this._rootElement, this._anchor); + this._destroyPreview(); + this._destroyPlaceholder(); + this._initialClientRect = this._boundaryRect = this._previewRect = this._initialTransform = undefined; + // Re-enter the NgZone since we bound `document` events on the outside. + this._ngZone.run(() => { + const container = this._dropContainer; + const currentIndex = container.getItemIndex(this); + const pointerPosition = this._getPointerPositionOnPage(event); + const distance = this._getDragDistance(pointerPosition); + const isPointerOverContainer = container._isOverContainer(pointerPosition.x, pointerPosition.y); + this.ended.next({ + source: this, + distance, + dropPoint: pointerPosition, + event + }); + this.dropped.next({ + item: this, + currentIndex, + previousIndex: this._initialIndex, + container: container, + previousContainer: this._initialContainer, + isPointerOverContainer, + distance, + dropPoint: pointerPosition, + event + }); + container.drop(this, currentIndex, this._initialIndex, this._initialContainer, isPointerOverContainer, distance, pointerPosition, event); + this._dropContainer = this._initialContainer; + }); + } + /** + * Updates the item's position in its drop container, or moves it + * into a new one, depending on its current drag position. + */ + _updateActiveDropContainer({ + x, + y + }, { + x: rawX, + y: rawY + }) { + // Drop container that draggable has been moved into. + let newContainer = this._initialContainer._getSiblingContainerFromPosition(this, x, y); + // If we couldn't find a new container to move the item into, and the item has left its + // initial container, check whether the it's over the initial container. This handles the + // case where two containers are connected one way and the user tries to undo dragging an + // item into a new container. + if (!newContainer && this._dropContainer !== this._initialContainer && this._initialContainer._isOverContainer(x, y)) { + newContainer = this._initialContainer; + } + if (newContainer && newContainer !== this._dropContainer) { + this._ngZone.run(() => { + // Notify the old container that the item has left. + this.exited.next({ + item: this, + container: this._dropContainer + }); + this._dropContainer.exit(this); + // Notify the new container that the item has entered. + this._dropContainer = newContainer; + this._dropContainer.enter(this, x, y, newContainer === this._initialContainer && + // If we're re-entering the initial container and sorting is disabled, + // put item the into its starting index to begin with. + newContainer.sortingDisabled ? this._initialIndex : undefined); + this.entered.next({ + item: this, + container: newContainer, + currentIndex: newContainer.getItemIndex(this) + }); + }); + } + // Dragging may have been interrupted as a result of the events above. + if (this.isDragging()) { + this._dropContainer._startScrollingIfNecessary(rawX, rawY); + this._dropContainer._sortItem(this, x, y, this._pointerDirectionDelta); + if (this.constrainPosition) { + this._applyPreviewTransform(x, y); + } else { + this._applyPreviewTransform(x - this._pickupPositionInElement.x, y - this._pickupPositionInElement.y); + } + } + } + /** + * Creates the element that will be rendered next to the user's pointer + * and will be used as a preview of the element that is being dragged. + */ + _createPreviewElement() { + const previewConfig = this._previewTemplate; + const previewClass = this.previewClass; + const previewTemplate = previewConfig ? previewConfig.template : null; + let preview; + if (previewTemplate && previewConfig) { + // Measure the element before we've inserted the preview + // since the insertion could throw off the measurement. + const rootRect = previewConfig.matchSize ? this._initialClientRect : null; + const viewRef = previewConfig.viewContainer.createEmbeddedView(previewTemplate, previewConfig.context); + viewRef.detectChanges(); + preview = getRootNode(viewRef, this._document); + this._previewRef = viewRef; + if (previewConfig.matchSize) { + matchElementSize(preview, rootRect); + } else { + preview.style.transform = getTransform(this._pickupPositionOnPage.x, this._pickupPositionOnPage.y); + } + } else { + preview = deepCloneNode(this._rootElement); + matchElementSize(preview, this._initialClientRect); + if (this._initialTransform) { + preview.style.transform = this._initialTransform; + } + } + extendStyles(preview.style, { + // It's important that we disable the pointer events on the preview, because + // it can throw off the `document.elementFromPoint` calls in the `CdkDropList`. + 'pointer-events': 'none', + // We have to reset the margin, because it can throw off positioning relative to the viewport. + 'margin': '0', + 'position': 'fixed', + 'top': '0', + 'left': '0', + 'z-index': `${this._config.zIndex || 1000}` + }, dragImportantProperties); + toggleNativeDragInteractions(preview, false); + preview.classList.add('cdk-drag-preview'); + preview.setAttribute('dir', this._direction); + if (previewClass) { + if (Array.isArray(previewClass)) { + previewClass.forEach(className => preview.classList.add(className)); + } else { + preview.classList.add(previewClass); + } + } + return preview; + } + /** + * Animates the preview element from its current position to the location of the drop placeholder. + * @returns Promise that resolves when the animation completes. + */ + _animatePreviewToPlaceholder() { + // If the user hasn't moved yet, the transitionend event won't fire. + if (!this._hasMoved) { + return Promise.resolve(); + } + const placeholderRect = this._placeholder.getBoundingClientRect(); + // Apply the class that adds a transition to the preview. + this._preview.classList.add('cdk-drag-animating'); + // Move the preview to the placeholder position. + this._applyPreviewTransform(placeholderRect.left, placeholderRect.top); + // If the element doesn't have a `transition`, the `transitionend` event won't fire. Since + // we need to trigger a style recalculation in order for the `cdk-drag-animating` class to + // apply its style, we take advantage of the available info to figure out whether we need to + // bind the event in the first place. + const duration = getTransformTransitionDurationInMs(this._preview); + if (duration === 0) { + return Promise.resolve(); + } + return this._ngZone.runOutsideAngular(() => { + return new Promise(resolve => { + const handler = event => { + if (!event || (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event) === this._preview && event.propertyName === 'transform') { + this._preview?.removeEventListener('transitionend', handler); + resolve(); + clearTimeout(timeout); + } + }; + // If a transition is short enough, the browser might not fire the `transitionend` event. + // Since we know how long it's supposed to take, add a timeout with a 50% buffer that'll + // fire if the transition hasn't completed when it was supposed to. + const timeout = setTimeout(handler, duration * 1.5); + this._preview.addEventListener('transitionend', handler); + }); + }); + } + /** Creates an element that will be shown instead of the current element while dragging. */ + _createPlaceholderElement() { + const placeholderConfig = this._placeholderTemplate; + const placeholderTemplate = placeholderConfig ? placeholderConfig.template : null; + let placeholder; + if (placeholderTemplate) { + this._placeholderRef = placeholderConfig.viewContainer.createEmbeddedView(placeholderTemplate, placeholderConfig.context); + this._placeholderRef.detectChanges(); + placeholder = getRootNode(this._placeholderRef, this._document); + } else { + placeholder = deepCloneNode(this._rootElement); + } + // Stop pointer events on the preview so the user can't + // interact with it while the preview is animating. + placeholder.style.pointerEvents = 'none'; + placeholder.classList.add('cdk-drag-placeholder'); + return placeholder; + } + /** + * Figures out the coordinates at which an element was picked up. + * @param referenceElement Element that initiated the dragging. + * @param event Event that initiated the dragging. + */ + _getPointerPositionInElement(elementRect, referenceElement, event) { + const handleElement = referenceElement === this._rootElement ? null : referenceElement; + const referenceRect = handleElement ? handleElement.getBoundingClientRect() : elementRect; + const point = isTouchEvent(event) ? event.targetTouches[0] : event; + const scrollPosition = this._getViewportScrollPosition(); + const x = point.pageX - referenceRect.left - scrollPosition.left; + const y = point.pageY - referenceRect.top - scrollPosition.top; + return { + x: referenceRect.left - elementRect.left + x, + y: referenceRect.top - elementRect.top + y + }; + } + /** Determines the point of the page that was touched by the user. */ + _getPointerPositionOnPage(event) { + const scrollPosition = this._getViewportScrollPosition(); + const point = isTouchEvent(event) ? + // `touches` will be empty for start/end events so we have to fall back to `changedTouches`. + // Also note that on real devices we're guaranteed for either `touches` or `changedTouches` + // to have a value, but Firefox in device emulation mode has a bug where both can be empty + // for `touchstart` and `touchend` so we fall back to a dummy object in order to avoid + // throwing an error. The value returned here will be incorrect, but since this only + // breaks inside a developer tool and the value is only used for secondary information, + // we can get away with it. See https://bugzilla.mozilla.org/show_bug.cgi?id=1615824. + event.touches[0] || event.changedTouches[0] || { + pageX: 0, + pageY: 0 + } : event; + const x = point.pageX - scrollPosition.left; + const y = point.pageY - scrollPosition.top; + // if dragging SVG element, try to convert from the screen coordinate system to the SVG + // coordinate system + if (this._ownerSVGElement) { + const svgMatrix = this._ownerSVGElement.getScreenCTM(); + if (svgMatrix) { + const svgPoint = this._ownerSVGElement.createSVGPoint(); + svgPoint.x = x; + svgPoint.y = y; + return svgPoint.matrixTransform(svgMatrix.inverse()); + } + } + return { + x, + y + }; + } + /** Gets the pointer position on the page, accounting for any position constraints. */ + _getConstrainedPointerPosition(point) { + const dropContainerLock = this._dropContainer ? this._dropContainer.lockAxis : null; + let { + x, + y + } = this.constrainPosition ? this.constrainPosition(point, this, this._initialClientRect, this._pickupPositionInElement) : point; + if (this.lockAxis === 'x' || dropContainerLock === 'x') { + y = this._pickupPositionOnPage.y - (this.constrainPosition ? this._pickupPositionInElement.y : 0); + } else if (this.lockAxis === 'y' || dropContainerLock === 'y') { + x = this._pickupPositionOnPage.x - (this.constrainPosition ? this._pickupPositionInElement.x : 0); + } + if (this._boundaryRect) { + // If not using a custom constrain we need to account for the pickup position in the element + // otherwise we do not need to do this, as it has already been accounted for + const { + x: pickupX, + y: pickupY + } = !this.constrainPosition ? this._pickupPositionInElement : { + x: 0, + y: 0 + }; + const boundaryRect = this._boundaryRect; + const { + width: previewWidth, + height: previewHeight + } = this._getPreviewRect(); + const minY = boundaryRect.top + pickupY; + const maxY = boundaryRect.bottom - (previewHeight - pickupY); + const minX = boundaryRect.left + pickupX; + const maxX = boundaryRect.right - (previewWidth - pickupX); + x = clamp$1(x, minX, maxX); + y = clamp$1(y, minY, maxY); + } + return { + x, + y + }; + } + /** Updates the current drag delta, based on the user's current pointer position on the page. */ + _updatePointerDirectionDelta(pointerPositionOnPage) { + const { + x, + y + } = pointerPositionOnPage; + const delta = this._pointerDirectionDelta; + const positionSinceLastChange = this._pointerPositionAtLastDirectionChange; + // Amount of pixels the user has dragged since the last time the direction changed. + const changeX = Math.abs(x - positionSinceLastChange.x); + const changeY = Math.abs(y - positionSinceLastChange.y); + // Because we handle pointer events on a per-pixel basis, we don't want the delta + // to change for every pixel, otherwise anything that depends on it can look erratic. + // To make the delta more consistent, we track how much the user has moved since the last + // delta change and we only update it after it has reached a certain threshold. + if (changeX > this._config.pointerDirectionChangeThreshold) { + delta.x = x > positionSinceLastChange.x ? 1 : -1; + positionSinceLastChange.x = x; + } + if (changeY > this._config.pointerDirectionChangeThreshold) { + delta.y = y > positionSinceLastChange.y ? 1 : -1; + positionSinceLastChange.y = y; + } + return delta; + } + /** Toggles the native drag interactions, based on how many handles are registered. */ + _toggleNativeDragInteractions() { + if (!this._rootElement || !this._handles) { + return; + } + const shouldEnable = this._handles.length > 0 || !this.isDragging(); + if (shouldEnable !== this._nativeInteractionsEnabled) { + this._nativeInteractionsEnabled = shouldEnable; + toggleNativeDragInteractions(this._rootElement, shouldEnable); + } + } + /** Removes the manually-added event listeners from the root element. */ + _removeRootElementListeners(element) { + element.removeEventListener('mousedown', this._pointerDown, activeEventListenerOptions); + element.removeEventListener('touchstart', this._pointerDown, passiveEventListenerOptions); + element.removeEventListener('dragstart', this._nativeDragStart, activeEventListenerOptions); + } + /** + * Applies a `transform` to the root element, taking into account any existing transforms on it. + * @param x New transform value along the X axis. + * @param y New transform value along the Y axis. + */ + _applyRootElementTransform(x, y) { + const transform = getTransform(x, y); + const styles = this._rootElement.style; + // Cache the previous transform amount only after the first drag sequence, because + // we don't want our own transforms to stack on top of each other. + // Should be excluded none because none + translate3d(x, y, x) is invalid css + if (this._initialTransform == null) { + this._initialTransform = styles.transform && styles.transform != 'none' ? styles.transform : ''; + } + // Preserve the previous `transform` value, if there was one. Note that we apply our own + // transform before the user's, because things like rotation can affect which direction + // the element will be translated towards. + styles.transform = combineTransforms(transform, this._initialTransform); + } + /** + * Applies a `transform` to the preview, taking into account any existing transforms on it. + * @param x New transform value along the X axis. + * @param y New transform value along the Y axis. + */ + _applyPreviewTransform(x, y) { + // Only apply the initial transform if the preview is a clone of the original element, otherwise + // it could be completely different and the transform might not make sense anymore. + const initialTransform = this._previewTemplate?.template ? undefined : this._initialTransform; + const transform = getTransform(x, y); + this._preview.style.transform = combineTransforms(transform, initialTransform); + } + /** + * Gets the distance that the user has dragged during the current drag sequence. + * @param currentPosition Current position of the user's pointer. + */ + _getDragDistance(currentPosition) { + const pickupPosition = this._pickupPositionOnPage; + if (pickupPosition) { + return { + x: currentPosition.x - pickupPosition.x, + y: currentPosition.y - pickupPosition.y + }; + } + return { + x: 0, + y: 0 + }; + } + /** Cleans up any cached element dimensions that we don't need after dragging has stopped. */ + _cleanupCachedDimensions() { + this._boundaryRect = this._previewRect = undefined; + this._parentPositions.clear(); + } + /** + * Checks whether the element is still inside its boundary after the viewport has been resized. + * If not, the position is adjusted so that the element fits again. + */ + _containInsideBoundaryOnResize() { + let { + x, + y + } = this._passiveTransform; + if (x === 0 && y === 0 || this.isDragging() || !this._boundaryElement) { + return; + } + // Note: don't use `_clientRectAtStart` here, because we want the latest position. + const elementRect = this._rootElement.getBoundingClientRect(); + const boundaryRect = this._boundaryElement.getBoundingClientRect(); + // It's possible that the element got hidden away after dragging (e.g. by switching to a + // different tab). Don't do anything in this case so we don't clear the user's position. + if (boundaryRect.width === 0 && boundaryRect.height === 0 || elementRect.width === 0 && elementRect.height === 0) { + return; + } + const leftOverflow = boundaryRect.left - elementRect.left; + const rightOverflow = elementRect.right - boundaryRect.right; + const topOverflow = boundaryRect.top - elementRect.top; + const bottomOverflow = elementRect.bottom - boundaryRect.bottom; + // If the element has become wider than the boundary, we can't + // do much to make it fit so we just anchor it to the left. + if (boundaryRect.width > elementRect.width) { + if (leftOverflow > 0) { + x += leftOverflow; + } + if (rightOverflow > 0) { + x -= rightOverflow; + } + } else { + x = 0; + } + // If the element has become taller than the boundary, we can't + // do much to make it fit so we just anchor it to the top. + if (boundaryRect.height > elementRect.height) { + if (topOverflow > 0) { + y += topOverflow; + } + if (bottomOverflow > 0) { + y -= bottomOverflow; + } + } else { + y = 0; + } + if (x !== this._passiveTransform.x || y !== this._passiveTransform.y) { + this.setFreeDragPosition({ + y, + x + }); + } + } + /** Gets the drag start delay, based on the event type. */ + _getDragStartDelay(event) { + const value = this.dragStartDelay; + if (typeof value === 'number') { + return value; + } else if (isTouchEvent(event)) { + return value.touch; + } + return value ? value.mouse : 0; + } + /** Updates the internal state of the draggable element when scrolling has occurred. */ + _updateOnScroll(event) { + const scrollDifference = this._parentPositions.handleScroll(event); + if (scrollDifference) { + const target = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getEventTarget)(event); + // ClientRect dimensions are based on the scroll position of the page and its parent + // node so we have to update the cached boundary ClientRect if the user has scrolled. + if (this._boundaryRect && target !== this._boundaryElement && target.contains(this._boundaryElement)) { + adjustClientRect(this._boundaryRect, scrollDifference.top, scrollDifference.left); + } + this._pickupPositionOnPage.x += scrollDifference.left; + this._pickupPositionOnPage.y += scrollDifference.top; + // If we're in free drag mode, we have to update the active transform, because + // it isn't relative to the viewport like the preview inside a drop list. + if (!this._dropContainer) { + this._activeTransform.x -= scrollDifference.left; + this._activeTransform.y -= scrollDifference.top; + this._applyRootElementTransform(this._activeTransform.x, this._activeTransform.y); + } + } + } + /** Gets the scroll position of the viewport. */ + _getViewportScrollPosition() { + return this._parentPositions.positions.get(this._document)?.scrollPosition || this._parentPositions.getViewportScrollPosition(); + } + /** + * Lazily resolves and returns the shadow root of the element. We do this in a function, rather + * than saving it in property directly on init, because we want to resolve it as late as possible + * in order to ensure that the element has been moved into the shadow DOM. Doing it inside the + * constructor might be too early if the element is inside of something like `ngFor` or `ngIf`. + */ + _getShadowRoot() { + if (this._cachedShadowRoot === undefined) { + this._cachedShadowRoot = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getShadowRoot)(this._rootElement); + } + return this._cachedShadowRoot; + } + /** Gets the element into which the drag preview should be inserted. */ + _getPreviewInsertionPoint(initialParent, shadowRoot) { + const previewContainer = this._previewContainer || 'global'; + if (previewContainer === 'parent') { + return initialParent; + } + if (previewContainer === 'global') { + const documentRef = this._document; + // We can't use the body if the user is in fullscreen mode, + // because the preview will render under the fullscreen element. + // TODO(crisbeto): dedupe this with the `FullscreenOverlayContainer` eventually. + return shadowRoot || documentRef.fullscreenElement || documentRef.webkitFullscreenElement || documentRef.mozFullScreenElement || documentRef.msFullscreenElement || documentRef.body; + } + return (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(previewContainer); + } + /** Lazily resolves and returns the dimensions of the preview. */ + _getPreviewRect() { + // Cache the preview element rect if we haven't cached it already or if + // we cached it too early before the element dimensions were computed. + if (!this._previewRect || !this._previewRect.width && !this._previewRect.height) { + this._previewRect = this._preview ? this._preview.getBoundingClientRect() : this._initialClientRect; + } + return this._previewRect; + } + /** Gets a handle that is the target of an event. */ + _getTargetHandle(event) { + return this._handles.find(handle => { + return event.target && (event.target === handle || handle.contains(event.target)); + }); + } +} +/** + * Gets a 3d `transform` that can be applied to an element. + * @param x Desired position of the element along the X axis. + * @param y Desired position of the element along the Y axis. + */ +function getTransform(x, y) { + // Round the transforms since some browsers will + // blur the elements for sub-pixel transforms. + return `translate3d(${Math.round(x)}px, ${Math.round(y)}px, 0)`; +} +/** Clamps a value between a minimum and a maximum. */ +function clamp$1(value, min, max) { + return Math.max(min, Math.min(max, value)); +} +/** Determines whether an event is a touch event. */ +function isTouchEvent(event) { + // This function is called for every pixel that the user has dragged so we need it to be + // as fast as possible. Since we only bind mouse events and touch events, we can assume + // that if the event's name starts with `t`, it's a touch event. + return event.type[0] === 't'; +} +/** + * Gets the root HTML element of an embedded view. + * If the root is not an HTML element it gets wrapped in one. + */ +function getRootNode(viewRef, _document) { + const rootNodes = viewRef.rootNodes; + if (rootNodes.length === 1 && rootNodes[0].nodeType === _document.ELEMENT_NODE) { + return rootNodes[0]; + } + const wrapper = _document.createElement('div'); + rootNodes.forEach(node => wrapper.appendChild(node)); + return wrapper; +} +/** + * Matches the target element's size to the source's size. + * @param target Element that needs to be resized. + * @param sourceRect Dimensions of the source element. + */ +function matchElementSize(target, sourceRect) { + target.style.width = `${sourceRect.width}px`; + target.style.height = `${sourceRect.height}px`; + target.style.transform = getTransform(sourceRect.left, sourceRect.top); +} + +/** + * Moves an item one index in an array to another. + * @param array Array in which to move the item. + * @param fromIndex Starting index of the item. + * @param toIndex Index to which the item should be moved. + */ +function moveItemInArray(array, fromIndex, toIndex) { + const from = clamp(fromIndex, array.length - 1); + const to = clamp(toIndex, array.length - 1); + if (from === to) { + return; + } + const target = array[from]; + const delta = to < from ? -1 : 1; + for (let i = from; i !== to; i += delta) { + array[i] = array[i + delta]; + } + array[to] = target; +} +/** + * Moves an item from one array to another. + * @param currentArray Array from which to transfer the item. + * @param targetArray Array into which to put the item. + * @param currentIndex Index of the item in its current array. + * @param targetIndex Index at which to insert the item. + */ +function transferArrayItem(currentArray, targetArray, currentIndex, targetIndex) { + const from = clamp(currentIndex, currentArray.length - 1); + const to = clamp(targetIndex, targetArray.length); + if (currentArray.length) { + targetArray.splice(to, 0, currentArray.splice(from, 1)[0]); + } +} +/** + * Copies an item from one array to another, leaving it in its + * original position in current array. + * @param currentArray Array from which to copy the item. + * @param targetArray Array into which is copy the item. + * @param currentIndex Index of the item in its current array. + * @param targetIndex Index at which to insert the item. + * + */ +function copyArrayItem(currentArray, targetArray, currentIndex, targetIndex) { + const to = clamp(targetIndex, targetArray.length); + if (currentArray.length) { + targetArray.splice(to, 0, currentArray[currentIndex]); + } +} +/** Clamps a number between zero and a maximum. */ +function clamp(value, max) { + return Math.max(0, Math.min(max, value)); +} + +/** + * Strategy that only supports sorting along a single axis. + * Items are reordered using CSS transforms which allows for sorting to be animated. + * @docs-private + */ +class SingleAxisSortStrategy { + constructor(_element, _dragDropRegistry) { + this._element = _element; + this._dragDropRegistry = _dragDropRegistry; + /** Cache of the dimensions of all the items inside the container. */ + this._itemPositions = []; + /** Direction in which the list is oriented. */ + this.orientation = 'vertical'; + /** + * Keeps track of the item that was last swapped with the dragged item, as well as what direction + * the pointer was moving in when the swap occurred and whether the user's pointer continued to + * overlap with the swapped item after the swapping occurred. + */ + this._previousSwap = { + drag: null, + delta: 0, + overlaps: false + }; + } + /** + * To be called when the drag sequence starts. + * @param items Items that are currently in the list. + */ + start(items) { + this.withItems(items); + } + /** + * To be called when an item is being sorted. + * @param item Item to be sorted. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param pointerDelta Direction in which the pointer is moving along each axis. + */ + sort(item, pointerX, pointerY, pointerDelta) { + const siblings = this._itemPositions; + const newIndex = this._getItemIndexFromPointerPosition(item, pointerX, pointerY, pointerDelta); + if (newIndex === -1 && siblings.length > 0) { + return null; + } + const isHorizontal = this.orientation === 'horizontal'; + const currentIndex = siblings.findIndex(currentItem => currentItem.drag === item); + const siblingAtNewPosition = siblings[newIndex]; + const currentPosition = siblings[currentIndex].clientRect; + const newPosition = siblingAtNewPosition.clientRect; + const delta = currentIndex > newIndex ? 1 : -1; + // How many pixels the item's placeholder should be offset. + const itemOffset = this._getItemOffsetPx(currentPosition, newPosition, delta); + // How many pixels all the other items should be offset. + const siblingOffset = this._getSiblingOffsetPx(currentIndex, siblings, delta); + // Save the previous order of the items before moving the item to its new index. + // We use this to check whether an item has been moved as a result of the sorting. + const oldOrder = siblings.slice(); + // Shuffle the array in place. + moveItemInArray(siblings, currentIndex, newIndex); + siblings.forEach((sibling, index) => { + // Don't do anything if the position hasn't changed. + if (oldOrder[index] === sibling) { + return; + } + const isDraggedItem = sibling.drag === item; + const offset = isDraggedItem ? itemOffset : siblingOffset; + const elementToOffset = isDraggedItem ? item.getPlaceholderElement() : sibling.drag.getRootElement(); + // Update the offset to reflect the new position. + sibling.offset += offset; + // Since we're moving the items with a `transform`, we need to adjust their cached + // client rects to reflect their new position, as well as swap their positions in the cache. + // Note that we shouldn't use `getBoundingClientRect` here to update the cache, because the + // elements may be mid-animation which will give us a wrong result. + if (isHorizontal) { + // Round the transforms since some browsers will + // blur the elements, for sub-pixel transforms. + elementToOffset.style.transform = combineTransforms(`translate3d(${Math.round(sibling.offset)}px, 0, 0)`, sibling.initialTransform); + adjustClientRect(sibling.clientRect, 0, offset); + } else { + elementToOffset.style.transform = combineTransforms(`translate3d(0, ${Math.round(sibling.offset)}px, 0)`, sibling.initialTransform); + adjustClientRect(sibling.clientRect, offset, 0); + } + }); + // Note that it's important that we do this after the client rects have been adjusted. + this._previousSwap.overlaps = isInsideClientRect(newPosition, pointerX, pointerY); + this._previousSwap.drag = siblingAtNewPosition.drag; + this._previousSwap.delta = isHorizontal ? pointerDelta.x : pointerDelta.y; + return { + previousIndex: currentIndex, + currentIndex: newIndex + }; + } + /** + * Called when an item is being moved into the container. + * @param item Item that was moved into the container. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param index Index at which the item entered. If omitted, the container will try to figure it + * out automatically. + */ + enter(item, pointerX, pointerY, index) { + const newIndex = index == null || index < 0 ? + // We use the coordinates of where the item entered the drop + // zone to figure out at which index it should be inserted. + this._getItemIndexFromPointerPosition(item, pointerX, pointerY) : index; + const activeDraggables = this._activeDraggables; + const currentIndex = activeDraggables.indexOf(item); + const placeholder = item.getPlaceholderElement(); + let newPositionReference = activeDraggables[newIndex]; + // If the item at the new position is the same as the item that is being dragged, + // it means that we're trying to restore the item to its initial position. In this + // case we should use the next item from the list as the reference. + if (newPositionReference === item) { + newPositionReference = activeDraggables[newIndex + 1]; + } + // If we didn't find a new position reference, it means that either the item didn't start off + // in this container, or that the item requested to be inserted at the end of the list. + if (!newPositionReference && (newIndex == null || newIndex === -1 || newIndex < activeDraggables.length - 1) && this._shouldEnterAsFirstChild(pointerX, pointerY)) { + newPositionReference = activeDraggables[0]; + } + // Since the item may be in the `activeDraggables` already (e.g. if the user dragged it + // into another container and back again), we have to ensure that it isn't duplicated. + if (currentIndex > -1) { + activeDraggables.splice(currentIndex, 1); + } + // Don't use items that are being dragged as a reference, because + // their element has been moved down to the bottom of the body. + if (newPositionReference && !this._dragDropRegistry.isDragging(newPositionReference)) { + const element = newPositionReference.getRootElement(); + element.parentElement.insertBefore(placeholder, element); + activeDraggables.splice(newIndex, 0, item); + } else { + (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this._element).appendChild(placeholder); + activeDraggables.push(item); + } + // The transform needs to be cleared so it doesn't throw off the measurements. + placeholder.style.transform = ''; + // Note that usually `start` is called together with `enter` when an item goes into a new + // container. This will cache item positions, but we need to refresh them since the amount + // of items has changed. + this._cacheItemPositions(); + } + /** Sets the items that are currently part of the list. */ + withItems(items) { + this._activeDraggables = items.slice(); + this._cacheItemPositions(); + } + /** Assigns a sort predicate to the strategy. */ + withSortPredicate(predicate) { + this._sortPredicate = predicate; + } + /** Resets the strategy to its initial state before dragging was started. */ + reset() { + // TODO(crisbeto): may have to wait for the animations to finish. + this._activeDraggables.forEach(item => { + const rootElement = item.getRootElement(); + if (rootElement) { + const initialTransform = this._itemPositions.find(p => p.drag === item)?.initialTransform; + rootElement.style.transform = initialTransform || ''; + } + }); + this._itemPositions = []; + this._activeDraggables = []; + this._previousSwap.drag = null; + this._previousSwap.delta = 0; + this._previousSwap.overlaps = false; + } + /** + * Gets a snapshot of items currently in the list. + * Can include items that we dragged in from another list. + */ + getActiveItemsSnapshot() { + return this._activeDraggables; + } + /** Gets the index of a specific item. */ + getItemIndex(item) { + // Items are sorted always by top/left in the cache, however they flow differently in RTL. + // The rest of the logic still stands no matter what orientation we're in, however + // we need to invert the array when determining the index. + const items = this.orientation === 'horizontal' && this.direction === 'rtl' ? this._itemPositions.slice().reverse() : this._itemPositions; + return items.findIndex(currentItem => currentItem.drag === item); + } + /** Used to notify the strategy that the scroll position has changed. */ + updateOnScroll(topDifference, leftDifference) { + // Since we know the amount that the user has scrolled we can shift all of the + // client rectangles ourselves. This is cheaper than re-measuring everything and + // we can avoid inconsistent behavior where we might be measuring the element before + // its position has changed. + this._itemPositions.forEach(({ + clientRect + }) => { + adjustClientRect(clientRect, topDifference, leftDifference); + }); + // We need two loops for this, because we want all of the cached + // positions to be up-to-date before we re-sort the item. + this._itemPositions.forEach(({ + drag + }) => { + if (this._dragDropRegistry.isDragging(drag)) { + // We need to re-sort the item manually, because the pointer move + // events won't be dispatched while the user is scrolling. + drag._sortFromLastPointerPosition(); + } + }); + } + /** Refreshes the position cache of the items and sibling containers. */ + _cacheItemPositions() { + const isHorizontal = this.orientation === 'horizontal'; + this._itemPositions = this._activeDraggables.map(drag => { + const elementToMeasure = drag.getVisibleElement(); + return { + drag, + offset: 0, + initialTransform: elementToMeasure.style.transform || '', + clientRect: getMutableClientRect(elementToMeasure) + }; + }).sort((a, b) => { + return isHorizontal ? a.clientRect.left - b.clientRect.left : a.clientRect.top - b.clientRect.top; + }); + } + /** + * Gets the offset in pixels by which the item that is being dragged should be moved. + * @param currentPosition Current position of the item. + * @param newPosition Position of the item where the current item should be moved. + * @param delta Direction in which the user is moving. + */ + _getItemOffsetPx(currentPosition, newPosition, delta) { + const isHorizontal = this.orientation === 'horizontal'; + let itemOffset = isHorizontal ? newPosition.left - currentPosition.left : newPosition.top - currentPosition.top; + // Account for differences in the item width/height. + if (delta === -1) { + itemOffset += isHorizontal ? newPosition.width - currentPosition.width : newPosition.height - currentPosition.height; + } + return itemOffset; + } + /** + * Gets the offset in pixels by which the items that aren't being dragged should be moved. + * @param currentIndex Index of the item currently being dragged. + * @param siblings All of the items in the list. + * @param delta Direction in which the user is moving. + */ + _getSiblingOffsetPx(currentIndex, siblings, delta) { + const isHorizontal = this.orientation === 'horizontal'; + const currentPosition = siblings[currentIndex].clientRect; + const immediateSibling = siblings[currentIndex + delta * -1]; + let siblingOffset = currentPosition[isHorizontal ? 'width' : 'height'] * delta; + if (immediateSibling) { + const start = isHorizontal ? 'left' : 'top'; + const end = isHorizontal ? 'right' : 'bottom'; + // Get the spacing between the start of the current item and the end of the one immediately + // after it in the direction in which the user is dragging, or vice versa. We add it to the + // offset in order to push the element to where it will be when it's inline and is influenced + // by the `margin` of its siblings. + if (delta === -1) { + siblingOffset -= immediateSibling.clientRect[start] - currentPosition[end]; + } else { + siblingOffset += currentPosition[start] - immediateSibling.clientRect[end]; + } + } + return siblingOffset; + } + /** + * Checks if pointer is entering in the first position + * @param pointerX Position of the user's pointer along the X axis. + * @param pointerY Position of the user's pointer along the Y axis. + */ + _shouldEnterAsFirstChild(pointerX, pointerY) { + if (!this._activeDraggables.length) { + return false; + } + const itemPositions = this._itemPositions; + const isHorizontal = this.orientation === 'horizontal'; + // `itemPositions` are sorted by position while `activeDraggables` are sorted by child index + // check if container is using some sort of "reverse" ordering (eg: flex-direction: row-reverse) + const reversed = itemPositions[0].drag !== this._activeDraggables[0]; + if (reversed) { + const lastItemRect = itemPositions[itemPositions.length - 1].clientRect; + return isHorizontal ? pointerX >= lastItemRect.right : pointerY >= lastItemRect.bottom; + } else { + const firstItemRect = itemPositions[0].clientRect; + return isHorizontal ? pointerX <= firstItemRect.left : pointerY <= firstItemRect.top; + } + } + /** + * Gets the index of an item in the drop container, based on the position of the user's pointer. + * @param item Item that is being sorted. + * @param pointerX Position of the user's pointer along the X axis. + * @param pointerY Position of the user's pointer along the Y axis. + * @param delta Direction in which the user is moving their pointer. + */ + _getItemIndexFromPointerPosition(item, pointerX, pointerY, delta) { + const isHorizontal = this.orientation === 'horizontal'; + const index = this._itemPositions.findIndex(({ + drag, + clientRect + }) => { + // Skip the item itself. + if (drag === item) { + return false; + } + if (delta) { + const direction = isHorizontal ? delta.x : delta.y; + // If the user is still hovering over the same item as last time, their cursor hasn't left + // the item after we made the swap, and they didn't change the direction in which they're + // dragging, we don't consider it a direction swap. + if (drag === this._previousSwap.drag && this._previousSwap.overlaps && direction === this._previousSwap.delta) { + return false; + } + } + return isHorizontal ? + // Round these down since most browsers report client rects with + // sub-pixel precision, whereas the pointer coordinates are rounded to pixels. + pointerX >= Math.floor(clientRect.left) && pointerX < Math.floor(clientRect.right) : pointerY >= Math.floor(clientRect.top) && pointerY < Math.floor(clientRect.bottom); + }); + return index === -1 || !this._sortPredicate(index, item) ? -1 : index; + } +} + +/** + * Proximity, as a ratio to width/height, at which a + * dragged item will affect the drop container. + */ +const DROP_PROXIMITY_THRESHOLD = 0.05; +/** + * Proximity, as a ratio to width/height at which to start auto-scrolling the drop list or the + * viewport. The value comes from trying it out manually until it feels right. + */ +const SCROLL_PROXIMITY_THRESHOLD = 0.05; +/** + * Reference to a drop list. Used to manipulate or dispose of the container. + */ +class DropListRef { + constructor(element, _dragDropRegistry, _document, _ngZone, _viewportRuler) { + this._dragDropRegistry = _dragDropRegistry; + this._ngZone = _ngZone; + this._viewportRuler = _viewportRuler; + /** Whether starting a dragging sequence from this container is disabled. */ + this.disabled = false; + /** Whether sorting items within the list is disabled. */ + this.sortingDisabled = false; + /** + * Whether auto-scrolling the view when the user + * moves their pointer close to the edges is disabled. + */ + this.autoScrollDisabled = false; + /** Number of pixels to scroll for each frame when auto-scrolling an element. */ + this.autoScrollStep = 2; + /** + * Function that is used to determine whether an item + * is allowed to be moved into a drop container. + */ + this.enterPredicate = () => true; + /** Function that is used to determine whether an item can be sorted into a particular index. */ + this.sortPredicate = () => true; + /** Emits right before dragging has started. */ + this.beforeStarted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits when the user has moved a new drag item into this container. + */ + this.entered = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits when the user removes an item from the container + * by dragging it into another container. + */ + this.exited = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user drops an item inside the container. */ + this.dropped = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits as the user is swapping items while actively dragging. */ + this.sorted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when a dragging sequence is started in a list connected to the current one. */ + this.receivingStarted = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when a dragging sequence is stopped from a list connected to the current one. */ + this.receivingStopped = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Whether an item in the list is being dragged. */ + this._isDragging = false; + /** Draggable items in the container. */ + this._draggables = []; + /** Drop lists that are connected to the current one. */ + this._siblings = []; + /** Connected siblings that currently have a dragged item. */ + this._activeSiblings = new Set(); + /** Subscription to the window being scrolled. */ + this._viewportScrollSubscription = rxjs__WEBPACK_IMPORTED_MODULE_3__.Subscription.EMPTY; + /** Vertical direction in which the list is currently scrolling. */ + this._verticalScrollDirection = 0 /* AutoScrollVerticalDirection.NONE */; + /** Horizontal direction in which the list is currently scrolling. */ + this._horizontalScrollDirection = 0 /* AutoScrollHorizontalDirection.NONE */; + /** Used to signal to the current auto-scroll sequence when to stop. */ + this._stopScrollTimers = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Shadow root of the current element. Necessary for `elementFromPoint` to resolve correctly. */ + this._cachedShadowRoot = null; + /** Starts the interval that'll auto-scroll the element. */ + this._startScrollInterval = () => { + this._stopScrolling(); + (0,rxjs__WEBPACK_IMPORTED_MODULE_5__.interval)(0, rxjs__WEBPACK_IMPORTED_MODULE_6__.animationFrameScheduler).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._stopScrollTimers)).subscribe(() => { + const node = this._scrollNode; + const scrollStep = this.autoScrollStep; + if (this._verticalScrollDirection === 1 /* AutoScrollVerticalDirection.UP */) { + node.scrollBy(0, -scrollStep); + } else if (this._verticalScrollDirection === 2 /* AutoScrollVerticalDirection.DOWN */) { + node.scrollBy(0, scrollStep); + } + if (this._horizontalScrollDirection === 1 /* AutoScrollHorizontalDirection.LEFT */) { + node.scrollBy(-scrollStep, 0); + } else if (this._horizontalScrollDirection === 2 /* AutoScrollHorizontalDirection.RIGHT */) { + node.scrollBy(scrollStep, 0); + } + }); + }; + this.element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(element); + this._document = _document; + this.withScrollableParents([this.element]); + _dragDropRegistry.registerDropContainer(this); + this._parentPositions = new ParentPositionTracker(_document); + this._sortStrategy = new SingleAxisSortStrategy(this.element, _dragDropRegistry); + this._sortStrategy.withSortPredicate((index, item) => this.sortPredicate(index, item, this)); + } + /** Removes the drop list functionality from the DOM element. */ + dispose() { + this._stopScrolling(); + this._stopScrollTimers.complete(); + this._viewportScrollSubscription.unsubscribe(); + this.beforeStarted.complete(); + this.entered.complete(); + this.exited.complete(); + this.dropped.complete(); + this.sorted.complete(); + this.receivingStarted.complete(); + this.receivingStopped.complete(); + this._activeSiblings.clear(); + this._scrollNode = null; + this._parentPositions.clear(); + this._dragDropRegistry.removeDropContainer(this); + } + /** Whether an item from this list is currently being dragged. */ + isDragging() { + return this._isDragging; + } + /** Starts dragging an item. */ + start() { + this._draggingStarted(); + this._notifyReceivingSiblings(); + } + /** + * Attempts to move an item into the container. + * @param item Item that was moved into the container. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param index Index at which the item entered. If omitted, the container will try to figure it + * out automatically. + */ + enter(item, pointerX, pointerY, index) { + this._draggingStarted(); + // If sorting is disabled, we want the item to return to its starting + // position if the user is returning it to its initial container. + if (index == null && this.sortingDisabled) { + index = this._draggables.indexOf(item); + } + this._sortStrategy.enter(item, pointerX, pointerY, index); + // Note that this usually happens inside `_draggingStarted` as well, but the dimensions + // can change when the sort strategy moves the item around inside `enter`. + this._cacheParentPositions(); + // Notify siblings at the end so that the item has been inserted into the `activeDraggables`. + this._notifyReceivingSiblings(); + this.entered.next({ + item, + container: this, + currentIndex: this.getItemIndex(item) + }); + } + /** + * Removes an item from the container after it was dragged into another container by the user. + * @param item Item that was dragged out. + */ + exit(item) { + this._reset(); + this.exited.next({ + item, + container: this + }); + } + /** + * Drops an item into this container. + * @param item Item being dropped into the container. + * @param currentIndex Index at which the item should be inserted. + * @param previousIndex Index of the item when dragging started. + * @param previousContainer Container from which the item got dragged in. + * @param isPointerOverContainer Whether the user's pointer was over the + * container when the item was dropped. + * @param distance Distance the user has dragged since the start of the dragging sequence. + * @param event Event that triggered the dropping sequence. + * + * @breaking-change 15.0.0 `previousIndex` and `event` parameters to become required. + */ + drop(item, currentIndex, previousIndex, previousContainer, isPointerOverContainer, distance, dropPoint, event = {}) { + this._reset(); + this.dropped.next({ + item, + currentIndex, + previousIndex, + container: this, + previousContainer, + isPointerOverContainer, + distance, + dropPoint, + event + }); + } + /** + * Sets the draggable items that are a part of this list. + * @param items Items that are a part of this list. + */ + withItems(items) { + const previousItems = this._draggables; + this._draggables = items; + items.forEach(item => item._withDropContainer(this)); + if (this.isDragging()) { + const draggedItems = previousItems.filter(item => item.isDragging()); + // If all of the items being dragged were removed + // from the list, abort the current drag sequence. + if (draggedItems.every(item => items.indexOf(item) === -1)) { + this._reset(); + } else { + this._sortStrategy.withItems(this._draggables); + } + } + return this; + } + /** Sets the layout direction of the drop list. */ + withDirection(direction) { + this._sortStrategy.direction = direction; + return this; + } + /** + * Sets the containers that are connected to this one. When two or more containers are + * connected, the user will be allowed to transfer items between them. + * @param connectedTo Other containers that the current containers should be connected to. + */ + connectedTo(connectedTo) { + this._siblings = connectedTo.slice(); + return this; + } + /** + * Sets the orientation of the container. + * @param orientation New orientation for the container. + */ + withOrientation(orientation) { + // TODO(crisbeto): eventually we should be constructing the new sort strategy here based on + // the new orientation. For now we can assume that it'll always be `SingleAxisSortStrategy`. + this._sortStrategy.orientation = orientation; + return this; + } + /** + * Sets which parent elements are can be scrolled while the user is dragging. + * @param elements Elements that can be scrolled. + */ + withScrollableParents(elements) { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element); + // We always allow the current element to be scrollable + // so we need to ensure that it's in the array. + this._scrollableElements = elements.indexOf(element) === -1 ? [element, ...elements] : elements.slice(); + return this; + } + /** Gets the scrollable parents that are registered with this drop container. */ + getScrollableParents() { + return this._scrollableElements; + } + /** + * Figures out the index of an item in the container. + * @param item Item whose index should be determined. + */ + getItemIndex(item) { + return this._isDragging ? this._sortStrategy.getItemIndex(item) : this._draggables.indexOf(item); + } + /** + * Whether the list is able to receive the item that + * is currently being dragged inside a connected drop list. + */ + isReceiving() { + return this._activeSiblings.size > 0; + } + /** + * Sorts an item inside the container based on its position. + * @param item Item to be sorted. + * @param pointerX Position of the item along the X axis. + * @param pointerY Position of the item along the Y axis. + * @param pointerDelta Direction in which the pointer is moving along each axis. + */ + _sortItem(item, pointerX, pointerY, pointerDelta) { + // Don't sort the item if sorting is disabled or it's out of range. + if (this.sortingDisabled || !this._clientRect || !isPointerNearClientRect(this._clientRect, DROP_PROXIMITY_THRESHOLD, pointerX, pointerY)) { + return; + } + const result = this._sortStrategy.sort(item, pointerX, pointerY, pointerDelta); + if (result) { + this.sorted.next({ + previousIndex: result.previousIndex, + currentIndex: result.currentIndex, + container: this, + item + }); + } + } + /** + * Checks whether the user's pointer is close to the edges of either the + * viewport or the drop list and starts the auto-scroll sequence. + * @param pointerX User's pointer position along the x axis. + * @param pointerY User's pointer position along the y axis. + */ + _startScrollingIfNecessary(pointerX, pointerY) { + if (this.autoScrollDisabled) { + return; + } + let scrollNode; + let verticalScrollDirection = 0 /* AutoScrollVerticalDirection.NONE */; + let horizontalScrollDirection = 0 /* AutoScrollHorizontalDirection.NONE */; + // Check whether we should start scrolling any of the parent containers. + this._parentPositions.positions.forEach((position, element) => { + // We have special handling for the `document` below. Also this would be + // nicer with a for...of loop, but it requires changing a compiler flag. + if (element === this._document || !position.clientRect || scrollNode) { + return; + } + if (isPointerNearClientRect(position.clientRect, DROP_PROXIMITY_THRESHOLD, pointerX, pointerY)) { + [verticalScrollDirection, horizontalScrollDirection] = getElementScrollDirections(element, position.clientRect, pointerX, pointerY); + if (verticalScrollDirection || horizontalScrollDirection) { + scrollNode = element; + } + } + }); + // Otherwise check if we can start scrolling the viewport. + if (!verticalScrollDirection && !horizontalScrollDirection) { + const { + width, + height + } = this._viewportRuler.getViewportSize(); + const clientRect = { + width, + height, + top: 0, + right: width, + bottom: height, + left: 0 + }; + verticalScrollDirection = getVerticalScrollDirection(clientRect, pointerY); + horizontalScrollDirection = getHorizontalScrollDirection(clientRect, pointerX); + scrollNode = window; + } + if (scrollNode && (verticalScrollDirection !== this._verticalScrollDirection || horizontalScrollDirection !== this._horizontalScrollDirection || scrollNode !== this._scrollNode)) { + this._verticalScrollDirection = verticalScrollDirection; + this._horizontalScrollDirection = horizontalScrollDirection; + this._scrollNode = scrollNode; + if ((verticalScrollDirection || horizontalScrollDirection) && scrollNode) { + this._ngZone.runOutsideAngular(this._startScrollInterval); + } else { + this._stopScrolling(); + } + } + } + /** Stops any currently-running auto-scroll sequences. */ + _stopScrolling() { + this._stopScrollTimers.next(); + } + /** Starts the dragging sequence within the list. */ + _draggingStarted() { + const styles = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element).style; + this.beforeStarted.next(); + this._isDragging = true; + // We need to disable scroll snapping while the user is dragging, because it breaks automatic + // scrolling. The browser seems to round the value based on the snapping points which means + // that we can't increment/decrement the scroll position. + this._initialScrollSnap = styles.msScrollSnapType || styles.scrollSnapType || ''; + styles.scrollSnapType = styles.msScrollSnapType = 'none'; + this._sortStrategy.start(this._draggables); + this._cacheParentPositions(); + this._viewportScrollSubscription.unsubscribe(); + this._listenToScrollEvents(); + } + /** Caches the positions of the configured scrollable parents. */ + _cacheParentPositions() { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element); + this._parentPositions.cache(this._scrollableElements); + // The list element is always in the `scrollableElements` + // so we can take advantage of the cached `ClientRect`. + this._clientRect = this._parentPositions.positions.get(element).clientRect; + } + /** Resets the container to its initial state. */ + _reset() { + this._isDragging = false; + const styles = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element).style; + styles.scrollSnapType = styles.msScrollSnapType = this._initialScrollSnap; + this._siblings.forEach(sibling => sibling._stopReceiving(this)); + this._sortStrategy.reset(); + this._stopScrolling(); + this._viewportScrollSubscription.unsubscribe(); + this._parentPositions.clear(); + } + /** + * Checks whether the user's pointer is positioned over the container. + * @param x Pointer position along the X axis. + * @param y Pointer position along the Y axis. + */ + _isOverContainer(x, y) { + return this._clientRect != null && isInsideClientRect(this._clientRect, x, y); + } + /** + * Figures out whether an item should be moved into a sibling + * drop container, based on its current position. + * @param item Drag item that is being moved. + * @param x Position of the item along the X axis. + * @param y Position of the item along the Y axis. + */ + _getSiblingContainerFromPosition(item, x, y) { + return this._siblings.find(sibling => sibling._canReceive(item, x, y)); + } + /** + * Checks whether the drop list can receive the passed-in item. + * @param item Item that is being dragged into the list. + * @param x Position of the item along the X axis. + * @param y Position of the item along the Y axis. + */ + _canReceive(item, x, y) { + if (!this._clientRect || !isInsideClientRect(this._clientRect, x, y) || !this.enterPredicate(item, this)) { + return false; + } + const elementFromPoint = this._getShadowRoot().elementFromPoint(x, y); + // If there's no element at the pointer position, then + // the client rect is probably scrolled out of the view. + if (!elementFromPoint) { + return false; + } + const nativeElement = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element); + // The `ClientRect`, that we're using to find the container over which the user is + // hovering, doesn't give us any information on whether the element has been scrolled + // out of the view or whether it's overlapping with other containers. This means that + // we could end up transferring the item into a container that's invisible or is positioned + // below another one. We use the result from `elementFromPoint` to get the top-most element + // at the pointer position and to find whether it's one of the intersecting drop containers. + return elementFromPoint === nativeElement || nativeElement.contains(elementFromPoint); + } + /** + * Called by one of the connected drop lists when a dragging sequence has started. + * @param sibling Sibling in which dragging has started. + */ + _startReceiving(sibling, items) { + const activeSiblings = this._activeSiblings; + if (!activeSiblings.has(sibling) && items.every(item => { + // Note that we have to add an exception to the `enterPredicate` for items that started off + // in this drop list. The drag ref has logic that allows an item to return to its initial + // container, if it has left the initial container and none of the connected containers + // allow it to enter. See `DragRef._updateActiveDropContainer` for more context. + return this.enterPredicate(item, this) || this._draggables.indexOf(item) > -1; + })) { + activeSiblings.add(sibling); + this._cacheParentPositions(); + this._listenToScrollEvents(); + this.receivingStarted.next({ + initiator: sibling, + receiver: this, + items + }); + } + } + /** + * Called by a connected drop list when dragging has stopped. + * @param sibling Sibling whose dragging has stopped. + */ + _stopReceiving(sibling) { + this._activeSiblings.delete(sibling); + this._viewportScrollSubscription.unsubscribe(); + this.receivingStopped.next({ + initiator: sibling, + receiver: this + }); + } + /** + * Starts listening to scroll events on the viewport. + * Used for updating the internal state of the list. + */ + _listenToScrollEvents() { + this._viewportScrollSubscription = this._dragDropRegistry.scrolled(this._getShadowRoot()).subscribe(event => { + if (this.isDragging()) { + const scrollDifference = this._parentPositions.handleScroll(event); + if (scrollDifference) { + this._sortStrategy.updateOnScroll(scrollDifference.top, scrollDifference.left); + } + } else if (this.isReceiving()) { + this._cacheParentPositions(); + } + }); + } + /** + * Lazily resolves and returns the shadow root of the element. We do this in a function, rather + * than saving it in property directly on init, because we want to resolve it as late as possible + * in order to ensure that the element has been moved into the shadow DOM. Doing it inside the + * constructor might be too early if the element is inside of something like `ngFor` or `ngIf`. + */ + _getShadowRoot() { + if (!this._cachedShadowRoot) { + const shadowRoot = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__._getShadowRoot)((0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(this.element)); + this._cachedShadowRoot = shadowRoot || this._document; + } + return this._cachedShadowRoot; + } + /** Notifies any siblings that may potentially receive the item. */ + _notifyReceivingSiblings() { + const draggedItems = this._sortStrategy.getActiveItemsSnapshot().filter(item => item.isDragging()); + this._siblings.forEach(sibling => sibling._startReceiving(this, draggedItems)); + } +} +/** + * Gets whether the vertical auto-scroll direction of a node. + * @param clientRect Dimensions of the node. + * @param pointerY Position of the user's pointer along the y axis. + */ +function getVerticalScrollDirection(clientRect, pointerY) { + const { + top, + bottom, + height + } = clientRect; + const yThreshold = height * SCROLL_PROXIMITY_THRESHOLD; + if (pointerY >= top - yThreshold && pointerY <= top + yThreshold) { + return 1 /* AutoScrollVerticalDirection.UP */; + } else if (pointerY >= bottom - yThreshold && pointerY <= bottom + yThreshold) { + return 2 /* AutoScrollVerticalDirection.DOWN */; + } + return 0 /* AutoScrollVerticalDirection.NONE */; +} +/** + * Gets whether the horizontal auto-scroll direction of a node. + * @param clientRect Dimensions of the node. + * @param pointerX Position of the user's pointer along the x axis. + */ +function getHorizontalScrollDirection(clientRect, pointerX) { + const { + left, + right, + width + } = clientRect; + const xThreshold = width * SCROLL_PROXIMITY_THRESHOLD; + if (pointerX >= left - xThreshold && pointerX <= left + xThreshold) { + return 1 /* AutoScrollHorizontalDirection.LEFT */; + } else if (pointerX >= right - xThreshold && pointerX <= right + xThreshold) { + return 2 /* AutoScrollHorizontalDirection.RIGHT */; + } + return 0 /* AutoScrollHorizontalDirection.NONE */; +} +/** + * Gets the directions in which an element node should be scrolled, + * assuming that the user's pointer is already within it scrollable region. + * @param element Element for which we should calculate the scroll direction. + * @param clientRect Bounding client rectangle of the element. + * @param pointerX Position of the user's pointer along the x axis. + * @param pointerY Position of the user's pointer along the y axis. + */ +function getElementScrollDirections(element, clientRect, pointerX, pointerY) { + const computedVertical = getVerticalScrollDirection(clientRect, pointerY); + const computedHorizontal = getHorizontalScrollDirection(clientRect, pointerX); + let verticalScrollDirection = 0 /* AutoScrollVerticalDirection.NONE */; + let horizontalScrollDirection = 0 /* AutoScrollHorizontalDirection.NONE */; + // Note that we here we do some extra checks for whether the element is actually scrollable in + // a certain direction and we only assign the scroll direction if it is. We do this so that we + // can allow other elements to be scrolled, if the current element can't be scrolled anymore. + // This allows us to handle cases where the scroll regions of two scrollable elements overlap. + if (computedVertical) { + const scrollTop = element.scrollTop; + if (computedVertical === 1 /* AutoScrollVerticalDirection.UP */) { + if (scrollTop > 0) { + verticalScrollDirection = 1 /* AutoScrollVerticalDirection.UP */; + } + } else if (element.scrollHeight - scrollTop > element.clientHeight) { + verticalScrollDirection = 2 /* AutoScrollVerticalDirection.DOWN */; + } + } + if (computedHorizontal) { + const scrollLeft = element.scrollLeft; + if (computedHorizontal === 1 /* AutoScrollHorizontalDirection.LEFT */) { + if (scrollLeft > 0) { + horizontalScrollDirection = 1 /* AutoScrollHorizontalDirection.LEFT */; + } + } else if (element.scrollWidth - scrollLeft > element.clientWidth) { + horizontalScrollDirection = 2 /* AutoScrollHorizontalDirection.RIGHT */; + } + } + return [verticalScrollDirection, horizontalScrollDirection]; +} + +/** Event options that can be used to bind an active, capturing event. */ +const activeCapturingEventOptions = (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_0__.normalizePassiveListenerOptions)({ + passive: false, + capture: true +}); +/** + * Service that keeps track of all the drag item and drop container + * instances, and manages global event listeners on the `document`. + * @docs-private + */ +// Note: this class is generic, rather than referencing CdkDrag and CdkDropList directly, in order +// to avoid circular imports. If we were to reference them here, importing the registry into the +// classes that are registering themselves will introduce a circular import. +class DragDropRegistry { + constructor(_ngZone, _document) { + this._ngZone = _ngZone; + /** Registered drop container instances. */ + this._dropInstances = new Set(); + /** Registered drag item instances. */ + this._dragInstances = new Set(); + /** Drag item instances that are currently being dragged. */ + this._activeDragInstances = []; + /** Keeps track of the event listeners that we've bound to the `document`. */ + this._globalListeners = new Map(); + /** + * Predicate function to check if an item is being dragged. Moved out into a property, + * because it'll be called a lot and we don't want to create a new function every time. + */ + this._draggingPredicate = item => item.isDragging(); + /** + * Emits the `touchmove` or `mousemove` events that are dispatched + * while the user is dragging a drag item instance. + */ + this.pointerMove = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits the `touchend` or `mouseup` events that are dispatched + * while the user is dragging a drag item instance. + */ + this.pointerUp = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Emits when the viewport has been scrolled while the user is dragging an item. + * @deprecated To be turned into a private member. Use the `scrolled` method instead. + * @breaking-change 13.0.0 + */ + this.scroll = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Event listener that will prevent the default browser action while the user is dragging. + * @param event Event whose default action should be prevented. + */ + this._preventDefaultWhileDragging = event => { + if (this._activeDragInstances.length > 0) { + event.preventDefault(); + } + }; + /** Event listener for `touchmove` that is bound even if no dragging is happening. */ + this._persistentTouchmoveListener = event => { + if (this._activeDragInstances.length > 0) { + // Note that we only want to prevent the default action after dragging has actually started. + // Usually this is the same time at which the item is added to the `_activeDragInstances`, + // but it could be pushed back if the user has set up a drag delay or threshold. + if (this._activeDragInstances.some(this._draggingPredicate)) { + event.preventDefault(); + } + this.pointerMove.next(event); + } + }; + this._document = _document; + } + /** Adds a drop container to the registry. */ + registerDropContainer(drop) { + if (!this._dropInstances.has(drop)) { + this._dropInstances.add(drop); + } + } + /** Adds a drag item instance to the registry. */ + registerDragItem(drag) { + this._dragInstances.add(drag); + // The `touchmove` event gets bound once, ahead of time, because WebKit + // won't preventDefault on a dynamically-added `touchmove` listener. + // See https://bugs.webkit.org/show_bug.cgi?id=184250. + if (this._dragInstances.size === 1) { + this._ngZone.runOutsideAngular(() => { + // The event handler has to be explicitly active, + // because newer browsers make it passive by default. + this._document.addEventListener('touchmove', this._persistentTouchmoveListener, activeCapturingEventOptions); + }); + } + } + /** Removes a drop container from the registry. */ + removeDropContainer(drop) { + this._dropInstances.delete(drop); + } + /** Removes a drag item instance from the registry. */ + removeDragItem(drag) { + this._dragInstances.delete(drag); + this.stopDragging(drag); + if (this._dragInstances.size === 0) { + this._document.removeEventListener('touchmove', this._persistentTouchmoveListener, activeCapturingEventOptions); + } + } + /** + * Starts the dragging sequence for a drag instance. + * @param drag Drag instance which is being dragged. + * @param event Event that initiated the dragging. + */ + startDragging(drag, event) { + // Do not process the same drag twice to avoid memory leaks and redundant listeners + if (this._activeDragInstances.indexOf(drag) > -1) { + return; + } + this._activeDragInstances.push(drag); + if (this._activeDragInstances.length === 1) { + const isTouchEvent = event.type.startsWith('touch'); + // We explicitly bind __active__ listeners here, because newer browsers will default to + // passive ones for `mousemove` and `touchmove`. The events need to be active, because we + // use `preventDefault` to prevent the page from scrolling while the user is dragging. + this._globalListeners.set(isTouchEvent ? 'touchend' : 'mouseup', { + handler: e => this.pointerUp.next(e), + options: true + }).set('scroll', { + handler: e => this.scroll.next(e), + // Use capturing so that we pick up scroll changes in any scrollable nodes that aren't + // the document. See https://github.com/angular/components/issues/17144. + options: true + }) + // Preventing the default action on `mousemove` isn't enough to disable text selection + // on Safari so we need to prevent the selection event as well. Alternatively this can + // be done by setting `user-select: none` on the `body`, however it has causes a style + // recalculation which can be expensive on pages with a lot of elements. + .set('selectstart', { + handler: this._preventDefaultWhileDragging, + options: activeCapturingEventOptions + }); + // We don't have to bind a move event for touch drag sequences, because + // we already have a persistent global one bound from `registerDragItem`. + if (!isTouchEvent) { + this._globalListeners.set('mousemove', { + handler: e => this.pointerMove.next(e), + options: activeCapturingEventOptions + }); + } + this._ngZone.runOutsideAngular(() => { + this._globalListeners.forEach((config, name) => { + this._document.addEventListener(name, config.handler, config.options); + }); + }); + } + } + /** Stops dragging a drag item instance. */ + stopDragging(drag) { + const index = this._activeDragInstances.indexOf(drag); + if (index > -1) { + this._activeDragInstances.splice(index, 1); + if (this._activeDragInstances.length === 0) { + this._clearGlobalListeners(); + } + } + } + /** Gets whether a drag item instance is currently being dragged. */ + isDragging(drag) { + return this._activeDragInstances.indexOf(drag) > -1; + } + /** + * Gets a stream that will emit when any element on the page is scrolled while an item is being + * dragged. + * @param shadowRoot Optional shadow root that the current dragging sequence started from. + * Top-level listeners won't pick up events coming from the shadow DOM so this parameter can + * be used to include an additional top-level listener at the shadow root level. + */ + scrolled(shadowRoot) { + const streams = [this.scroll]; + if (shadowRoot && shadowRoot !== this._document) { + // Note that this is basically the same as `fromEvent` from rxjs, but we do it ourselves, + // because we want to guarantee that the event is bound outside of the `NgZone`. With + // `fromEvent` it'll only happen if the subscription is outside the `NgZone`. + streams.push(new rxjs__WEBPACK_IMPORTED_MODULE_8__.Observable(observer => { + return this._ngZone.runOutsideAngular(() => { + const eventOptions = true; + const callback = event => { + if (this._activeDragInstances.length) { + observer.next(event); + } + }; + shadowRoot.addEventListener('scroll', callback, eventOptions); + return () => { + shadowRoot.removeEventListener('scroll', callback, eventOptions); + }; + }); + })); + } + return (0,rxjs__WEBPACK_IMPORTED_MODULE_9__.merge)(...streams); + } + ngOnDestroy() { + this._dragInstances.forEach(instance => this.removeDragItem(instance)); + this._dropInstances.forEach(instance => this.removeDropContainer(instance)); + this._clearGlobalListeners(); + this.pointerMove.complete(); + this.pointerUp.complete(); + } + /** Clears out the global event listeners from the `document`. */ + _clearGlobalListeners() { + this._globalListeners.forEach((config, name) => { + this._document.removeEventListener(name, config.handler, config.options); + }); + this._globalListeners.clear(); + } + static #_ = this.ɵfac = function DragDropRegistry_Factory(t) { + return new (t || DragDropRegistry)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineInjectable"]({ + token: DragDropRegistry, + factory: DragDropRegistry.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](DragDropRegistry, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT] + }] + }]; + }, null); +})(); + +/** Default configuration to be used when creating a `DragRef`. */ +const DEFAULT_CONFIG = { + dragStartThreshold: 5, + pointerDirectionChangeThreshold: 5 +}; +/** + * Service that allows for drag-and-drop functionality to be attached to DOM elements. + */ +class DragDrop { + constructor(_document, _ngZone, _viewportRuler, _dragDropRegistry) { + this._document = _document; + this._ngZone = _ngZone; + this._viewportRuler = _viewportRuler; + this._dragDropRegistry = _dragDropRegistry; + } + /** + * Turns an element into a draggable item. + * @param element Element to which to attach the dragging functionality. + * @param config Object used to configure the dragging behavior. + */ + createDrag(element, config = DEFAULT_CONFIG) { + return new DragRef(element, config, this._document, this._ngZone, this._viewportRuler, this._dragDropRegistry); + } + /** + * Turns an element into a drop list. + * @param element Element to which to attach the drop list functionality. + */ + createDropList(element) { + return new DropListRef(element, this._dragDropRegistry, this._document, this._ngZone, this._viewportRuler); + } + static #_ = this.ɵfac = function DragDrop_Factory(t) { + return new (t || DragDrop)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ViewportRuler), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵinject"](DragDropRegistry)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineInjectable"]({ + token: DragDrop, + factory: DragDrop.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](DragDrop, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT] + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone + }, { + type: _angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ViewportRuler + }, { + type: DragDropRegistry + }]; + }, null); +})(); + +/** + * Injection token that can be used for a `CdkDrag` to provide itself as a parent to the + * drag-specific child directive (`CdkDragHandle`, `CdkDragPreview` etc.). Used primarily + * to avoid circular imports. + * @docs-private + */ +const CDK_DRAG_PARENT = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CDK_DRAG_PARENT'); + +/** + * Asserts that a particular node is an element. + * @param node Node to be checked. + * @param name Name to attach to the error message. + */ +function assertElementNode(node, name) { + if (node.nodeType !== 1) { + throw Error(`${name} must be attached to an element node. ` + `Currently attached to "${node.nodeName}".`); + } +} + +/** + * Injection token that can be used to reference instances of `CdkDragHandle`. It serves as + * alternative token to the actual `CdkDragHandle` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DRAG_HANDLE = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDragHandle'); +/** Handle that can be used to drag a CdkDrag instance. */ +class CdkDragHandle { + /** Whether starting to drag through this handle is disabled. */ + get disabled() { + return this._disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + this._stateChanges.next(this); + } + constructor(element, parentDrag) { + this.element = element; + /** Emits when the state of the handle has changed. */ + this._stateChanges = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + this._disabled = false; + if (typeof ngDevMode === 'undefined' || ngDevMode) { + assertElementNode(element.nativeElement, 'cdkDragHandle'); + } + this._parentDrag = parentDrag; + } + ngOnDestroy() { + this._stateChanges.complete(); + } + static #_ = this.ɵfac = function CdkDragHandle_Factory(t) { + return new (t || CdkDragHandle)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_PARENT, 12)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDragHandle, + selectors: [["", "cdkDragHandle", ""]], + hostAttrs: [1, "cdk-drag-handle"], + inputs: { + disabled: ["cdkDragHandleDisabled", "disabled"] + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_HANDLE, + useExisting: CdkDragHandle + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDragHandle, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDragHandle]', + standalone: true, + host: { + 'class': 'cdk-drag-handle' + }, + providers: [{ + provide: CDK_DRAG_HANDLE, + useExisting: CdkDragHandle + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_PARENT] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }] + }]; + }, { + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragHandleDisabled'] + }] + }); +})(); + +/** + * Injection token that can be used to reference instances of `CdkDragPlaceholder`. It serves as + * alternative token to the actual `CdkDragPlaceholder` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DRAG_PLACEHOLDER = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDragPlaceholder'); +/** + * Element that will be used as a template for the placeholder of a CdkDrag when + * it is being dragged. The placeholder is displayed in place of the element being dragged. + */ +class CdkDragPlaceholder { + constructor(templateRef) { + this.templateRef = templateRef; + } + static #_ = this.ɵfac = function CdkDragPlaceholder_Factory(t) { + return new (t || CdkDragPlaceholder)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDragPlaceholder, + selectors: [["ng-template", "cdkDragPlaceholder", ""]], + inputs: { + data: "data" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_PLACEHOLDER, + useExisting: CdkDragPlaceholder + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDragPlaceholder, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: 'ng-template[cdkDragPlaceholder]', + standalone: true, + providers: [{ + provide: CDK_DRAG_PLACEHOLDER, + useExisting: CdkDragPlaceholder + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef + }]; + }, { + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }] + }); +})(); + +/** + * Injection token that can be used to reference instances of `CdkDragPreview`. It serves as + * alternative token to the actual `CdkDragPreview` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DRAG_PREVIEW = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDragPreview'); +/** + * Element that will be used as a template for the preview + * of a CdkDrag when it is being dragged. + */ +class CdkDragPreview { + /** Whether the preview should preserve the same size as the item that is being dragged. */ + get matchSize() { + return this._matchSize; + } + set matchSize(value) { + this._matchSize = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + } + constructor(templateRef) { + this.templateRef = templateRef; + this._matchSize = false; + } + static #_ = this.ɵfac = function CdkDragPreview_Factory(t) { + return new (t || CdkDragPreview)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDragPreview, + selectors: [["ng-template", "cdkDragPreview", ""]], + inputs: { + data: "data", + matchSize: "matchSize" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_PREVIEW, + useExisting: CdkDragPreview + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDragPreview, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: 'ng-template[cdkDragPreview]', + standalone: true, + providers: [{ + provide: CDK_DRAG_PREVIEW, + useExisting: CdkDragPreview + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.TemplateRef + }]; + }, { + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }], + matchSize: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }] + }); +})(); + +/** + * Injection token that can be used to configure the + * behavior of the drag&drop-related components. + */ +const CDK_DRAG_CONFIG = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CDK_DRAG_CONFIG'); +const DRAG_HOST_CLASS = 'cdk-drag'; +/** + * Injection token that can be used to reference instances of `CdkDropList`. It serves as + * alternative token to the actual `CdkDropList` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DROP_LIST = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDropList'); +/** Element that can be moved inside a CdkDropList container. */ +class CdkDrag { + static #_ = this._dragInstances = []; + /** Whether starting to drag this element is disabled. */ + get disabled() { + return this._disabled || this.dropContainer && this.dropContainer.disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + this._dragRef.disabled = this._disabled; + } + constructor( /** Element that the draggable is attached to. */ + element, /** Droppable container that the draggable is a part of. */ + dropContainer, + /** + * @deprecated `_document` parameter no longer being used and will be removed. + * @breaking-change 12.0.0 + */ + _document, _ngZone, _viewContainerRef, config, _dir, dragDrop, _changeDetectorRef, _selfHandle, _parentDrag) { + this.element = element; + this.dropContainer = dropContainer; + this._ngZone = _ngZone; + this._viewContainerRef = _viewContainerRef; + this._dir = _dir; + this._changeDetectorRef = _changeDetectorRef; + this._selfHandle = _selfHandle; + this._parentDrag = _parentDrag; + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** Emits when the user starts dragging the item. */ + this.started = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user has released a drag item, before any animations have started. */ + this.released = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user stops dragging an item in the container. */ + this.ended = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user has moved the item into a new container. */ + this.entered = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user removes the item its container by dragging it into another container. */ + this.exited = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits when the user drops the item inside a container. */ + this.dropped = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Emits as the user is dragging the item. Use with caution, + * because this event will fire for every pixel that the user has dragged. + */ + this.moved = new rxjs__WEBPACK_IMPORTED_MODULE_8__.Observable(observer => { + const subscription = this._dragRef.moved.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.map)(movedEvent => ({ + source: this, + pointerPosition: movedEvent.pointerPosition, + event: movedEvent.event, + delta: movedEvent.delta, + distance: movedEvent.distance + }))).subscribe(observer); + return () => { + subscription.unsubscribe(); + }; + }); + this._dragRef = dragDrop.createDrag(element, { + dragStartThreshold: config && config.dragStartThreshold != null ? config.dragStartThreshold : 5, + pointerDirectionChangeThreshold: config && config.pointerDirectionChangeThreshold != null ? config.pointerDirectionChangeThreshold : 5, + zIndex: config?.zIndex + }); + this._dragRef.data = this; + // We have to keep track of the drag instances in order to be able to match an element to + // a drag instance. We can't go through the global registry of `DragRef`, because the root + // element could be different. + CdkDrag._dragInstances.push(this); + if (config) { + this._assignDefaults(config); + } + // Note that usually the container is assigned when the drop list is picks up the item, but in + // some cases (mainly transplanted views with OnPush, see #18341) we may end up in a situation + // where there are no items on the first change detection pass, but the items get picked up as + // soon as the user triggers another pass by dragging. This is a problem, because the item would + // have to switch from standalone mode to drag mode in the middle of the dragging sequence which + // is too late since the two modes save different kinds of information. We work around it by + // assigning the drop container both from here and the list. + if (dropContainer) { + this._dragRef._withDropContainer(dropContainer._dropListRef); + dropContainer.addItem(this); + } + this._syncInputs(this._dragRef); + this._handleEvents(this._dragRef); + } + /** + * Returns the element that is being used as a placeholder + * while the current element is being dragged. + */ + getPlaceholderElement() { + return this._dragRef.getPlaceholderElement(); + } + /** Returns the root draggable element. */ + getRootElement() { + return this._dragRef.getRootElement(); + } + /** Resets a standalone drag item to its initial position. */ + reset() { + this._dragRef.reset(); + } + /** + * Gets the pixel coordinates of the draggable outside of a drop container. + */ + getFreeDragPosition() { + return this._dragRef.getFreeDragPosition(); + } + /** + * Sets the current position in pixels the draggable outside of a drop container. + * @param value New position to be set. + */ + setFreeDragPosition(value) { + this._dragRef.setFreeDragPosition(value); + } + ngAfterViewInit() { + // Normally this isn't in the zone, but it can cause major performance regressions for apps + // using `zone-patch-rxjs` because it'll trigger a change detection when it unsubscribes. + this._ngZone.runOutsideAngular(() => { + // We need to wait for the zone to stabilize, in order for the reference + // element to be in the proper place in the DOM. This is mostly relevant + // for draggable elements inside portals since they get stamped out in + // their original DOM position and then they get transferred to the portal. + this._ngZone.onStable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.take)(1), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._destroyed)).subscribe(() => { + this._updateRootElement(); + this._setupHandlesListener(); + if (this.freeDragPosition) { + this._dragRef.setFreeDragPosition(this.freeDragPosition); + } + }); + }); + } + ngOnChanges(changes) { + const rootSelectorChange = changes['rootElementSelector']; + const positionChange = changes['freeDragPosition']; + // We don't have to react to the first change since it's being + // handled in `ngAfterViewInit` where it needs to be deferred. + if (rootSelectorChange && !rootSelectorChange.firstChange) { + this._updateRootElement(); + } + // Skip the first change since it's being handled in `ngAfterViewInit`. + if (positionChange && !positionChange.firstChange && this.freeDragPosition) { + this._dragRef.setFreeDragPosition(this.freeDragPosition); + } + } + ngOnDestroy() { + if (this.dropContainer) { + this.dropContainer.removeItem(this); + } + const index = CdkDrag._dragInstances.indexOf(this); + if (index > -1) { + CdkDrag._dragInstances.splice(index, 1); + } + // Unnecessary in most cases, but used to avoid extra change detections with `zone-paths-rxjs`. + this._ngZone.runOutsideAngular(() => { + this._destroyed.next(); + this._destroyed.complete(); + this._dragRef.dispose(); + }); + } + /** Syncs the root element with the `DragRef`. */ + _updateRootElement() { + const element = this.element.nativeElement; + let rootElement = element; + if (this.rootElementSelector) { + rootElement = element.closest !== undefined ? element.closest(this.rootElementSelector) : + // Comment tag doesn't have closest method, so use parent's one. + element.parentElement?.closest(this.rootElementSelector); + } + if (rootElement && (typeof ngDevMode === 'undefined' || ngDevMode)) { + assertElementNode(rootElement, 'cdkDrag'); + } + this._dragRef.withRootElement(rootElement || element); + } + /** Gets the boundary element, based on the `boundaryElement` value. */ + _getBoundaryElement() { + const boundary = this.boundaryElement; + if (!boundary) { + return null; + } + if (typeof boundary === 'string') { + return this.element.nativeElement.closest(boundary); + } + return (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(boundary); + } + /** Syncs the inputs of the CdkDrag with the options of the underlying DragRef. */ + _syncInputs(ref) { + ref.beforeStarted.subscribe(() => { + if (!ref.isDragging()) { + const dir = this._dir; + const dragStartDelay = this.dragStartDelay; + const placeholder = this._placeholderTemplate ? { + template: this._placeholderTemplate.templateRef, + context: this._placeholderTemplate.data, + viewContainer: this._viewContainerRef + } : null; + const preview = this._previewTemplate ? { + template: this._previewTemplate.templateRef, + context: this._previewTemplate.data, + matchSize: this._previewTemplate.matchSize, + viewContainer: this._viewContainerRef + } : null; + ref.disabled = this.disabled; + ref.lockAxis = this.lockAxis; + ref.dragStartDelay = typeof dragStartDelay === 'object' && dragStartDelay ? dragStartDelay : (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceNumberProperty)(dragStartDelay); + ref.constrainPosition = this.constrainPosition; + ref.previewClass = this.previewClass; + ref.withBoundaryElement(this._getBoundaryElement()).withPlaceholderTemplate(placeholder).withPreviewTemplate(preview).withPreviewContainer(this.previewContainer || 'global'); + if (dir) { + ref.withDirection(dir.value); + } + } + }); + // This only needs to be resolved once. + ref.beforeStarted.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.take)(1)).subscribe(() => { + // If we managed to resolve a parent through DI, use it. + if (this._parentDrag) { + ref.withParent(this._parentDrag._dragRef); + return; + } + // Otherwise fall back to resolving the parent by looking up the DOM. This can happen if + // the item was projected into another item by something like `ngTemplateOutlet`. + let parent = this.element.nativeElement.parentElement; + while (parent) { + if (parent.classList.contains(DRAG_HOST_CLASS)) { + ref.withParent(CdkDrag._dragInstances.find(drag => { + return drag.element.nativeElement === parent; + })?._dragRef || null); + break; + } + parent = parent.parentElement; + } + }); + } + /** Handles the events from the underlying `DragRef`. */ + _handleEvents(ref) { + ref.started.subscribe(startEvent => { + this.started.emit({ + source: this, + event: startEvent.event + }); + // Since all of these events run outside of change detection, + // we need to ensure that everything is marked correctly. + this._changeDetectorRef.markForCheck(); + }); + ref.released.subscribe(releaseEvent => { + this.released.emit({ + source: this, + event: releaseEvent.event + }); + }); + ref.ended.subscribe(endEvent => { + this.ended.emit({ + source: this, + distance: endEvent.distance, + dropPoint: endEvent.dropPoint, + event: endEvent.event + }); + // Since all of these events run outside of change detection, + // we need to ensure that everything is marked correctly. + this._changeDetectorRef.markForCheck(); + }); + ref.entered.subscribe(enterEvent => { + this.entered.emit({ + container: enterEvent.container.data, + item: this, + currentIndex: enterEvent.currentIndex + }); + }); + ref.exited.subscribe(exitEvent => { + this.exited.emit({ + container: exitEvent.container.data, + item: this + }); + }); + ref.dropped.subscribe(dropEvent => { + this.dropped.emit({ + previousIndex: dropEvent.previousIndex, + currentIndex: dropEvent.currentIndex, + previousContainer: dropEvent.previousContainer.data, + container: dropEvent.container.data, + isPointerOverContainer: dropEvent.isPointerOverContainer, + item: this, + distance: dropEvent.distance, + dropPoint: dropEvent.dropPoint, + event: dropEvent.event + }); + }); + } + /** Assigns the default input values based on a provided config object. */ + _assignDefaults(config) { + const { + lockAxis, + dragStartDelay, + constrainPosition, + previewClass, + boundaryElement, + draggingDisabled, + rootElementSelector, + previewContainer + } = config; + this.disabled = draggingDisabled == null ? false : draggingDisabled; + this.dragStartDelay = dragStartDelay || 0; + if (lockAxis) { + this.lockAxis = lockAxis; + } + if (constrainPosition) { + this.constrainPosition = constrainPosition; + } + if (previewClass) { + this.previewClass = previewClass; + } + if (boundaryElement) { + this.boundaryElement = boundaryElement; + } + if (rootElementSelector) { + this.rootElementSelector = rootElementSelector; + } + if (previewContainer) { + this.previewContainer = previewContainer; + } + } + /** Sets up the listener that syncs the handles with the drag ref. */ + _setupHandlesListener() { + // Listen for any newly-added handles. + this._handles.changes.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_15__.startWith)(this._handles), + // Sync the new handles with the DragRef. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.tap)(handles => { + const childHandleElements = handles.filter(handle => handle._parentDrag === this).map(handle => handle.element); + // Usually handles are only allowed to be a descendant of the drag element, but if + // the consumer defined a different drag root, we should allow the drag element + // itself to be a handle too. + if (this._selfHandle && this.rootElementSelector) { + childHandleElements.push(this.element); + } + this._dragRef.withHandles(childHandleElements); + }), + // Listen if the state of any of the handles changes. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_17__.switchMap)(handles => { + return (0,rxjs__WEBPACK_IMPORTED_MODULE_9__.merge)(...handles.map(item => { + return item._stateChanges.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_15__.startWith)(item)); + })); + }), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._destroyed)).subscribe(handleInstance => { + // Enabled/disable the handle that changed in the DragRef. + const dragRef = this._dragRef; + const handle = handleInstance.element.nativeElement; + handleInstance.disabled ? dragRef.disableHandle(handle) : dragRef.enableHandle(handle); + }); + } + static #_2 = this.ɵfac = function CdkDrag_Factory(t) { + return new (t || CdkDrag)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DROP_LIST, 12), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ViewContainerRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_CONFIG, 8), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, 8), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](DragDrop), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_HANDLE, 10), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_PARENT, 12)); + }; + static #_3 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDrag, + selectors: [["", "cdkDrag", ""]], + contentQueries: function CdkDrag_ContentQueries(rf, ctx, dirIndex) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵcontentQuery"](dirIndex, CDK_DRAG_PREVIEW, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵcontentQuery"](dirIndex, CDK_DRAG_PLACEHOLDER, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵcontentQuery"](dirIndex, CDK_DRAG_HANDLE, 5); + } + if (rf & 2) { + let _t; + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵloadQuery"]()) && (ctx._previewTemplate = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵloadQuery"]()) && (ctx._placeholderTemplate = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵloadQuery"]()) && (ctx._handles = _t); + } + }, + hostAttrs: [1, "cdk-drag"], + hostVars: 4, + hostBindings: function CdkDrag_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵclassProp"]("cdk-drag-disabled", ctx.disabled)("cdk-drag-dragging", ctx._dragRef.isDragging()); + } + }, + inputs: { + data: ["cdkDragData", "data"], + lockAxis: ["cdkDragLockAxis", "lockAxis"], + rootElementSelector: ["cdkDragRootElement", "rootElementSelector"], + boundaryElement: ["cdkDragBoundary", "boundaryElement"], + dragStartDelay: ["cdkDragStartDelay", "dragStartDelay"], + freeDragPosition: ["cdkDragFreeDragPosition", "freeDragPosition"], + disabled: ["cdkDragDisabled", "disabled"], + constrainPosition: ["cdkDragConstrainPosition", "constrainPosition"], + previewClass: ["cdkDragPreviewClass", "previewClass"], + previewContainer: ["cdkDragPreviewContainer", "previewContainer"] + }, + outputs: { + started: "cdkDragStarted", + released: "cdkDragReleased", + ended: "cdkDragEnded", + entered: "cdkDragEntered", + exited: "cdkDragExited", + dropped: "cdkDragDropped", + moved: "cdkDragMoved" + }, + exportAs: ["cdkDrag"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DRAG_PARENT, + useExisting: CdkDrag + }]), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵNgOnChangesFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDrag, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDrag]', + exportAs: 'cdkDrag', + standalone: true, + host: { + 'class': DRAG_HOST_CLASS, + '[class.cdk-drag-disabled]': 'disabled', + '[class.cdk-drag-dragging]': '_dragRef.isDragging()' + }, + providers: [{ + provide: CDK_DRAG_PARENT, + useExisting: CdkDrag + }] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DROP_LIST] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_11__.DOCUMENT] + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgZone + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ViewContainerRef + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_CONFIG] + }] + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }] + }, { + type: DragDrop + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef + }, { + type: CdkDragHandle, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Self + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_HANDLE] + }] + }, { + type: CdkDrag, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_PARENT] + }] + }]; + }, { + _handles: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ContentChildren, + args: [CDK_DRAG_HANDLE, { + descendants: true + }] + }], + _previewTemplate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ContentChild, + args: [CDK_DRAG_PREVIEW] + }], + _placeholderTemplate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ContentChild, + args: [CDK_DRAG_PLACEHOLDER] + }], + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragData'] + }], + lockAxis: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragLockAxis'] + }], + rootElementSelector: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragRootElement'] + }], + boundaryElement: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragBoundary'] + }], + dragStartDelay: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragStartDelay'] + }], + freeDragPosition: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragFreeDragPosition'] + }], + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragDisabled'] + }], + constrainPosition: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragConstrainPosition'] + }], + previewClass: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragPreviewClass'] + }], + previewContainer: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDragPreviewContainer'] + }], + started: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragStarted'] + }], + released: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragReleased'] + }], + ended: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragEnded'] + }], + entered: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragEntered'] + }], + exited: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragExited'] + }], + dropped: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragDropped'] + }], + moved: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDragMoved'] + }] + }); +})(); + +/** + * Injection token that can be used to reference instances of `CdkDropListGroup`. It serves as + * alternative token to the actual `CdkDropListGroup` class which could cause unnecessary + * retention of the class and its directive metadata. + */ +const CDK_DROP_LIST_GROUP = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.InjectionToken('CdkDropListGroup'); +/** + * Declaratively connects sibling `cdkDropList` instances together. All of the `cdkDropList` + * elements that are placed inside a `cdkDropListGroup` will be connected to each other + * automatically. Can be used as an alternative to the `cdkDropListConnectedTo` input + * from `cdkDropList`. + */ +class CdkDropListGroup { + constructor() { + /** Drop lists registered inside the group. */ + this._items = new Set(); + this._disabled = false; + } + /** Whether starting a dragging sequence from inside this group is disabled. */ + get disabled() { + return this._disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + } + ngOnDestroy() { + this._items.clear(); + } + static #_ = this.ɵfac = function CdkDropListGroup_Factory(t) { + return new (t || CdkDropListGroup)(); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDropListGroup, + selectors: [["", "cdkDropListGroup", ""]], + inputs: { + disabled: ["cdkDropListGroupDisabled", "disabled"] + }, + exportAs: ["cdkDropListGroup"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([{ + provide: CDK_DROP_LIST_GROUP, + useExisting: CdkDropListGroup + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDropListGroup, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDropListGroup]', + exportAs: 'cdkDropListGroup', + standalone: true, + providers: [{ + provide: CDK_DROP_LIST_GROUP, + useExisting: CdkDropListGroup + }] + }] + }], null, { + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListGroupDisabled'] + }] + }); +})(); + +/** Counter used to generate unique ids for drop zones. */ +let _uniqueIdCounter = 0; +/** Container that wraps a set of draggable items. */ +class CdkDropList { + /** Keeps track of the drop lists that are currently on the page. */ + static #_ = this._dropLists = []; + /** Whether starting a dragging sequence from this container is disabled. */ + get disabled() { + return this._disabled || !!this._group && this._group.disabled; + } + set disabled(value) { + // Usually we sync the directive and ref state right before dragging starts, in order to have + // a single point of failure and to avoid having to use setters for everything. `disabled` is + // a special case, because it can prevent the `beforeStarted` event from firing, which can lock + // the user in a disabled state, so we also need to sync it as it's being set. + this._dropListRef.disabled = this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + } + constructor( /** Element that the drop list is attached to. */ + element, dragDrop, _changeDetectorRef, _scrollDispatcher, _dir, _group, config) { + this.element = element; + this._changeDetectorRef = _changeDetectorRef; + this._scrollDispatcher = _scrollDispatcher; + this._dir = _dir; + this._group = _group; + /** Emits when the list has been destroyed. */ + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + /** + * Other draggable containers that this container is connected to and into which the + * container's items can be transferred. Can either be references to other drop containers, + * or their unique IDs. + */ + this.connectedTo = []; + /** + * Unique ID for the drop zone. Can be used as a reference + * in the `connectedTo` of another `CdkDropList`. + */ + this.id = `cdk-drop-list-${_uniqueIdCounter++}`; + /** + * Function that is used to determine whether an item + * is allowed to be moved into a drop container. + */ + this.enterPredicate = () => true; + /** Functions that is used to determine whether an item can be sorted into a particular index. */ + this.sortPredicate = () => true; + /** Emits when the user drops an item inside the container. */ + this.dropped = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Emits when the user has moved a new drag item into this container. + */ + this.entered = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Emits when the user removes an item from the container + * by dragging it into another container. + */ + this.exited = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** Emits as the user is swapping items while actively dragging. */ + this.sorted = new _angular_core__WEBPACK_IMPORTED_MODULE_10__.EventEmitter(); + /** + * Keeps track of the items that are registered with this container. Historically we used to + * do this with a `ContentChildren` query, however queries don't handle transplanted views very + * well which means that we can't handle cases like dragging the headers of a `mat-table` + * correctly. What we do instead is to have the items register themselves with the container + * and then we sort them based on their position in the DOM. + */ + this._unsortedItems = new Set(); + if (typeof ngDevMode === 'undefined' || ngDevMode) { + assertElementNode(element.nativeElement, 'cdkDropList'); + } + this._dropListRef = dragDrop.createDropList(element); + this._dropListRef.data = this; + if (config) { + this._assignDefaults(config); + } + this._dropListRef.enterPredicate = (drag, drop) => { + return this.enterPredicate(drag.data, drop.data); + }; + this._dropListRef.sortPredicate = (index, drag, drop) => { + return this.sortPredicate(index, drag.data, drop.data); + }; + this._setupInputSyncSubscription(this._dropListRef); + this._handleEvents(this._dropListRef); + CdkDropList._dropLists.push(this); + if (_group) { + _group._items.add(this); + } + } + /** Registers an items with the drop list. */ + addItem(item) { + this._unsortedItems.add(item); + if (this._dropListRef.isDragging()) { + this._syncItemsWithRef(); + } + } + /** Removes an item from the drop list. */ + removeItem(item) { + this._unsortedItems.delete(item); + if (this._dropListRef.isDragging()) { + this._syncItemsWithRef(); + } + } + /** Gets the registered items in the list, sorted by their position in the DOM. */ + getSortedItems() { + return Array.from(this._unsortedItems).sort((a, b) => { + const documentPosition = a._dragRef.getVisibleElement().compareDocumentPosition(b._dragRef.getVisibleElement()); + // `compareDocumentPosition` returns a bitmask so we have to use a bitwise operator. + // https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition + // tslint:disable-next-line:no-bitwise + return documentPosition & Node.DOCUMENT_POSITION_FOLLOWING ? -1 : 1; + }); + } + ngOnDestroy() { + const index = CdkDropList._dropLists.indexOf(this); + if (index > -1) { + CdkDropList._dropLists.splice(index, 1); + } + if (this._group) { + this._group._items.delete(this); + } + this._unsortedItems.clear(); + this._dropListRef.dispose(); + this._destroyed.next(); + this._destroyed.complete(); + } + /** Syncs the inputs of the CdkDropList with the options of the underlying DropListRef. */ + _setupInputSyncSubscription(ref) { + if (this._dir) { + this._dir.change.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_15__.startWith)(this._dir.value), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.takeUntil)(this._destroyed)).subscribe(value => ref.withDirection(value)); + } + ref.beforeStarted.subscribe(() => { + const siblings = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceArray)(this.connectedTo).map(drop => { + if (typeof drop === 'string') { + const correspondingDropList = CdkDropList._dropLists.find(list => list.id === drop); + if (!correspondingDropList && (typeof ngDevMode === 'undefined' || ngDevMode)) { + console.warn(`CdkDropList could not find connected drop list with id "${drop}"`); + } + return correspondingDropList; + } + return drop; + }); + if (this._group) { + this._group._items.forEach(drop => { + if (siblings.indexOf(drop) === -1) { + siblings.push(drop); + } + }); + } + // Note that we resolve the scrollable parents here so that we delay the resolution + // as long as possible, ensuring that the element is in its final place in the DOM. + if (!this._scrollableParentsResolved) { + const scrollableParents = this._scrollDispatcher.getAncestorScrollContainers(this.element).map(scrollable => scrollable.getElementRef().nativeElement); + this._dropListRef.withScrollableParents(scrollableParents); + // Only do this once since it involves traversing the DOM and the parents + // shouldn't be able to change without the drop list being destroyed. + this._scrollableParentsResolved = true; + } + ref.disabled = this.disabled; + ref.lockAxis = this.lockAxis; + ref.sortingDisabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(this.sortingDisabled); + ref.autoScrollDisabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(this.autoScrollDisabled); + ref.autoScrollStep = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceNumberProperty)(this.autoScrollStep, 2); + ref.connectedTo(siblings.filter(drop => drop && drop !== this).map(list => list._dropListRef)).withOrientation(this.orientation); + }); + } + /** Handles events from the underlying DropListRef. */ + _handleEvents(ref) { + ref.beforeStarted.subscribe(() => { + this._syncItemsWithRef(); + this._changeDetectorRef.markForCheck(); + }); + ref.entered.subscribe(event => { + this.entered.emit({ + container: this, + item: event.item.data, + currentIndex: event.currentIndex + }); + }); + ref.exited.subscribe(event => { + this.exited.emit({ + container: this, + item: event.item.data + }); + this._changeDetectorRef.markForCheck(); + }); + ref.sorted.subscribe(event => { + this.sorted.emit({ + previousIndex: event.previousIndex, + currentIndex: event.currentIndex, + container: this, + item: event.item.data + }); + }); + ref.dropped.subscribe(dropEvent => { + this.dropped.emit({ + previousIndex: dropEvent.previousIndex, + currentIndex: dropEvent.currentIndex, + previousContainer: dropEvent.previousContainer.data, + container: dropEvent.container.data, + item: dropEvent.item.data, + isPointerOverContainer: dropEvent.isPointerOverContainer, + distance: dropEvent.distance, + dropPoint: dropEvent.dropPoint, + event: dropEvent.event + }); + // Mark for check since all of these events run outside of change + // detection and we're not guaranteed for something else to have triggered it. + this._changeDetectorRef.markForCheck(); + }); + (0,rxjs__WEBPACK_IMPORTED_MODULE_9__.merge)(ref.receivingStarted, ref.receivingStopped).subscribe(() => this._changeDetectorRef.markForCheck()); + } + /** Assigns the default input values based on a provided config object. */ + _assignDefaults(config) { + const { + lockAxis, + draggingDisabled, + sortingDisabled, + listAutoScrollDisabled, + listOrientation + } = config; + this.disabled = draggingDisabled == null ? false : draggingDisabled; + this.sortingDisabled = sortingDisabled == null ? false : sortingDisabled; + this.autoScrollDisabled = listAutoScrollDisabled == null ? false : listAutoScrollDisabled; + this.orientation = listOrientation || 'vertical'; + if (lockAxis) { + this.lockAxis = lockAxis; + } + } + /** Syncs up the registered drag items with underlying drop list ref. */ + _syncItemsWithRef() { + this._dropListRef.withItems(this.getSortedItems().map(item => item._dragRef)); + } + static #_2 = this.ɵfac = function CdkDropList_Factory(t) { + return new (t || CdkDropList)(_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](DragDrop), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, 8), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DROP_LIST_GROUP, 12), _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdirectiveInject"](CDK_DRAG_CONFIG, 8)); + }; + static #_3 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineDirective"]({ + type: CdkDropList, + selectors: [["", "cdkDropList", ""], ["cdk-drop-list"]], + hostAttrs: [1, "cdk-drop-list"], + hostVars: 7, + hostBindings: function CdkDropList_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵattribute"]("id", ctx.id); + _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵclassProp"]("cdk-drop-list-disabled", ctx.disabled)("cdk-drop-list-dragging", ctx._dropListRef.isDragging())("cdk-drop-list-receiving", ctx._dropListRef.isReceiving()); + } + }, + inputs: { + connectedTo: ["cdkDropListConnectedTo", "connectedTo"], + data: ["cdkDropListData", "data"], + orientation: ["cdkDropListOrientation", "orientation"], + id: "id", + lockAxis: ["cdkDropListLockAxis", "lockAxis"], + disabled: ["cdkDropListDisabled", "disabled"], + sortingDisabled: ["cdkDropListSortingDisabled", "sortingDisabled"], + enterPredicate: ["cdkDropListEnterPredicate", "enterPredicate"], + sortPredicate: ["cdkDropListSortPredicate", "sortPredicate"], + autoScrollDisabled: ["cdkDropListAutoScrollDisabled", "autoScrollDisabled"], + autoScrollStep: ["cdkDropListAutoScrollStep", "autoScrollStep"] + }, + outputs: { + dropped: "cdkDropListDropped", + entered: "cdkDropListEntered", + exited: "cdkDropListExited", + sorted: "cdkDropListSorted" + }, + exportAs: ["cdkDropList"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵProvidersFeature"]([ + // Prevent child drop lists from picking up the same group as their parent. + { + provide: CDK_DROP_LIST_GROUP, + useValue: undefined + }, { + provide: CDK_DROP_LIST, + useExisting: CdkDropList + }])] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](CdkDropList, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Directive, + args: [{ + selector: '[cdkDropList], cdk-drop-list', + exportAs: 'cdkDropList', + standalone: true, + providers: [ + // Prevent child drop lists from picking up the same group as their parent. + { + provide: CDK_DROP_LIST_GROUP, + useValue: undefined + }, { + provide: CDK_DROP_LIST, + useExisting: CdkDropList + }], + host: { + 'class': 'cdk-drop-list', + '[attr.id]': 'id', + '[class.cdk-drop-list-disabled]': 'disabled', + '[class.cdk-drop-list-dragging]': '_dropListRef.isDragging()', + '[class.cdk-drop-list-receiving]': '_dropListRef.isReceiving()' + } + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ElementRef + }, { + type: DragDrop + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.ChangeDetectorRef + }, { + type: _angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.ScrollDispatcher + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_18__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }] + }, { + type: CdkDropListGroup, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DROP_LIST_GROUP] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.SkipSelf + }] + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Inject, + args: [CDK_DRAG_CONFIG] + }] + }]; + }, { + connectedTo: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListConnectedTo'] + }], + data: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListData'] + }], + orientation: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListOrientation'] + }], + id: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input + }], + lockAxis: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListLockAxis'] + }], + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListDisabled'] + }], + sortingDisabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListSortingDisabled'] + }], + enterPredicate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListEnterPredicate'] + }], + sortPredicate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListSortPredicate'] + }], + autoScrollDisabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListAutoScrollDisabled'] + }], + autoScrollStep: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Input, + args: ['cdkDropListAutoScrollStep'] + }], + dropped: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListDropped'] + }], + entered: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListEntered'] + }], + exited: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListExited'] + }], + sorted: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.Output, + args: ['cdkDropListSorted'] + }] + }); +})(); +const DRAG_DROP_DIRECTIVES = [CdkDropList, CdkDropListGroup, CdkDrag, CdkDragHandle, CdkDragPreview, CdkDragPlaceholder]; +class DragDropModule { + static #_ = this.ɵfac = function DragDropModule_Factory(t) { + return new (t || DragDropModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineNgModule"]({ + type: DragDropModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵɵdefineInjector"]({ + providers: [DragDrop], + imports: [_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.CdkScrollableModule] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_10__["ɵsetClassMetadata"](DragDropModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_10__.NgModule, + args: [{ + imports: DRAG_DROP_DIRECTIVES, + exports: [_angular_cdk_scrolling__WEBPACK_IMPORTED_MODULE_12__.CdkScrollableModule, ...DRAG_DROP_DIRECTIVES], + providers: [DragDrop] + }] + }], null, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 30554: +/*!*********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/keycodes.mjs ***! + \*********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ A: () => (/* binding */ A), +/* harmony export */ ALT: () => (/* binding */ ALT), +/* harmony export */ APOSTROPHE: () => (/* binding */ APOSTROPHE), +/* harmony export */ AT_SIGN: () => (/* binding */ AT_SIGN), +/* harmony export */ B: () => (/* binding */ B), +/* harmony export */ BACKSLASH: () => (/* binding */ BACKSLASH), +/* harmony export */ BACKSPACE: () => (/* binding */ BACKSPACE), +/* harmony export */ C: () => (/* binding */ C), +/* harmony export */ CAPS_LOCK: () => (/* binding */ CAPS_LOCK), +/* harmony export */ CLOSE_SQUARE_BRACKET: () => (/* binding */ CLOSE_SQUARE_BRACKET), +/* harmony export */ COMMA: () => (/* binding */ COMMA), +/* harmony export */ CONTEXT_MENU: () => (/* binding */ CONTEXT_MENU), +/* harmony export */ CONTROL: () => (/* binding */ CONTROL), +/* harmony export */ D: () => (/* binding */ D), +/* harmony export */ DASH: () => (/* binding */ DASH), +/* harmony export */ DELETE: () => (/* binding */ DELETE), +/* harmony export */ DOWN_ARROW: () => (/* binding */ DOWN_ARROW), +/* harmony export */ E: () => (/* binding */ E), +/* harmony export */ EIGHT: () => (/* binding */ EIGHT), +/* harmony export */ END: () => (/* binding */ END), +/* harmony export */ ENTER: () => (/* binding */ ENTER), +/* harmony export */ EQUALS: () => (/* binding */ EQUALS), +/* harmony export */ ESCAPE: () => (/* binding */ ESCAPE), +/* harmony export */ F: () => (/* binding */ F), +/* harmony export */ F1: () => (/* binding */ F1), +/* harmony export */ F10: () => (/* binding */ F10), +/* harmony export */ F11: () => (/* binding */ F11), +/* harmony export */ F12: () => (/* binding */ F12), +/* harmony export */ F2: () => (/* binding */ F2), +/* harmony export */ F3: () => (/* binding */ F3), +/* harmony export */ F4: () => (/* binding */ F4), +/* harmony export */ F5: () => (/* binding */ F5), +/* harmony export */ F6: () => (/* binding */ F6), +/* harmony export */ F7: () => (/* binding */ F7), +/* harmony export */ F8: () => (/* binding */ F8), +/* harmony export */ F9: () => (/* binding */ F9), +/* harmony export */ FF_EQUALS: () => (/* binding */ FF_EQUALS), +/* harmony export */ FF_MINUS: () => (/* binding */ FF_MINUS), +/* harmony export */ FF_MUTE: () => (/* binding */ FF_MUTE), +/* harmony export */ FF_SEMICOLON: () => (/* binding */ FF_SEMICOLON), +/* harmony export */ FF_VOLUME_DOWN: () => (/* binding */ FF_VOLUME_DOWN), +/* harmony export */ FF_VOLUME_UP: () => (/* binding */ FF_VOLUME_UP), +/* harmony export */ FIRST_MEDIA: () => (/* binding */ FIRST_MEDIA), +/* harmony export */ FIVE: () => (/* binding */ FIVE), +/* harmony export */ FOUR: () => (/* binding */ FOUR), +/* harmony export */ G: () => (/* binding */ G), +/* harmony export */ H: () => (/* binding */ H), +/* harmony export */ HOME: () => (/* binding */ HOME), +/* harmony export */ I: () => (/* binding */ I), +/* harmony export */ INSERT: () => (/* binding */ INSERT), +/* harmony export */ J: () => (/* binding */ J), +/* harmony export */ K: () => (/* binding */ K), +/* harmony export */ L: () => (/* binding */ L), +/* harmony export */ LAST_MEDIA: () => (/* binding */ LAST_MEDIA), +/* harmony export */ LEFT_ARROW: () => (/* binding */ LEFT_ARROW), +/* harmony export */ M: () => (/* binding */ M), +/* harmony export */ MAC_ENTER: () => (/* binding */ MAC_ENTER), +/* harmony export */ MAC_META: () => (/* binding */ MAC_META), +/* harmony export */ MAC_WK_CMD_LEFT: () => (/* binding */ MAC_WK_CMD_LEFT), +/* harmony export */ MAC_WK_CMD_RIGHT: () => (/* binding */ MAC_WK_CMD_RIGHT), +/* harmony export */ META: () => (/* binding */ META), +/* harmony export */ MUTE: () => (/* binding */ MUTE), +/* harmony export */ N: () => (/* binding */ N), +/* harmony export */ NINE: () => (/* binding */ NINE), +/* harmony export */ NUMPAD_DIVIDE: () => (/* binding */ NUMPAD_DIVIDE), +/* harmony export */ NUMPAD_EIGHT: () => (/* binding */ NUMPAD_EIGHT), +/* harmony export */ NUMPAD_FIVE: () => (/* binding */ NUMPAD_FIVE), +/* harmony export */ NUMPAD_FOUR: () => (/* binding */ NUMPAD_FOUR), +/* harmony export */ NUMPAD_MINUS: () => (/* binding */ NUMPAD_MINUS), +/* harmony export */ NUMPAD_MULTIPLY: () => (/* binding */ NUMPAD_MULTIPLY), +/* harmony export */ NUMPAD_NINE: () => (/* binding */ NUMPAD_NINE), +/* harmony export */ NUMPAD_ONE: () => (/* binding */ NUMPAD_ONE), +/* harmony export */ NUMPAD_PERIOD: () => (/* binding */ NUMPAD_PERIOD), +/* harmony export */ NUMPAD_PLUS: () => (/* binding */ NUMPAD_PLUS), +/* harmony export */ NUMPAD_SEVEN: () => (/* binding */ NUMPAD_SEVEN), +/* harmony export */ NUMPAD_SIX: () => (/* binding */ NUMPAD_SIX), +/* harmony export */ NUMPAD_THREE: () => (/* binding */ NUMPAD_THREE), +/* harmony export */ NUMPAD_TWO: () => (/* binding */ NUMPAD_TWO), +/* harmony export */ NUMPAD_ZERO: () => (/* binding */ NUMPAD_ZERO), +/* harmony export */ NUM_CENTER: () => (/* binding */ NUM_CENTER), +/* harmony export */ NUM_LOCK: () => (/* binding */ NUM_LOCK), +/* harmony export */ O: () => (/* binding */ O), +/* harmony export */ ONE: () => (/* binding */ ONE), +/* harmony export */ OPEN_SQUARE_BRACKET: () => (/* binding */ OPEN_SQUARE_BRACKET), +/* harmony export */ P: () => (/* binding */ P), +/* harmony export */ PAGE_DOWN: () => (/* binding */ PAGE_DOWN), +/* harmony export */ PAGE_UP: () => (/* binding */ PAGE_UP), +/* harmony export */ PAUSE: () => (/* binding */ PAUSE), +/* harmony export */ PERIOD: () => (/* binding */ PERIOD), +/* harmony export */ PLUS_SIGN: () => (/* binding */ PLUS_SIGN), +/* harmony export */ PRINT_SCREEN: () => (/* binding */ PRINT_SCREEN), +/* harmony export */ Q: () => (/* binding */ Q), +/* harmony export */ QUESTION_MARK: () => (/* binding */ QUESTION_MARK), +/* harmony export */ R: () => (/* binding */ R), +/* harmony export */ RIGHT_ARROW: () => (/* binding */ RIGHT_ARROW), +/* harmony export */ S: () => (/* binding */ S), +/* harmony export */ SCROLL_LOCK: () => (/* binding */ SCROLL_LOCK), +/* harmony export */ SEMICOLON: () => (/* binding */ SEMICOLON), +/* harmony export */ SEVEN: () => (/* binding */ SEVEN), +/* harmony export */ SHIFT: () => (/* binding */ SHIFT), +/* harmony export */ SINGLE_QUOTE: () => (/* binding */ SINGLE_QUOTE), +/* harmony export */ SIX: () => (/* binding */ SIX), +/* harmony export */ SLASH: () => (/* binding */ SLASH), +/* harmony export */ SPACE: () => (/* binding */ SPACE), +/* harmony export */ T: () => (/* binding */ T), +/* harmony export */ TAB: () => (/* binding */ TAB), +/* harmony export */ THREE: () => (/* binding */ THREE), +/* harmony export */ TILDE: () => (/* binding */ TILDE), +/* harmony export */ TWO: () => (/* binding */ TWO), +/* harmony export */ U: () => (/* binding */ U), +/* harmony export */ UP_ARROW: () => (/* binding */ UP_ARROW), +/* harmony export */ V: () => (/* binding */ V), +/* harmony export */ VOLUME_DOWN: () => (/* binding */ VOLUME_DOWN), +/* harmony export */ VOLUME_UP: () => (/* binding */ VOLUME_UP), +/* harmony export */ W: () => (/* binding */ W), +/* harmony export */ X: () => (/* binding */ X), +/* harmony export */ Y: () => (/* binding */ Y), +/* harmony export */ Z: () => (/* binding */ Z), +/* harmony export */ ZERO: () => (/* binding */ ZERO), +/* harmony export */ hasModifierKey: () => (/* binding */ hasModifierKey) +/* harmony export */ }); +const MAC_ENTER = 3; +const BACKSPACE = 8; +const TAB = 9; +const NUM_CENTER = 12; +const ENTER = 13; +const SHIFT = 16; +const CONTROL = 17; +const ALT = 18; +const PAUSE = 19; +const CAPS_LOCK = 20; +const ESCAPE = 27; +const SPACE = 32; +const PAGE_UP = 33; +const PAGE_DOWN = 34; +const END = 35; +const HOME = 36; +const LEFT_ARROW = 37; +const UP_ARROW = 38; +const RIGHT_ARROW = 39; +const DOWN_ARROW = 40; +const PLUS_SIGN = 43; +const PRINT_SCREEN = 44; +const INSERT = 45; +const DELETE = 46; +const ZERO = 48; +const ONE = 49; +const TWO = 50; +const THREE = 51; +const FOUR = 52; +const FIVE = 53; +const SIX = 54; +const SEVEN = 55; +const EIGHT = 56; +const NINE = 57; +const FF_SEMICOLON = 59; // Firefox (Gecko) fires this for semicolon instead of 186 +const FF_EQUALS = 61; // Firefox (Gecko) fires this for equals instead of 187 +const QUESTION_MARK = 63; +const AT_SIGN = 64; +const A = 65; +const B = 66; +const C = 67; +const D = 68; +const E = 69; +const F = 70; +const G = 71; +const H = 72; +const I = 73; +const J = 74; +const K = 75; +const L = 76; +const M = 77; +const N = 78; +const O = 79; +const P = 80; +const Q = 81; +const R = 82; +const S = 83; +const T = 84; +const U = 85; +const V = 86; +const W = 87; +const X = 88; +const Y = 89; +const Z = 90; +const META = 91; // WIN_KEY_LEFT +const MAC_WK_CMD_LEFT = 91; +const MAC_WK_CMD_RIGHT = 93; +const CONTEXT_MENU = 93; +const NUMPAD_ZERO = 96; +const NUMPAD_ONE = 97; +const NUMPAD_TWO = 98; +const NUMPAD_THREE = 99; +const NUMPAD_FOUR = 100; +const NUMPAD_FIVE = 101; +const NUMPAD_SIX = 102; +const NUMPAD_SEVEN = 103; +const NUMPAD_EIGHT = 104; +const NUMPAD_NINE = 105; +const NUMPAD_MULTIPLY = 106; +const NUMPAD_PLUS = 107; +const NUMPAD_MINUS = 109; +const NUMPAD_PERIOD = 110; +const NUMPAD_DIVIDE = 111; +const F1 = 112; +const F2 = 113; +const F3 = 114; +const F4 = 115; +const F5 = 116; +const F6 = 117; +const F7 = 118; +const F8 = 119; +const F9 = 120; +const F10 = 121; +const F11 = 122; +const F12 = 123; +const NUM_LOCK = 144; +const SCROLL_LOCK = 145; +const FIRST_MEDIA = 166; +const FF_MINUS = 173; +const MUTE = 173; // Firefox (Gecko) fires 181 for MUTE +const VOLUME_DOWN = 174; // Firefox (Gecko) fires 182 for VOLUME_DOWN +const VOLUME_UP = 175; // Firefox (Gecko) fires 183 for VOLUME_UP +const FF_MUTE = 181; +const FF_VOLUME_DOWN = 182; +const LAST_MEDIA = 183; +const FF_VOLUME_UP = 183; +const SEMICOLON = 186; // Firefox (Gecko) fires 59 for SEMICOLON +const EQUALS = 187; // Firefox (Gecko) fires 61 for EQUALS +const COMMA = 188; +const DASH = 189; // Firefox (Gecko) fires 173 for DASH/MINUS +const PERIOD = 190; +const SLASH = 191; +const APOSTROPHE = 192; +const TILDE = 192; +const OPEN_SQUARE_BRACKET = 219; +const BACKSLASH = 220; +const CLOSE_SQUARE_BRACKET = 221; +const SINGLE_QUOTE = 222; +const MAC_META = 224; + +/** + * Checks whether a modifier key is pressed. + * @param event Event to be checked. + */ +function hasModifierKey(event, ...modifiers) { + if (modifiers.length) { + return modifiers.some(modifier => event[modifier]); + } + return event.altKey || event.shiftKey || event.ctrlKey || event.metaKey; +} + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 39743: +/*!*******************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/layout.mjs ***! + \*******************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ BreakpointObserver: () => (/* binding */ BreakpointObserver), +/* harmony export */ Breakpoints: () => (/* binding */ Breakpoints), +/* harmony export */ LayoutModule: () => (/* binding */ LayoutModule), +/* harmony export */ MediaMatcher: () => (/* binding */ MediaMatcher) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs */ 64555); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 75774); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 46939); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 51063); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 95933); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 1062); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); + + + + + + +class LayoutModule { + static #_ = this.ɵfac = function LayoutModule_Factory(t) { + return new (t || LayoutModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: LayoutModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](LayoutModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{}] + }], null, null); +})(); + +/** Global registry for all dynamically-created, injected media queries. */ +const mediaQueriesForWebkitCompatibility = new Set(); +/** Style tag that holds all of the dynamically-created media queries. */ +let mediaQueryStyleNode; +/** A utility for calling matchMedia queries. */ +class MediaMatcher { + constructor(_platform, _nonce) { + this._platform = _platform; + this._nonce = _nonce; + this._matchMedia = this._platform.isBrowser && window.matchMedia ? + // matchMedia is bound to the window scope intentionally as it is an illegal invocation to + // call it from a different scope. + window.matchMedia.bind(window) : noopMatchMedia; + } + /** + * Evaluates the given media query and returns the native MediaQueryList from which results + * can be retrieved. + * Confirms the layout engine will trigger for the selector query provided and returns the + * MediaQueryList for the query provided. + */ + matchMedia(query) { + if (this._platform.WEBKIT || this._platform.BLINK) { + createEmptyStyleRule(query, this._nonce); + } + return this._matchMedia(query); + } + static #_ = this.ɵfac = function MediaMatcher_Factory(t) { + return new (t || MediaMatcher)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_1__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.CSP_NONCE, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: MediaMatcher, + factory: MediaMatcher.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](MediaMatcher, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_1__.Platform + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_core__WEBPACK_IMPORTED_MODULE_0__.CSP_NONCE] + }] + }]; + }, null); +})(); +/** + * Creates an empty stylesheet that is used to work around browser inconsistencies related to + * `matchMedia`. At the time of writing, it handles the following cases: + * 1. On WebKit browsers, a media query has to have at least one rule in order for `matchMedia` + * to fire. We work around it by declaring a dummy stylesheet with a `@media` declaration. + * 2. In some cases Blink browsers will stop firing the `matchMedia` listener if none of the rules + * inside the `@media` match existing elements on the page. We work around it by having one rule + * targeting the `body`. See https://github.com/angular/components/issues/23546. + */ +function createEmptyStyleRule(query, nonce) { + if (mediaQueriesForWebkitCompatibility.has(query)) { + return; + } + try { + if (!mediaQueryStyleNode) { + mediaQueryStyleNode = document.createElement('style'); + if (nonce) { + mediaQueryStyleNode.nonce = nonce; + } + mediaQueryStyleNode.setAttribute('type', 'text/css'); + document.head.appendChild(mediaQueryStyleNode); + } + if (mediaQueryStyleNode.sheet) { + mediaQueryStyleNode.sheet.insertRule(`@media ${query} {body{ }}`, 0); + mediaQueriesForWebkitCompatibility.add(query); + } + } catch (e) { + console.error(e); + } +} +/** No-op matchMedia replacement for non-browser platforms. */ +function noopMatchMedia(query) { + // Use `as any` here to avoid adding additional necessary properties for + // the noop matcher. + return { + matches: query === 'all' || query === '', + media: query, + addListener: () => {}, + removeListener: () => {} + }; +} + +/** Utility for checking the matching state of @media queries. */ +class BreakpointObserver { + constructor(_mediaMatcher, _zone) { + this._mediaMatcher = _mediaMatcher; + this._zone = _zone; + /** A map of all media queries currently being listened for. */ + this._queries = new Map(); + /** A subject for all other observables to takeUntil based on. */ + this._destroySubject = new rxjs__WEBPACK_IMPORTED_MODULE_2__.Subject(); + } + /** Completes the active subject, signalling to all other observables to complete. */ + ngOnDestroy() { + this._destroySubject.next(); + this._destroySubject.complete(); + } + /** + * Whether one or more media queries match the current viewport size. + * @param value One or more media queries to check. + * @returns Whether any of the media queries match. + */ + isMatched(value) { + const queries = splitQueries((0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceArray)(value)); + return queries.some(mediaQuery => this._registerQuery(mediaQuery).mql.matches); + } + /** + * Gets an observable of results for the given queries that will emit new results for any changes + * in matching of the given queries. + * @param value One or more media queries to check. + * @returns A stream of matches for the given queries. + */ + observe(value) { + const queries = splitQueries((0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceArray)(value)); + const observables = queries.map(query => this._registerQuery(query).observable); + let stateObservable = (0,rxjs__WEBPACK_IMPORTED_MODULE_4__.combineLatest)(observables); + // Emit the first state immediately, and then debounce the subsequent emissions. + stateObservable = (0,rxjs__WEBPACK_IMPORTED_MODULE_5__.concat)(stateObservable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.take)(1)), stateObservable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.skip)(1), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_8__.debounceTime)(0))); + return stateObservable.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_9__.map)(breakpointStates => { + const response = { + matches: false, + breakpoints: {} + }; + breakpointStates.forEach(({ + matches, + query + }) => { + response.matches = response.matches || matches; + response.breakpoints[query] = matches; + }); + return response; + })); + } + /** Registers a specific query to be listened for. */ + _registerQuery(query) { + // Only set up a new MediaQueryList if it is not already being listened for. + if (this._queries.has(query)) { + return this._queries.get(query); + } + const mql = this._mediaMatcher.matchMedia(query); + // Create callback for match changes and add it is as a listener. + const queryObservable = new rxjs__WEBPACK_IMPORTED_MODULE_10__.Observable(observer => { + // Listener callback methods are wrapped to be placed back in ngZone. Callbacks must be placed + // back into the zone because matchMedia is only included in Zone.js by loading the + // webapis-media-query.js file alongside the zone.js file. Additionally, some browsers do not + // have MediaQueryList inherit from EventTarget, which causes inconsistencies in how Zone.js + // patches it. + const handler = e => this._zone.run(() => observer.next(e)); + mql.addListener(handler); + return () => { + mql.removeListener(handler); + }; + }).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.startWith)(mql), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_9__.map)(({ + matches + }) => ({ + query, + matches + })), (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_12__.takeUntil)(this._destroySubject)); + // Add the MediaQueryList to the set of queries. + const output = { + observable: queryObservable, + mql + }; + this._queries.set(query, output); + return output; + } + static #_ = this.ɵfac = function BreakpointObserver_Factory(t) { + return new (t || BreakpointObserver)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](MediaMatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: BreakpointObserver, + factory: BreakpointObserver.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](BreakpointObserver, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: MediaMatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, null); +})(); +/** + * Split each query string into separate query strings if two queries are provided as comma + * separated. + */ +function splitQueries(queries) { + return queries.map(query => query.split(',')).reduce((a1, a2) => a1.concat(a2)).map(query => query.trim()); +} + +// PascalCase is being used as Breakpoints is used like an enum. +// tslint:disable-next-line:variable-name +const Breakpoints = { + XSmall: '(max-width: 599.98px)', + Small: '(min-width: 600px) and (max-width: 959.98px)', + Medium: '(min-width: 960px) and (max-width: 1279.98px)', + Large: '(min-width: 1280px) and (max-width: 1919.98px)', + XLarge: '(min-width: 1920px)', + Handset: '(max-width: 599.98px) and (orientation: portrait), ' + '(max-width: 959.98px) and (orientation: landscape)', + Tablet: '(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait), ' + '(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)', + Web: '(min-width: 840px) and (orientation: portrait), ' + '(min-width: 1280px) and (orientation: landscape)', + HandsetPortrait: '(max-width: 599.98px) and (orientation: portrait)', + TabletPortrait: '(min-width: 600px) and (max-width: 839.98px) and (orientation: portrait)', + WebPortrait: '(min-width: 840px) and (orientation: portrait)', + HandsetLandscape: '(max-width: 959.98px) and (orientation: landscape)', + TabletLandscape: '(min-width: 960px) and (max-width: 1279.98px) and (orientation: landscape)', + WebLandscape: '(min-width: 1280px) and (orientation: landscape)' +}; + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 66787: +/*!**********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/observers.mjs ***! + \**********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CdkObserveContent: () => (/* binding */ CdkObserveContent), +/* harmony export */ ContentObserver: () => (/* binding */ ContentObserver), +/* harmony export */ MutationObserverFactory: () => (/* binding */ MutationObserverFactory), +/* harmony export */ ObserversModule: () => (/* binding */ ObserversModule) +/* harmony export */ }); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 95933); + + + + + + +/** + * Factory that creates a new MutationObserver and allows us to stub it out in unit tests. + * @docs-private + */ +class MutationObserverFactory { + create(callback) { + return typeof MutationObserver === 'undefined' ? null : new MutationObserver(callback); + } + static #_ = this.ɵfac = function MutationObserverFactory_Factory(t) { + return new (t || MutationObserverFactory)(); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: MutationObserverFactory, + factory: MutationObserverFactory.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](MutationObserverFactory, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], null, null); +})(); +/** An injectable service that allows watching elements for changes to their content. */ +class ContentObserver { + constructor(_mutationObserverFactory) { + this._mutationObserverFactory = _mutationObserverFactory; + /** Keeps track of the existing MutationObservers so they can be reused. */ + this._observedElements = new Map(); + } + ngOnDestroy() { + this._observedElements.forEach((_, element) => this._cleanupObserver(element)); + } + observe(elementOrRef) { + const element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceElement)(elementOrRef); + return new rxjs__WEBPACK_IMPORTED_MODULE_2__.Observable(observer => { + const stream = this._observeElement(element); + const subscription = stream.subscribe(observer); + return () => { + subscription.unsubscribe(); + this._unobserveElement(element); + }; + }); + } + /** + * Observes the given element by using the existing MutationObserver if available, or creating a + * new one if not. + */ + _observeElement(element) { + if (!this._observedElements.has(element)) { + const stream = new rxjs__WEBPACK_IMPORTED_MODULE_3__.Subject(); + const observer = this._mutationObserverFactory.create(mutations => stream.next(mutations)); + if (observer) { + observer.observe(element, { + characterData: true, + childList: true, + subtree: true + }); + } + this._observedElements.set(element, { + observer, + stream, + count: 1 + }); + } else { + this._observedElements.get(element).count++; + } + return this._observedElements.get(element).stream; + } + /** + * Un-observes the given element and cleans up the underlying MutationObserver if nobody else is + * observing this element. + */ + _unobserveElement(element) { + if (this._observedElements.has(element)) { + this._observedElements.get(element).count--; + if (!this._observedElements.get(element).count) { + this._cleanupObserver(element); + } + } + } + /** Clean up the underlying MutationObserver for the specified element. */ + _cleanupObserver(element) { + if (this._observedElements.has(element)) { + const { + observer, + stream + } = this._observedElements.get(element); + if (observer) { + observer.disconnect(); + } + stream.complete(); + this._observedElements.delete(element); + } + } + static #_ = this.ɵfac = function ContentObserver_Factory(t) { + return new (t || ContentObserver)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](MutationObserverFactory)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ContentObserver, + factory: ContentObserver.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ContentObserver, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: MutationObserverFactory + }]; + }, null); +})(); +/** + * Directive that triggers a callback whenever the content of + * its associated element has changed. + */ +class CdkObserveContent { + /** + * Whether observing content is disabled. This option can be used + * to disconnect the underlying MutationObserver until it is needed. + */ + get disabled() { + return this._disabled; + } + set disabled(value) { + this._disabled = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceBooleanProperty)(value); + this._disabled ? this._unsubscribe() : this._subscribe(); + } + /** Debounce interval for emitting the changes. */ + get debounce() { + return this._debounce; + } + set debounce(value) { + this._debounce = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_1__.coerceNumberProperty)(value); + this._subscribe(); + } + constructor(_contentObserver, _elementRef, _ngZone) { + this._contentObserver = _contentObserver; + this._elementRef = _elementRef; + this._ngZone = _ngZone; + /** Event emitted for each change in the element's content. */ + this.event = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.EventEmitter(); + this._disabled = false; + this._currentSubscription = null; + } + ngAfterContentInit() { + if (!this._currentSubscription && !this.disabled) { + this._subscribe(); + } + } + ngOnDestroy() { + this._unsubscribe(); + } + _subscribe() { + this._unsubscribe(); + const stream = this._contentObserver.observe(this._elementRef); + // TODO(mmalerba): We shouldn't be emitting on this @Output() outside the zone. + // Consider brining it back inside the zone next time we're making breaking changes. + // Bringing it back inside can cause things like infinite change detection loops and changed + // after checked errors if people's code isn't handling it properly. + this._ngZone.runOutsideAngular(() => { + this._currentSubscription = (this.debounce ? stream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_4__.debounceTime)(this.debounce)) : stream).subscribe(this.event); + }); + } + _unsubscribe() { + this._currentSubscription?.unsubscribe(); + } + static #_ = this.ɵfac = function CdkObserveContent_Factory(t) { + return new (t || CdkObserveContent)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ContentObserver), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkObserveContent, + selectors: [["", "cdkObserveContent", ""]], + inputs: { + disabled: ["cdkObserveContentDisabled", "disabled"], + debounce: "debounce" + }, + outputs: { + event: "cdkObserveContent" + }, + exportAs: ["cdkObserveContent"] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkObserveContent, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkObserveContent]', + exportAs: 'cdkObserveContent' + }] + }], function () { + return [{ + type: ContentObserver + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, { + event: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output, + args: ['cdkObserveContent'] + }], + disabled: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input, + args: ['cdkObserveContentDisabled'] + }], + debounce: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); +class ObserversModule { + static #_ = this.ɵfac = function ObserversModule_Factory(t) { + return new (t || ObserversModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: ObserversModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ + providers: [MutationObserverFactory] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ObserversModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + exports: [CdkObserveContent], + declarations: [CdkObserveContent], + providers: [MutationObserverFactory] + }] + }], null, null); +})(); + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 73274: +/*!*********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/platform.mjs ***! + \*********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ Platform: () => (/* binding */ Platform), +/* harmony export */ PlatformModule: () => (/* binding */ PlatformModule), +/* harmony export */ _getEventTarget: () => (/* binding */ _getEventTarget), +/* harmony export */ _getFocusedElementPierceShadowDom: () => (/* binding */ _getFocusedElementPierceShadowDom), +/* harmony export */ _getShadowRoot: () => (/* binding */ _getShadowRoot), +/* harmony export */ _isTestEnvironment: () => (/* binding */ _isTestEnvironment), +/* harmony export */ _supportsShadowDom: () => (/* binding */ _supportsShadowDom), +/* harmony export */ getRtlScrollAxisType: () => (/* binding */ getRtlScrollAxisType), +/* harmony export */ getSupportedInputTypes: () => (/* binding */ getSupportedInputTypes), +/* harmony export */ normalizePassiveListenerOptions: () => (/* binding */ normalizePassiveListenerOptions), +/* harmony export */ supportsPassiveEventListeners: () => (/* binding */ supportsPassiveEventListeners), +/* harmony export */ supportsScrollBehavior: () => (/* binding */ supportsScrollBehavior) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/common */ 26575); + + + + +// Whether the current platform supports the V8 Break Iterator. The V8 check +// is necessary to detect all Blink based browsers. +let hasV8BreakIterator; +// We need a try/catch around the reference to `Intl`, because accessing it in some cases can +// cause IE to throw. These cases are tied to particular versions of Windows and can happen if +// the consumer is providing a polyfilled `Map`. See: +// https://github.com/Microsoft/ChakraCore/issues/3189 +// https://github.com/angular/components/issues/15687 +try { + hasV8BreakIterator = typeof Intl !== 'undefined' && Intl.v8BreakIterator; +} catch { + hasV8BreakIterator = false; +} +/** + * Service to detect the current platform by comparing the userAgent strings and + * checking browser-specific global properties. + */ +class Platform { + constructor(_platformId) { + this._platformId = _platformId; + // We want to use the Angular platform check because if the Document is shimmed + // without the navigator, the following checks will fail. This is preferred because + // sometimes the Document may be shimmed without the user's knowledge or intention + /** Whether the Angular application is being rendered in the browser. */ + this.isBrowser = this._platformId ? (0,_angular_common__WEBPACK_IMPORTED_MODULE_0__.isPlatformBrowser)(this._platformId) : typeof document === 'object' && !!document; + /** Whether the current browser is Microsoft Edge. */ + this.EDGE = this.isBrowser && /(edge)/i.test(navigator.userAgent); + /** Whether the current rendering engine is Microsoft Trident. */ + this.TRIDENT = this.isBrowser && /(msie|trident)/i.test(navigator.userAgent); + // EdgeHTML and Trident mock Blink specific things and need to be excluded from this check. + /** Whether the current rendering engine is Blink. */ + this.BLINK = this.isBrowser && !!(window.chrome || hasV8BreakIterator) && typeof CSS !== 'undefined' && !this.EDGE && !this.TRIDENT; + // Webkit is part of the userAgent in EdgeHTML, Blink and Trident. Therefore we need to + // ensure that Webkit runs standalone and is not used as another engine's base. + /** Whether the current rendering engine is WebKit. */ + this.WEBKIT = this.isBrowser && /AppleWebKit/i.test(navigator.userAgent) && !this.BLINK && !this.EDGE && !this.TRIDENT; + /** Whether the current platform is Apple iOS. */ + this.IOS = this.isBrowser && /iPad|iPhone|iPod/.test(navigator.userAgent) && !('MSStream' in window); + // It's difficult to detect the plain Gecko engine, because most of the browsers identify + // them self as Gecko-like browsers and modify the userAgent's according to that. + // Since we only cover one explicit Firefox case, we can simply check for Firefox + // instead of having an unstable check for Gecko. + /** Whether the current browser is Firefox. */ + this.FIREFOX = this.isBrowser && /(firefox|minefield)/i.test(navigator.userAgent); + /** Whether the current platform is Android. */ + // Trident on mobile adds the android platform to the userAgent to trick detections. + this.ANDROID = this.isBrowser && /android/i.test(navigator.userAgent) && !this.TRIDENT; + // Safari browsers will include the Safari keyword in their userAgent. Some browsers may fake + // this and just place the Safari keyword in the userAgent. To be more safe about Safari every + // Safari browser should also use Webkit as its layout engine. + /** Whether the current browser is Safari. */ + this.SAFARI = this.isBrowser && /safari/i.test(navigator.userAgent) && this.WEBKIT; + } + static #_ = this.ɵfac = function Platform_Factory(t) { + return new (t || Platform)(_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_1__.PLATFORM_ID)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineInjectable"]({ + token: Platform, + factory: Platform.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵsetClassMetadata"](Platform, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_1__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: Object, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_1__.Inject, + args: [_angular_core__WEBPACK_IMPORTED_MODULE_1__.PLATFORM_ID] + }] + }]; + }, null); +})(); +class PlatformModule { + static #_ = this.ɵfac = function PlatformModule_Factory(t) { + return new (t || PlatformModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineNgModule"]({ + type: PlatformModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵsetClassMetadata"](PlatformModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_1__.NgModule, + args: [{}] + }], null, null); +})(); + +/** Cached result Set of input types support by the current browser. */ +let supportedInputTypes; +/** Types of `` that *might* be supported. */ +const candidateInputTypes = [ +// `color` must come first. Chrome 56 shows a warning if we change the type to `color` after +// first changing it to something else: +// The specified value "" does not conform to the required format. +// The format is "#rrggbb" where rr, gg, bb are two-digit hexadecimal numbers. +'color', 'button', 'checkbox', 'date', 'datetime-local', 'email', 'file', 'hidden', 'image', 'month', 'number', 'password', 'radio', 'range', 'reset', 'search', 'submit', 'tel', 'text', 'time', 'url', 'week']; +/** @returns The input types supported by this browser. */ +function getSupportedInputTypes() { + // Result is cached. + if (supportedInputTypes) { + return supportedInputTypes; + } + // We can't check if an input type is not supported until we're on the browser, so say that + // everything is supported when not on the browser. We don't use `Platform` here since it's + // just a helper function and can't inject it. + if (typeof document !== 'object' || !document) { + supportedInputTypes = new Set(candidateInputTypes); + return supportedInputTypes; + } + let featureTestInput = document.createElement('input'); + supportedInputTypes = new Set(candidateInputTypes.filter(value => { + featureTestInput.setAttribute('type', value); + return featureTestInput.type === value; + })); + return supportedInputTypes; +} + +/** Cached result of whether the user's browser supports passive event listeners. */ +let supportsPassiveEvents; +/** + * Checks whether the user's browser supports passive event listeners. + * See: https://github.com/WICG/EventListenerOptions/blob/gh-pages/explainer.md + */ +function supportsPassiveEventListeners() { + if (supportsPassiveEvents == null && typeof window !== 'undefined') { + try { + window.addEventListener('test', null, Object.defineProperty({}, 'passive', { + get: () => supportsPassiveEvents = true + })); + } finally { + supportsPassiveEvents = supportsPassiveEvents || false; + } + } + return supportsPassiveEvents; +} +/** + * Normalizes an `AddEventListener` object to something that can be passed + * to `addEventListener` on any browser, no matter whether it supports the + * `options` parameter. + * @param options Object to be normalized. + */ +function normalizePassiveListenerOptions(options) { + return supportsPassiveEventListeners() ? options : !!options.capture; +} + +/** Cached result of the way the browser handles the horizontal scroll axis in RTL mode. */ +let rtlScrollAxisType; +/** Cached result of the check that indicates whether the browser supports scroll behaviors. */ +let scrollBehaviorSupported; +/** Check whether the browser supports scroll behaviors. */ +function supportsScrollBehavior() { + if (scrollBehaviorSupported == null) { + // If we're not in the browser, it can't be supported. Also check for `Element`, because + // some projects stub out the global `document` during SSR which can throw us off. + if (typeof document !== 'object' || !document || typeof Element !== 'function' || !Element) { + scrollBehaviorSupported = false; + return scrollBehaviorSupported; + } + // If the element can have a `scrollBehavior` style, we can be sure that it's supported. + if ('scrollBehavior' in document.documentElement.style) { + scrollBehaviorSupported = true; + } else { + // At this point we have 3 possibilities: `scrollTo` isn't supported at all, it's + // supported but it doesn't handle scroll behavior, or it has been polyfilled. + const scrollToFunction = Element.prototype.scrollTo; + if (scrollToFunction) { + // We can detect if the function has been polyfilled by calling `toString` on it. Native + // functions are obfuscated using `[native code]`, whereas if it was overwritten we'd get + // the actual function source. Via https://davidwalsh.name/detect-native-function. Consider + // polyfilled functions as supporting scroll behavior. + scrollBehaviorSupported = !/\{\s*\[native code\]\s*\}/.test(scrollToFunction.toString()); + } else { + scrollBehaviorSupported = false; + } + } + } + return scrollBehaviorSupported; +} +/** + * Checks the type of RTL scroll axis used by this browser. As of time of writing, Chrome is NORMAL, + * Firefox & Safari are NEGATED, and IE & Edge are INVERTED. + */ +function getRtlScrollAxisType() { + // We can't check unless we're on the browser. Just assume 'normal' if we're not. + if (typeof document !== 'object' || !document) { + return 0 /* RtlScrollAxisType.NORMAL */; + } + if (rtlScrollAxisType == null) { + // Create a 1px wide scrolling container and a 2px wide content element. + const scrollContainer = document.createElement('div'); + const containerStyle = scrollContainer.style; + scrollContainer.dir = 'rtl'; + containerStyle.width = '1px'; + containerStyle.overflow = 'auto'; + containerStyle.visibility = 'hidden'; + containerStyle.pointerEvents = 'none'; + containerStyle.position = 'absolute'; + const content = document.createElement('div'); + const contentStyle = content.style; + contentStyle.width = '2px'; + contentStyle.height = '1px'; + scrollContainer.appendChild(content); + document.body.appendChild(scrollContainer); + rtlScrollAxisType = 0 /* RtlScrollAxisType.NORMAL */; + // The viewport starts scrolled all the way to the right in RTL mode. If we are in a NORMAL + // browser this would mean that the scrollLeft should be 1. If it's zero instead we know we're + // dealing with one of the other two types of browsers. + if (scrollContainer.scrollLeft === 0) { + // In a NEGATED browser the scrollLeft is always somewhere in [-maxScrollAmount, 0]. For an + // INVERTED browser it is always somewhere in [0, maxScrollAmount]. We can determine which by + // setting to the scrollLeft to 1. This is past the max for a NEGATED browser, so it will + // return 0 when we read it again. + scrollContainer.scrollLeft = 1; + rtlScrollAxisType = scrollContainer.scrollLeft === 0 ? 1 /* RtlScrollAxisType.NEGATED */ : 2 /* RtlScrollAxisType.INVERTED */; + } + scrollContainer.remove(); + } + return rtlScrollAxisType; +} +let shadowDomIsSupported; +/** Checks whether the user's browser support Shadow DOM. */ +function _supportsShadowDom() { + if (shadowDomIsSupported == null) { + const head = typeof document !== 'undefined' ? document.head : null; + shadowDomIsSupported = !!(head && (head.createShadowRoot || head.attachShadow)); + } + return shadowDomIsSupported; +} +/** Gets the shadow root of an element, if supported and the element is inside the Shadow DOM. */ +function _getShadowRoot(element) { + if (_supportsShadowDom()) { + const rootNode = element.getRootNode ? element.getRootNode() : null; + // Note that this should be caught by `_supportsShadowDom`, but some + // teams have been able to hit this code path on unsupported browsers. + if (typeof ShadowRoot !== 'undefined' && ShadowRoot && rootNode instanceof ShadowRoot) { + return rootNode; + } + } + return null; +} +/** + * Gets the currently-focused element on the page while + * also piercing through Shadow DOM boundaries. + */ +function _getFocusedElementPierceShadowDom() { + let activeElement = typeof document !== 'undefined' && document ? document.activeElement : null; + while (activeElement && activeElement.shadowRoot) { + const newActiveElement = activeElement.shadowRoot.activeElement; + if (newActiveElement === activeElement) { + break; + } else { + activeElement = newActiveElement; + } + } + return activeElement; +} +/** Gets the target of an event while accounting for Shadow DOM. */ +function _getEventTarget(event) { + // If an event is bound outside the Shadow DOM, the `event.target` will + // point to the shadow root so we have to use `composedPath` instead. + return event.composedPath ? event.composedPath()[0] : event.target; +} + +/** Gets whether the code is currently running in a test environment. */ +function _isTestEnvironment() { + // We can't use `declare const` because it causes conflicts inside Google with the real typings + // for these symbols and we can't read them off the global object, because they don't appear to + // be attached there for some runners like Jest. + // (see: https://github.com/angular/components/issues/23365#issuecomment-938146643) + return ( + // @ts-ignore + typeof __karma__ !== 'undefined' && !!__karma__ || + // @ts-ignore + typeof jasmine !== 'undefined' && !!jasmine || + // @ts-ignore + typeof jest !== 'undefined' && !!jest || + // @ts-ignore + typeof Mocha !== 'undefined' && !!Mocha + ); +} + +/** + * Generated bundle index. Do not edit. + */ + + + +/***/ }), + +/***/ 50275: +/*!**********************************************************!*\ + !*** ./node_modules/@angular/cdk/fesm2022/scrolling.mjs ***! + \**********************************************************/ +/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => { + +"use strict"; +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CdkFixedSizeVirtualScroll: () => (/* binding */ CdkFixedSizeVirtualScroll), +/* harmony export */ CdkScrollable: () => (/* binding */ CdkScrollable), +/* harmony export */ CdkScrollableModule: () => (/* binding */ CdkScrollableModule), +/* harmony export */ CdkVirtualForOf: () => (/* binding */ CdkVirtualForOf), +/* harmony export */ CdkVirtualScrollViewport: () => (/* binding */ CdkVirtualScrollViewport), +/* harmony export */ CdkVirtualScrollable: () => (/* binding */ CdkVirtualScrollable), +/* harmony export */ CdkVirtualScrollableElement: () => (/* binding */ CdkVirtualScrollableElement), +/* harmony export */ CdkVirtualScrollableWindow: () => (/* binding */ CdkVirtualScrollableWindow), +/* harmony export */ DEFAULT_RESIZE_TIME: () => (/* binding */ DEFAULT_RESIZE_TIME), +/* harmony export */ DEFAULT_SCROLL_TIME: () => (/* binding */ DEFAULT_SCROLL_TIME), +/* harmony export */ FixedSizeVirtualScrollStrategy: () => (/* binding */ FixedSizeVirtualScrollStrategy), +/* harmony export */ ScrollDispatcher: () => (/* binding */ ScrollDispatcher), +/* harmony export */ ScrollingModule: () => (/* binding */ ScrollingModule), +/* harmony export */ VIRTUAL_SCROLLABLE: () => (/* binding */ VIRTUAL_SCROLLABLE), +/* harmony export */ VIRTUAL_SCROLL_STRATEGY: () => (/* binding */ VIRTUAL_SCROLL_STRATEGY), +/* harmony export */ ViewportRuler: () => (/* binding */ ViewportRuler), +/* harmony export */ _fixedSizeVirtualScrollStrategyFactory: () => (/* binding */ _fixedSizeVirtualScrollStrategyFactory) +/* harmony export */ }); +/* harmony import */ var _angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/cdk/coercion */ 55998); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs */ 9681); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs */ 82727); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs */ 81151); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! rxjs */ 72450); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 45083); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 41270); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 85046); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! rxjs/operators */ 1062); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! rxjs/operators */ 66407); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! rxjs/operators */ 680); +/* harmony import */ var _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/cdk/platform */ 73274); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/cdk/bidi */ 24565); +/* harmony import */ var _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! @angular/cdk/collections */ 20636); + + + + + + + + + + + + + +/** The injection token used to specify the virtual scrolling strategy. */ +const _c0 = ["contentWrapper"]; +const _c1 = ["*"]; +const VIRTUAL_SCROLL_STRATEGY = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('VIRTUAL_SCROLL_STRATEGY'); + +/** Virtual scrolling strategy for lists with items of known fixed size. */ +class FixedSizeVirtualScrollStrategy { + /** + * @param itemSize The size of the items in the virtually scrolling list. + * @param minBufferPx The minimum amount of buffer (in pixels) before needing to render more + * @param maxBufferPx The amount of buffer (in pixels) to render when rendering more. + */ + constructor(itemSize, minBufferPx, maxBufferPx) { + this._scrolledIndexChange = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + this.scrolledIndexChange = this._scrolledIndexChange.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_2__.distinctUntilChanged)()); + /** The attached viewport. */ + this._viewport = null; + this._itemSize = itemSize; + this._minBufferPx = minBufferPx; + this._maxBufferPx = maxBufferPx; + } + /** + * Attaches this scroll strategy to a viewport. + * @param viewport The viewport to attach this strategy to. + */ + attach(viewport) { + this._viewport = viewport; + this._updateTotalContentSize(); + this._updateRenderedRange(); + } + /** Detaches this scroll strategy from the currently attached viewport. */ + detach() { + this._scrolledIndexChange.complete(); + this._viewport = null; + } + /** + * Update the item size and buffer size. + * @param itemSize The size of the items in the virtually scrolling list. + * @param minBufferPx The minimum amount of buffer (in pixels) before needing to render more + * @param maxBufferPx The amount of buffer (in pixels) to render when rendering more. + */ + updateItemAndBufferSize(itemSize, minBufferPx, maxBufferPx) { + if (maxBufferPx < minBufferPx && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error('CDK virtual scroll: maxBufferPx must be greater than or equal to minBufferPx'); + } + this._itemSize = itemSize; + this._minBufferPx = minBufferPx; + this._maxBufferPx = maxBufferPx; + this._updateTotalContentSize(); + this._updateRenderedRange(); + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onContentScrolled() { + this._updateRenderedRange(); + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onDataLengthChanged() { + this._updateTotalContentSize(); + this._updateRenderedRange(); + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onContentRendered() { + /* no-op */ + } + /** @docs-private Implemented as part of VirtualScrollStrategy. */ + onRenderedOffsetChanged() { + /* no-op */ + } + /** + * Scroll to the offset for the given index. + * @param index The index of the element to scroll to. + * @param behavior The ScrollBehavior to use when scrolling. + */ + scrollToIndex(index, behavior) { + if (this._viewport) { + this._viewport.scrollToOffset(index * this._itemSize, behavior); + } + } + /** Update the viewport's total content size. */ + _updateTotalContentSize() { + if (!this._viewport) { + return; + } + this._viewport.setTotalContentSize(this._viewport.getDataLength() * this._itemSize); + } + /** Update the viewport's rendered range. */ + _updateRenderedRange() { + if (!this._viewport) { + return; + } + const renderedRange = this._viewport.getRenderedRange(); + const newRange = { + start: renderedRange.start, + end: renderedRange.end + }; + const viewportSize = this._viewport.getViewportSize(); + const dataLength = this._viewport.getDataLength(); + let scrollOffset = this._viewport.measureScrollOffset(); + // Prevent NaN as result when dividing by zero. + let firstVisibleIndex = this._itemSize > 0 ? scrollOffset / this._itemSize : 0; + // If user scrolls to the bottom of the list and data changes to a smaller list + if (newRange.end > dataLength) { + // We have to recalculate the first visible index based on new data length and viewport size. + const maxVisibleItems = Math.ceil(viewportSize / this._itemSize); + const newVisibleIndex = Math.max(0, Math.min(firstVisibleIndex, dataLength - maxVisibleItems)); + // If first visible index changed we must update scroll offset to handle start/end buffers + // Current range must also be adjusted to cover the new position (bottom of new list). + if (firstVisibleIndex != newVisibleIndex) { + firstVisibleIndex = newVisibleIndex; + scrollOffset = newVisibleIndex * this._itemSize; + newRange.start = Math.floor(firstVisibleIndex); + } + newRange.end = Math.max(0, Math.min(dataLength, newRange.start + maxVisibleItems)); + } + const startBuffer = scrollOffset - newRange.start * this._itemSize; + if (startBuffer < this._minBufferPx && newRange.start != 0) { + const expandStart = Math.ceil((this._maxBufferPx - startBuffer) / this._itemSize); + newRange.start = Math.max(0, newRange.start - expandStart); + newRange.end = Math.min(dataLength, Math.ceil(firstVisibleIndex + (viewportSize + this._minBufferPx) / this._itemSize)); + } else { + const endBuffer = newRange.end * this._itemSize - (scrollOffset + viewportSize); + if (endBuffer < this._minBufferPx && newRange.end != dataLength) { + const expandEnd = Math.ceil((this._maxBufferPx - endBuffer) / this._itemSize); + if (expandEnd > 0) { + newRange.end = Math.min(dataLength, newRange.end + expandEnd); + newRange.start = Math.max(0, Math.floor(firstVisibleIndex - this._minBufferPx / this._itemSize)); + } + } + } + this._viewport.setRenderedRange(newRange); + this._viewport.setRenderedContentOffset(this._itemSize * newRange.start); + this._scrolledIndexChange.next(Math.floor(firstVisibleIndex)); + } +} +/** + * Provider factory for `FixedSizeVirtualScrollStrategy` that simply extracts the already created + * `FixedSizeVirtualScrollStrategy` from the given directive. + * @param fixedSizeDir The instance of `CdkFixedSizeVirtualScroll` to extract the + * `FixedSizeVirtualScrollStrategy` from. + */ +function _fixedSizeVirtualScrollStrategyFactory(fixedSizeDir) { + return fixedSizeDir._scrollStrategy; +} +/** A virtual scroll strategy that supports fixed-size items. */ +class CdkFixedSizeVirtualScroll { + constructor() { + this._itemSize = 20; + this._minBufferPx = 100; + this._maxBufferPx = 200; + /** The scroll strategy used by this directive. */ + this._scrollStrategy = new FixedSizeVirtualScrollStrategy(this.itemSize, this.minBufferPx, this.maxBufferPx); + } + /** The size of the items in the list (in pixels). */ + get itemSize() { + return this._itemSize; + } + set itemSize(value) { + this._itemSize = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(value); + } + /** + * The minimum amount of buffer rendered beyond the viewport (in pixels). + * If the amount of buffer dips below this number, more items will be rendered. Defaults to 100px. + */ + get minBufferPx() { + return this._minBufferPx; + } + set minBufferPx(value) { + this._minBufferPx = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(value); + } + /** + * The number of pixels worth of buffer to render for when rendering new items. Defaults to 200px. + */ + get maxBufferPx() { + return this._maxBufferPx; + } + set maxBufferPx(value) { + this._maxBufferPx = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(value); + } + ngOnChanges() { + this._scrollStrategy.updateItemAndBufferSize(this.itemSize, this.minBufferPx, this.maxBufferPx); + } + static #_ = this.ɵfac = function CdkFixedSizeVirtualScroll_Factory(t) { + return new (t || CdkFixedSizeVirtualScroll)(); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkFixedSizeVirtualScroll, + selectors: [["cdk-virtual-scroll-viewport", "itemSize", ""]], + inputs: { + itemSize: "itemSize", + minBufferPx: "minBufferPx", + maxBufferPx: "maxBufferPx" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: VIRTUAL_SCROLL_STRATEGY, + useFactory: _fixedSizeVirtualScrollStrategyFactory, + deps: [(0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.forwardRef)(() => CdkFixedSizeVirtualScroll)] + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵNgOnChangesFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkFixedSizeVirtualScroll, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: 'cdk-virtual-scroll-viewport[itemSize]', + standalone: true, + providers: [{ + provide: VIRTUAL_SCROLL_STRATEGY, + useFactory: _fixedSizeVirtualScrollStrategyFactory, + deps: [(0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.forwardRef)(() => CdkFixedSizeVirtualScroll)] + }] + }] + }], null, { + itemSize: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + minBufferPx: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + maxBufferPx: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); + +/** Time in ms to throttle the scrolling events by default. */ +const DEFAULT_SCROLL_TIME = 20; +/** + * Service contained all registered Scrollable references and emits an event when any one of the + * Scrollable references emit a scrolled event. + */ +class ScrollDispatcher { + constructor(_ngZone, _platform, document) { + this._ngZone = _ngZone; + this._platform = _platform; + /** Subject for notifying that a registered scrollable reference element has been scrolled. */ + this._scrolled = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Keeps track of the global `scroll` and `resize` subscriptions. */ + this._globalSubscription = null; + /** Keeps track of the amount of subscriptions to `scrolled`. Used for cleaning up afterwards. */ + this._scrolledCount = 0; + /** + * Map of all the scrollable references that are registered with the service and their + * scroll event subscriptions. + */ + this.scrollContainers = new Map(); + this._document = document; + } + /** + * Registers a scrollable instance with the service and listens for its scrolled events. When the + * scrollable is scrolled, the service emits the event to its scrolled observable. + * @param scrollable Scrollable instance to be registered. + */ + register(scrollable) { + if (!this.scrollContainers.has(scrollable)) { + this.scrollContainers.set(scrollable, scrollable.elementScrolled().subscribe(() => this._scrolled.next(scrollable))); + } + } + /** + * De-registers a Scrollable reference and unsubscribes from its scroll event observable. + * @param scrollable Scrollable instance to be deregistered. + */ + deregister(scrollable) { + const scrollableReference = this.scrollContainers.get(scrollable); + if (scrollableReference) { + scrollableReference.unsubscribe(); + this.scrollContainers.delete(scrollable); + } + } + /** + * Returns an observable that emits an event whenever any of the registered Scrollable + * references (or window, document, or body) fire a scrolled event. Can provide a time in ms + * to override the default "throttle" time. + * + * **Note:** in order to avoid hitting change detection for every scroll event, + * all of the events emitted from this stream will be run outside the Angular zone. + * If you need to update any data bindings as a result of a scroll event, you have + * to run the callback using `NgZone.run`. + */ + scrolled(auditTimeInMs = DEFAULT_SCROLL_TIME) { + if (!this._platform.isBrowser) { + return (0,rxjs__WEBPACK_IMPORTED_MODULE_4__.of)(); + } + return new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => { + if (!this._globalSubscription) { + this._addGlobalListener(); + } + // In the case of a 0ms delay, use an observable without auditTime + // since it does add a perceptible delay in processing overhead. + const subscription = auditTimeInMs > 0 ? this._scrolled.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.auditTime)(auditTimeInMs)).subscribe(observer) : this._scrolled.subscribe(observer); + this._scrolledCount++; + return () => { + subscription.unsubscribe(); + this._scrolledCount--; + if (!this._scrolledCount) { + this._removeGlobalListener(); + } + }; + }); + } + ngOnDestroy() { + this._removeGlobalListener(); + this.scrollContainers.forEach((_, container) => this.deregister(container)); + this._scrolled.complete(); + } + /** + * Returns an observable that emits whenever any of the + * scrollable ancestors of an element are scrolled. + * @param elementOrElementRef Element whose ancestors to listen for. + * @param auditTimeInMs Time to throttle the scroll events. + */ + ancestorScrolled(elementOrElementRef, auditTimeInMs) { + const ancestors = this.getAncestorScrollContainers(elementOrElementRef); + return this.scrolled(auditTimeInMs).pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_7__.filter)(target => { + return !target || ancestors.indexOf(target) > -1; + })); + } + /** Returns all registered Scrollables that contain the provided element. */ + getAncestorScrollContainers(elementOrElementRef) { + const scrollingContainers = []; + this.scrollContainers.forEach((_subscription, scrollable) => { + if (this._scrollableContainsElement(scrollable, elementOrElementRef)) { + scrollingContainers.push(scrollable); + } + }); + return scrollingContainers; + } + /** Use defaultView of injected document if available or fallback to global window reference */ + _getWindow() { + return this._document.defaultView || window; + } + /** Returns true if the element is contained within the provided Scrollable. */ + _scrollableContainsElement(scrollable, elementOrElementRef) { + let element = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceElement)(elementOrElementRef); + let scrollableElement = scrollable.getElementRef().nativeElement; + // Traverse through the element parents until we reach null, checking if any of the elements + // are the scrollable's element. + do { + if (element == scrollableElement) { + return true; + } + } while (element = element.parentElement); + return false; + } + /** Sets up the global scroll listeners. */ + _addGlobalListener() { + this._globalSubscription = this._ngZone.runOutsideAngular(() => { + const window = this._getWindow(); + return (0,rxjs__WEBPACK_IMPORTED_MODULE_8__.fromEvent)(window.document, 'scroll').subscribe(() => this._scrolled.next()); + }); + } + /** Cleans up the global scroll listener. */ + _removeGlobalListener() { + if (this._globalSubscription) { + this._globalSubscription.unsubscribe(); + this._globalSubscription = null; + } + } + static #_ = this.ɵfac = function ScrollDispatcher_Factory(t) { + return new (t || ScrollDispatcher)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ScrollDispatcher, + factory: ScrollDispatcher.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ScrollDispatcher, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT] + }] + }]; + }, null); +})(); + +/** + * Sends an event when the directive's element is scrolled. Registers itself with the + * ScrollDispatcher service to include itself as part of its collection of scrolling events that it + * can be listened to through the service. + */ +class CdkScrollable { + constructor(elementRef, scrollDispatcher, ngZone, dir) { + this.elementRef = elementRef; + this.scrollDispatcher = scrollDispatcher; + this.ngZone = ngZone; + this.dir = dir; + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + this._elementScrolled = new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => this.ngZone.runOutsideAngular(() => (0,rxjs__WEBPACK_IMPORTED_MODULE_8__.fromEvent)(this.elementRef.nativeElement, 'scroll').pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(observer))); + } + ngOnInit() { + this.scrollDispatcher.register(this); + } + ngOnDestroy() { + this.scrollDispatcher.deregister(this); + this._destroyed.next(); + this._destroyed.complete(); + } + /** Returns observable that emits when a scroll event is fired on the host element. */ + elementScrolled() { + return this._elementScrolled; + } + /** Gets the ElementRef for the viewport. */ + getElementRef() { + return this.elementRef; + } + /** + * Scrolls to the specified offsets. This is a normalized version of the browser's native scrollTo + * method, since browsers are not consistent about what scrollLeft means in RTL. For this method + * left and right always refer to the left and right side of the scrolling container irrespective + * of the layout direction. start and end refer to left and right in an LTR context and vice-versa + * in an RTL context. + * @param options specified the offsets to scroll to. + */ + scrollTo(options) { + const el = this.elementRef.nativeElement; + const isRtl = this.dir && this.dir.value == 'rtl'; + // Rewrite start & end offsets as right or left offsets. + if (options.left == null) { + options.left = isRtl ? options.end : options.start; + } + if (options.right == null) { + options.right = isRtl ? options.start : options.end; + } + // Rewrite the bottom offset as a top offset. + if (options.bottom != null) { + options.top = el.scrollHeight - el.clientHeight - options.bottom; + } + // Rewrite the right offset as a left offset. + if (isRtl && (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() != 0 /* RtlScrollAxisType.NORMAL */) { + if (options.left != null) { + options.right = el.scrollWidth - el.clientWidth - options.left; + } + if ((0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 2 /* RtlScrollAxisType.INVERTED */) { + options.left = options.right; + } else if ((0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 1 /* RtlScrollAxisType.NEGATED */) { + options.left = options.right ? -options.right : options.right; + } + } else { + if (options.right != null) { + options.left = el.scrollWidth - el.clientWidth - options.right; + } + } + this._applyScrollToOptions(options); + } + _applyScrollToOptions(options) { + const el = this.elementRef.nativeElement; + if ((0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.supportsScrollBehavior)()) { + el.scrollTo(options); + } else { + if (options.top != null) { + el.scrollTop = options.top; + } + if (options.left != null) { + el.scrollLeft = options.left; + } + } + } + /** + * Measures the scroll offset relative to the specified edge of the viewport. This method can be + * used instead of directly checking scrollLeft or scrollTop, since browsers are not consistent + * about what scrollLeft means in RTL. The values returned by this method are normalized such that + * left and right always refer to the left and right side of the scrolling container irrespective + * of the layout direction. start and end refer to left and right in an LTR context and vice-versa + * in an RTL context. + * @param from The edge to measure from. + */ + measureScrollOffset(from) { + const LEFT = 'left'; + const RIGHT = 'right'; + const el = this.elementRef.nativeElement; + if (from == 'top') { + return el.scrollTop; + } + if (from == 'bottom') { + return el.scrollHeight - el.clientHeight - el.scrollTop; + } + // Rewrite start & end as left or right offsets. + const isRtl = this.dir && this.dir.value == 'rtl'; + if (from == 'start') { + from = isRtl ? RIGHT : LEFT; + } else if (from == 'end') { + from = isRtl ? LEFT : RIGHT; + } + if (isRtl && (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 2 /* RtlScrollAxisType.INVERTED */) { + // For INVERTED, scrollLeft is (scrollWidth - clientWidth) when scrolled all the way left and + // 0 when scrolled all the way right. + if (from == LEFT) { + return el.scrollWidth - el.clientWidth - el.scrollLeft; + } else { + return el.scrollLeft; + } + } else if (isRtl && (0,_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.getRtlScrollAxisType)() == 1 /* RtlScrollAxisType.NEGATED */) { + // For NEGATED, scrollLeft is -(scrollWidth - clientWidth) when scrolled all the way left and + // 0 when scrolled all the way right. + if (from == LEFT) { + return el.scrollLeft + el.scrollWidth - el.clientWidth; + } else { + return -el.scrollLeft; + } + } else { + // For NORMAL, as well as non-RTL contexts, scrollLeft is 0 when scrolled all the way left and + // (scrollWidth - clientWidth) when scrolled all the way right. + if (from == LEFT) { + return el.scrollLeft; + } else { + return el.scrollWidth - el.clientWidth - el.scrollLeft; + } + } + } + static #_ = this.ɵfac = function CdkScrollable_Factory(t) { + return new (t || CdkScrollable)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkScrollable, + selectors: [["", "cdk-scrollable", ""], ["", "cdkScrollable", ""]], + standalone: true + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkScrollable, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdk-scrollable], [cdkScrollable]', + standalone: true + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); + +/** Time in ms to throttle the resize events by default. */ +const DEFAULT_RESIZE_TIME = 20; +/** + * Simple utility for getting the bounds of the browser viewport. + * @docs-private + */ +class ViewportRuler { + constructor(_platform, ngZone, document) { + this._platform = _platform; + /** Stream of viewport change events. */ + this._change = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Event listener that will be used to handle the viewport change events. */ + this._changeListener = event => { + this._change.next(event); + }; + this._document = document; + ngZone.runOutsideAngular(() => { + if (_platform.isBrowser) { + const window = this._getWindow(); + // Note that bind the events ourselves, rather than going through something like RxJS's + // `fromEvent` so that we can ensure that they're bound outside of the NgZone. + window.addEventListener('resize', this._changeListener); + window.addEventListener('orientationchange', this._changeListener); + } + // Clear the cached position so that the viewport is re-measured next time it is required. + // We don't need to keep track of the subscription, because it is completed on destroy. + this.change().subscribe(() => this._viewportSize = null); + }); + } + ngOnDestroy() { + if (this._platform.isBrowser) { + const window = this._getWindow(); + window.removeEventListener('resize', this._changeListener); + window.removeEventListener('orientationchange', this._changeListener); + } + this._change.complete(); + } + /** Returns the viewport's width and height. */ + getViewportSize() { + if (!this._viewportSize) { + this._updateViewportSize(); + } + const output = { + width: this._viewportSize.width, + height: this._viewportSize.height + }; + // If we're not on a browser, don't cache the size since it'll be mocked out anyway. + if (!this._platform.isBrowser) { + this._viewportSize = null; + } + return output; + } + /** Gets a ClientRect for the viewport's bounds. */ + getViewportRect() { + // Use the document element's bounding rect rather than the window scroll properties + // (e.g. pageYOffset, scrollY) due to in issue in Chrome and IE where window scroll + // properties and client coordinates (boundingClientRect, clientX/Y, etc.) are in different + // conceptual viewports. Under most circumstances these viewports are equivalent, but they + // can disagree when the page is pinch-zoomed (on devices that support touch). + // See https://bugs.chromium.org/p/chromium/issues/detail?id=489206#c4 + // We use the documentElement instead of the body because, by default (without a css reset) + // browsers typically give the document body an 8px margin, which is not included in + // getBoundingClientRect(). + const scrollPosition = this.getViewportScrollPosition(); + const { + width, + height + } = this.getViewportSize(); + return { + top: scrollPosition.top, + left: scrollPosition.left, + bottom: scrollPosition.top + height, + right: scrollPosition.left + width, + height, + width + }; + } + /** Gets the (top, left) scroll position of the viewport. */ + getViewportScrollPosition() { + // While we can get a reference to the fake document + // during SSR, it doesn't have getBoundingClientRect. + if (!this._platform.isBrowser) { + return { + top: 0, + left: 0 + }; + } + // The top-left-corner of the viewport is determined by the scroll position of the document + // body, normally just (scrollLeft, scrollTop). However, Chrome and Firefox disagree about + // whether `document.body` or `document.documentElement` is the scrolled element, so reading + // `scrollTop` and `scrollLeft` is inconsistent. However, using the bounding rect of + // `document.documentElement` works consistently, where the `top` and `left` values will + // equal negative the scroll position. + const document = this._document; + const window = this._getWindow(); + const documentElement = document.documentElement; + const documentRect = documentElement.getBoundingClientRect(); + const top = -documentRect.top || document.body.scrollTop || window.scrollY || documentElement.scrollTop || 0; + const left = -documentRect.left || document.body.scrollLeft || window.scrollX || documentElement.scrollLeft || 0; + return { + top, + left + }; + } + /** + * Returns a stream that emits whenever the size of the viewport changes. + * This stream emits outside of the Angular zone. + * @param throttleTime Time in milliseconds to throttle the stream. + */ + change(throttleTime = DEFAULT_RESIZE_TIME) { + return throttleTime > 0 ? this._change.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.auditTime)(throttleTime)) : this._change; + } + /** Use defaultView of injected document if available or fallback to global window reference */ + _getWindow() { + return this._document.defaultView || window; + } + /** Updates the cached viewport size. */ + _updateViewportSize() { + const window = this._getWindow(); + this._viewportSize = this._platform.isBrowser ? { + width: window.innerWidth, + height: window.innerHeight + } : { + width: 0, + height: 0 + }; + } + static #_ = this.ɵfac = function ViewportRuler_Factory(t) { + return new (t || ViewportRuler)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵinject"](_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT, 8)); + }; + static #_2 = this.ɵprov = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjectable"]({ + token: ViewportRuler, + factory: ViewportRuler.ɵfac, + providedIn: 'root' + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ViewportRuler, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Injectable, + args: [{ + providedIn: 'root' + }] + }], function () { + return [{ + type: _angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_common__WEBPACK_IMPORTED_MODULE_10__.DOCUMENT] + }] + }]; + }, null); +})(); +const VIRTUAL_SCROLLABLE = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.InjectionToken('VIRTUAL_SCROLLABLE'); +/** + * Extending the {@link CdkScrollable} to be used as scrolling container for virtual scrolling. + */ +class CdkVirtualScrollable extends CdkScrollable { + constructor(elementRef, scrollDispatcher, ngZone, dir) { + super(elementRef, scrollDispatcher, ngZone, dir); + } + /** + * Measure the viewport size for the provided orientation. + * + * @param orientation The orientation to measure the size from. + */ + measureViewportSize(orientation) { + const viewportEl = this.elementRef.nativeElement; + return orientation === 'horizontal' ? viewportEl.clientWidth : viewportEl.clientHeight; + } + static #_ = this.ɵfac = function CdkVirtualScrollable_Factory(t) { + return new (t || CdkVirtualScrollable)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualScrollable, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"]] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollable, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); + +/** Checks if the given ranges are equal. */ +function rangesEqual(r1, r2) { + return r1.start == r2.start && r1.end == r2.end; +} +/** + * Scheduler to be used for scroll events. Needs to fall back to + * something that doesn't rely on requestAnimationFrame on environments + * that don't support it (e.g. server-side rendering). + */ +const SCROLL_SCHEDULER = typeof requestAnimationFrame !== 'undefined' ? rxjs__WEBPACK_IMPORTED_MODULE_13__.animationFrameScheduler : rxjs__WEBPACK_IMPORTED_MODULE_14__.asapScheduler; +/** A viewport that virtualizes its scrolling with the help of `CdkVirtualForOf`. */ +class CdkVirtualScrollViewport extends CdkVirtualScrollable { + /** The direction the viewport scrolls. */ + get orientation() { + return this._orientation; + } + set orientation(orientation) { + if (this._orientation !== orientation) { + this._orientation = orientation; + this._calculateSpacerSize(); + } + } + /** + * Whether rendered items should persist in the DOM after scrolling out of view. By default, items + * will be removed. + */ + get appendOnly() { + return this._appendOnly; + } + set appendOnly(value) { + this._appendOnly = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceBooleanProperty)(value); + } + constructor(elementRef, _changeDetectorRef, ngZone, _scrollStrategy, dir, scrollDispatcher, viewportRuler, scrollable) { + super(elementRef, scrollDispatcher, ngZone, dir); + this.elementRef = elementRef; + this._changeDetectorRef = _changeDetectorRef; + this._scrollStrategy = _scrollStrategy; + this.scrollable = scrollable; + this._platform = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__.inject)(_angular_cdk_platform__WEBPACK_IMPORTED_MODULE_9__.Platform); + /** Emits when the viewport is detached from a CdkVirtualForOf. */ + this._detachedSubject = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Emits when the rendered range changes. */ + this._renderedRangeSubject = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + this._orientation = 'vertical'; + this._appendOnly = false; + // Note: we don't use the typical EventEmitter here because we need to subscribe to the scroll + // strategy lazily (i.e. only if the user is actually listening to the events). We do this because + // depending on how the strategy calculates the scrolled index, it may come at a cost to + // performance. + /** Emits when the index of the first element visible in the viewport changes. */ + this.scrolledIndexChange = new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => this._scrollStrategy.scrolledIndexChange.subscribe(index => Promise.resolve().then(() => this.ngZone.run(() => observer.next(index))))); + /** A stream that emits whenever the rendered range changes. */ + this.renderedRangeStream = this._renderedRangeSubject; + /** + * The total size of all content (in pixels), including content that is not currently rendered. + */ + this._totalContentSize = 0; + /** A string representing the `style.width` property value to be used for the spacer element. */ + this._totalContentWidth = ''; + /** A string representing the `style.height` property value to be used for the spacer element. */ + this._totalContentHeight = ''; + /** The currently rendered range of indices. */ + this._renderedRange = { + start: 0, + end: 0 + }; + /** The length of the data bound to this viewport (in number of items). */ + this._dataLength = 0; + /** The size of the viewport (in pixels). */ + this._viewportSize = 0; + /** The last rendered content offset that was set. */ + this._renderedContentOffset = 0; + /** + * Whether the last rendered content offset was to the end of the content (and therefore needs to + * be rewritten as an offset to the start of the content). + */ + this._renderedContentOffsetNeedsRewrite = false; + /** Whether there is a pending change detection cycle. */ + this._isChangeDetectionPending = false; + /** A list of functions to run after the next change detection cycle. */ + this._runAfterChangeDetection = []; + /** Subscription to changes in the viewport size. */ + this._viewportChanges = rxjs__WEBPACK_IMPORTED_MODULE_15__.Subscription.EMPTY; + if (!_scrollStrategy && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error('Error: cdk-virtual-scroll-viewport requires the "itemSize" property to be set.'); + } + this._viewportChanges = viewportRuler.change().subscribe(() => { + this.checkViewportSize(); + }); + if (!this.scrollable) { + // No scrollable is provided, so the virtual-scroll-viewport needs to become a scrollable + this.elementRef.nativeElement.classList.add('cdk-virtual-scrollable'); + this.scrollable = this; + } + } + ngOnInit() { + // Scrolling depends on the element dimensions which we can't get during SSR. + if (!this._platform.isBrowser) { + return; + } + if (this.scrollable === this) { + super.ngOnInit(); + } + // It's still too early to measure the viewport at this point. Deferring with a promise allows + // the Viewport to be rendered with the correct size before we measure. We run this outside the + // zone to avoid causing more change detection cycles. We handle the change detection loop + // ourselves instead. + this.ngZone.runOutsideAngular(() => Promise.resolve().then(() => { + this._measureViewportSize(); + this._scrollStrategy.attach(this); + this.scrollable.elementScrolled().pipe( + // Start off with a fake scroll event so we properly detect our initial position. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.startWith)(null), + // Collect multiple events into one until the next animation frame. This way if + // there are multiple scroll events in the same frame we only need to recheck + // our layout once. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_6__.auditTime)(0, SCROLL_SCHEDULER), + // Usually `elementScrolled` is completed when the scrollable is destroyed, but + // that may not be the case if a `CdkVirtualScrollableElement` is used so we have + // to unsubscribe here just in case. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(() => this._scrollStrategy.onContentScrolled()); + this._markChangeDetectionNeeded(); + })); + } + ngOnDestroy() { + this.detach(); + this._scrollStrategy.detach(); + // Complete all subjects + this._renderedRangeSubject.complete(); + this._detachedSubject.complete(); + this._viewportChanges.unsubscribe(); + super.ngOnDestroy(); + } + /** Attaches a `CdkVirtualScrollRepeater` to this viewport. */ + attach(forOf) { + if (this._forOf && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error('CdkVirtualScrollViewport is already attached.'); + } + // Subscribe to the data stream of the CdkVirtualForOf to keep track of when the data length + // changes. Run outside the zone to avoid triggering change detection, since we're managing the + // change detection loop ourselves. + this.ngZone.runOutsideAngular(() => { + this._forOf = forOf; + this._forOf.dataStream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._detachedSubject)).subscribe(data => { + const newLength = data.length; + if (newLength !== this._dataLength) { + this._dataLength = newLength; + this._scrollStrategy.onDataLengthChanged(); + } + this._doChangeDetection(); + }); + }); + } + /** Detaches the current `CdkVirtualForOf`. */ + detach() { + this._forOf = null; + this._detachedSubject.next(); + } + /** Gets the length of the data bound to this viewport (in number of items). */ + getDataLength() { + return this._dataLength; + } + /** Gets the size of the viewport (in pixels). */ + getViewportSize() { + return this._viewportSize; + } + // TODO(mmalerba): This is technically out of sync with what's really rendered until a render + // cycle happens. I'm being careful to only call it after the render cycle is complete and before + // setting it to something else, but its error prone and should probably be split into + // `pendingRange` and `renderedRange`, the latter reflecting whats actually in the DOM. + /** Get the current rendered range of items. */ + getRenderedRange() { + return this._renderedRange; + } + measureBoundingClientRectWithScrollOffset(from) { + return this.getElementRef().nativeElement.getBoundingClientRect()[from]; + } + /** + * Sets the total size of all content (in pixels), including content that is not currently + * rendered. + */ + setTotalContentSize(size) { + if (this._totalContentSize !== size) { + this._totalContentSize = size; + this._calculateSpacerSize(); + this._markChangeDetectionNeeded(); + } + } + /** Sets the currently rendered range of indices. */ + setRenderedRange(range) { + if (!rangesEqual(this._renderedRange, range)) { + if (this.appendOnly) { + range = { + start: 0, + end: Math.max(this._renderedRange.end, range.end) + }; + } + this._renderedRangeSubject.next(this._renderedRange = range); + this._markChangeDetectionNeeded(() => this._scrollStrategy.onContentRendered()); + } + } + /** + * Gets the offset from the start of the viewport to the start of the rendered data (in pixels). + */ + getOffsetToRenderedContentStart() { + return this._renderedContentOffsetNeedsRewrite ? null : this._renderedContentOffset; + } + /** + * Sets the offset from the start of the viewport to either the start or end of the rendered data + * (in pixels). + */ + setRenderedContentOffset(offset, to = 'to-start') { + // In appendOnly, we always start from the top + offset = this.appendOnly && to === 'to-start' ? 0 : offset; + // For a horizontal viewport in a right-to-left language we need to translate along the x-axis + // in the negative direction. + const isRtl = this.dir && this.dir.value == 'rtl'; + const isHorizontal = this.orientation == 'horizontal'; + const axis = isHorizontal ? 'X' : 'Y'; + const axisDirection = isHorizontal && isRtl ? -1 : 1; + let transform = `translate${axis}(${Number(axisDirection * offset)}px)`; + this._renderedContentOffset = offset; + if (to === 'to-end') { + transform += ` translate${axis}(-100%)`; + // The viewport should rewrite this as a `to-start` offset on the next render cycle. Otherwise + // elements will appear to expand in the wrong direction (e.g. `mat-expansion-panel` would + // expand upward). + this._renderedContentOffsetNeedsRewrite = true; + } + if (this._renderedContentTransform != transform) { + // We know this value is safe because we parse `offset` with `Number()` before passing it + // into the string. + this._renderedContentTransform = transform; + this._markChangeDetectionNeeded(() => { + if (this._renderedContentOffsetNeedsRewrite) { + this._renderedContentOffset -= this.measureRenderedContentSize(); + this._renderedContentOffsetNeedsRewrite = false; + this.setRenderedContentOffset(this._renderedContentOffset); + } else { + this._scrollStrategy.onRenderedOffsetChanged(); + } + }); + } + } + /** + * Scrolls to the given offset from the start of the viewport. Please note that this is not always + * the same as setting `scrollTop` or `scrollLeft`. In a horizontal viewport with right-to-left + * direction, this would be the equivalent of setting a fictional `scrollRight` property. + * @param offset The offset to scroll to. + * @param behavior The ScrollBehavior to use when scrolling. Default is behavior is `auto`. + */ + scrollToOffset(offset, behavior = 'auto') { + const options = { + behavior + }; + if (this.orientation === 'horizontal') { + options.start = offset; + } else { + options.top = offset; + } + this.scrollable.scrollTo(options); + } + /** + * Scrolls to the offset for the given index. + * @param index The index of the element to scroll to. + * @param behavior The ScrollBehavior to use when scrolling. Default is behavior is `auto`. + */ + scrollToIndex(index, behavior = 'auto') { + this._scrollStrategy.scrollToIndex(index, behavior); + } + /** + * Gets the current scroll offset from the start of the scrollable (in pixels). + * @param from The edge to measure the offset from. Defaults to 'top' in vertical mode and 'start' + * in horizontal mode. + */ + measureScrollOffset(from) { + // This is to break the call cycle + let measureScrollOffset; + if (this.scrollable == this) { + measureScrollOffset = _from => super.measureScrollOffset(_from); + } else { + measureScrollOffset = _from => this.scrollable.measureScrollOffset(_from); + } + return Math.max(0, measureScrollOffset(from ?? (this.orientation === 'horizontal' ? 'start' : 'top')) - this.measureViewportOffset()); + } + /** + * Measures the offset of the viewport from the scrolling container + * @param from The edge to measure from. + */ + measureViewportOffset(from) { + let fromRect; + const LEFT = 'left'; + const RIGHT = 'right'; + const isRtl = this.dir?.value == 'rtl'; + if (from == 'start') { + fromRect = isRtl ? RIGHT : LEFT; + } else if (from == 'end') { + fromRect = isRtl ? LEFT : RIGHT; + } else if (from) { + fromRect = from; + } else { + fromRect = this.orientation === 'horizontal' ? 'left' : 'top'; + } + const scrollerClientRect = this.scrollable.measureBoundingClientRectWithScrollOffset(fromRect); + const viewportClientRect = this.elementRef.nativeElement.getBoundingClientRect()[fromRect]; + return viewportClientRect - scrollerClientRect; + } + /** Measure the combined size of all of the rendered items. */ + measureRenderedContentSize() { + const contentEl = this._contentWrapper.nativeElement; + return this.orientation === 'horizontal' ? contentEl.offsetWidth : contentEl.offsetHeight; + } + /** + * Measure the total combined size of the given range. Throws if the range includes items that are + * not rendered. + */ + measureRangeSize(range) { + if (!this._forOf) { + return 0; + } + return this._forOf.measureRangeSize(range, this.orientation); + } + /** Update the viewport dimensions and re-render. */ + checkViewportSize() { + // TODO: Cleanup later when add logic for handling content resize + this._measureViewportSize(); + this._scrollStrategy.onDataLengthChanged(); + } + /** Measure the viewport size. */ + _measureViewportSize() { + this._viewportSize = this.scrollable.measureViewportSize(this.orientation); + } + /** Queue up change detection to run. */ + _markChangeDetectionNeeded(runAfter) { + if (runAfter) { + this._runAfterChangeDetection.push(runAfter); + } + // Use a Promise to batch together calls to `_doChangeDetection`. This way if we set a bunch of + // properties sequentially we only have to run `_doChangeDetection` once at the end. + if (!this._isChangeDetectionPending) { + this._isChangeDetectionPending = true; + this.ngZone.runOutsideAngular(() => Promise.resolve().then(() => { + this._doChangeDetection(); + })); + } + } + /** Run change detection. */ + _doChangeDetection() { + this._isChangeDetectionPending = false; + // Apply the content transform. The transform can't be set via an Angular binding because + // bypassSecurityTrustStyle is banned in Google. However the value is safe, it's composed of + // string literals, a variable that can only be 'X' or 'Y', and user input that is run through + // the `Number` function first to coerce it to a numeric value. + this._contentWrapper.nativeElement.style.transform = this._renderedContentTransform; + // Apply changes to Angular bindings. Note: We must call `markForCheck` to run change detection + // from the root, since the repeated items are content projected in. Calling `detectChanges` + // instead does not properly check the projected content. + this.ngZone.run(() => this._changeDetectorRef.markForCheck()); + const runAfterChangeDetection = this._runAfterChangeDetection; + this._runAfterChangeDetection = []; + for (const fn of runAfterChangeDetection) { + fn(); + } + } + /** Calculates the `style.width` and `style.height` for the spacer element. */ + _calculateSpacerSize() { + this._totalContentHeight = this.orientation === 'horizontal' ? '' : `${this._totalContentSize}px`; + this._totalContentWidth = this.orientation === 'horizontal' ? `${this._totalContentSize}px` : ''; + } + static #_ = this.ɵfac = function CdkVirtualScrollViewport_Factory(t) { + return new (t || CdkVirtualScrollViewport)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](VIRTUAL_SCROLL_STRATEGY, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ViewportRuler), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](VIRTUAL_SCROLLABLE, 8)); + }; + static #_2 = this.ɵcmp = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineComponent"]({ + type: CdkVirtualScrollViewport, + selectors: [["cdk-virtual-scroll-viewport"]], + viewQuery: function CdkVirtualScrollViewport_Query(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵviewQuery"](_c0, 7); + } + if (rf & 2) { + let _t; + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵloadQuery"]()) && (ctx._contentWrapper = _t.first); + } + }, + hostAttrs: [1, "cdk-virtual-scroll-viewport"], + hostVars: 4, + hostBindings: function CdkVirtualScrollViewport_HostBindings(rf, ctx) { + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵclassProp"]("cdk-virtual-scroll-orientation-horizontal", ctx.orientation === "horizontal")("cdk-virtual-scroll-orientation-vertical", ctx.orientation !== "horizontal"); + } + }, + inputs: { + orientation: "orientation", + appendOnly: "appendOnly" + }, + outputs: { + scrolledIndexChange: "scrolledIndexChange" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: CdkScrollable, + useFactory: (virtualScrollable, viewport) => virtualScrollable || viewport, + deps: [[new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional(), new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject(VIRTUAL_SCROLLABLE)], CdkVirtualScrollViewport] + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"], _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵStandaloneFeature"]], + ngContentSelectors: _c1, + decls: 4, + vars: 4, + consts: [[1, "cdk-virtual-scroll-content-wrapper"], ["contentWrapper", ""], [1, "cdk-virtual-scroll-spacer"]], + template: function CdkVirtualScrollViewport_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵprojectionDef"](); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementStart"](0, "div", 0, 1); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵprojection"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵelement"](3, "div", 2); + } + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵstyleProp"]("width", ctx._totalContentWidth)("height", ctx._totalContentHeight); + } + }, + styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;transform:translateZ(0)}.cdk-virtual-scrollable{overflow:auto;will-change:scroll-position;contain:strict;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{height:1px;transform-origin:0 0;flex:0 0 auto}[dir=rtl] .cdk-virtual-scroll-spacer{transform-origin:100% 0}"], + encapsulation: 2, + changeDetection: 0 + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollViewport, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Component, + args: [{ + selector: 'cdk-virtual-scroll-viewport', + host: { + 'class': 'cdk-virtual-scroll-viewport', + '[class.cdk-virtual-scroll-orientation-horizontal]': 'orientation === "horizontal"', + '[class.cdk-virtual-scroll-orientation-vertical]': 'orientation !== "horizontal"' + }, + encapsulation: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewEncapsulation.None, + changeDetection: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ChangeDetectionStrategy.OnPush, + standalone: true, + providers: [{ + provide: CdkScrollable, + useFactory: (virtualScrollable, viewport) => virtualScrollable || viewport, + deps: [[new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional(), new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject(VIRTUAL_SCROLLABLE)], CdkVirtualScrollViewport] + }], + template: "\n
\n \n
\n\n
\n", + styles: ["cdk-virtual-scroll-viewport{display:block;position:relative;transform:translateZ(0)}.cdk-virtual-scrollable{overflow:auto;will-change:scroll-position;contain:strict;-webkit-overflow-scrolling:touch}.cdk-virtual-scroll-content-wrapper{position:absolute;top:0;left:0;contain:content}[dir=rtl] .cdk-virtual-scroll-content-wrapper{right:0;left:auto}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper{min-height:100%}.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-horizontal .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-left:0;padding-right:0;margin-left:0;margin-right:0;border-left-width:0;border-right-width:0;outline:none}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper{min-width:100%}.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>dl:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ol:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>table:not([cdkVirtualFor]),.cdk-virtual-scroll-orientation-vertical .cdk-virtual-scroll-content-wrapper>ul:not([cdkVirtualFor]){padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;border-top-width:0;border-bottom-width:0;outline:none}.cdk-virtual-scroll-spacer{height:1px;transform-origin:0 0;flex:0 0 auto}[dir=rtl] .cdk-virtual-scroll-spacer{transform-origin:100% 0}"] + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ChangeDetectorRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: undefined, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [VIRTUAL_SCROLL_STRATEGY] + }] + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }, { + type: ScrollDispatcher + }, { + type: ViewportRuler + }, { + type: CdkVirtualScrollable, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [VIRTUAL_SCROLLABLE] + }] + }]; + }, { + orientation: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + appendOnly: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + scrolledIndexChange: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Output + }], + _contentWrapper: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewChild, + args: ['contentWrapper', { + static: true + }] + }] + }); +})(); + +/** Helper to extract the offset of a DOM Node in a certain direction. */ +function getOffset(orientation, direction, node) { + const el = node; + if (!el.getBoundingClientRect) { + return 0; } - subscriber.complete(); -}; - -/***/ }), - -/***/ 8883: -/*!*************************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToIterable.js ***! - \*************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToIterable: () => (/* binding */ subscribeToIterable) -/* harmony export */ }); -/* harmony import */ var _symbol_iterator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/iterator */ 6603); - -const subscribeToIterable = iterable => subscriber => { - const iterator = iterable[_symbol_iterator__WEBPACK_IMPORTED_MODULE_0__.iterator](); - do { - let item; - try { - item = iterator.next(); - } catch (err) { - subscriber.error(err); - return subscriber; - } - if (item.done) { - subscriber.complete(); - break; + const rect = el.getBoundingClientRect(); + if (orientation === 'horizontal') { + return direction === 'start' ? rect.left : rect.right; + } + return direction === 'start' ? rect.top : rect.bottom; +} +/** + * A directive similar to `ngForOf` to be used for rendering data inside a virtual scrolling + * container. + */ +class CdkVirtualForOf { + /** The DataSource to display. */ + get cdkVirtualForOf() { + return this._cdkVirtualForOf; + } + set cdkVirtualForOf(value) { + this._cdkVirtualForOf = value; + if ((0,_angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__.isDataSource)(value)) { + this._dataSourceChanges.next(value); + } else { + // If value is an an NgIterable, convert it to an array. + this._dataSourceChanges.next(new _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__.ArrayDataSource((0,rxjs__WEBPACK_IMPORTED_MODULE_18__.isObservable)(value) ? value : Array.from(value || []))); } - subscriber.next(item.value); - if (subscriber.closed) { - break; + } + /** + * The `TrackByFunction` to use for tracking changes. The `TrackByFunction` takes the index and + * the item and produces a value to be used as the item's identity when tracking changes. + */ + get cdkVirtualForTrackBy() { + return this._cdkVirtualForTrackBy; + } + set cdkVirtualForTrackBy(fn) { + this._needsUpdate = true; + this._cdkVirtualForTrackBy = fn ? (index, item) => fn(index + (this._renderedRange ? this._renderedRange.start : 0), item) : undefined; + } + /** The template used to stamp out new elements. */ + set cdkVirtualForTemplate(value) { + if (value) { + this._needsUpdate = true; + this._template = value; } - } while (true); - if (typeof iterator.return === 'function') { - subscriber.add(() => { - if (iterator.return) { - iterator.return(); + } + /** + * The size of the cache used to store templates that are not being used for re-use later. + * Setting the cache size to `0` will disable caching. Defaults to 20 templates. + */ + get cdkVirtualForTemplateCacheSize() { + return this._viewRepeater.viewCacheSize; + } + set cdkVirtualForTemplateCacheSize(size) { + this._viewRepeater.viewCacheSize = (0,_angular_cdk_coercion__WEBPACK_IMPORTED_MODULE_3__.coerceNumberProperty)(size); + } + constructor( /** The view container to add items to. */ + _viewContainerRef, /** The template to use when stamping out new items. */ + _template, /** The set of available differs. */ + _differs, /** The strategy used to render items in the virtual scroll viewport. */ + _viewRepeater, /** The virtual scrolling viewport that these items are being rendered in. */ + _viewport, ngZone) { + this._viewContainerRef = _viewContainerRef; + this._template = _template; + this._differs = _differs; + this._viewRepeater = _viewRepeater; + this._viewport = _viewport; + /** Emits when the rendered view of the data changes. */ + this.viewChange = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Subject that emits when a new DataSource instance is given. */ + this._dataSourceChanges = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + /** Emits whenever the data in the current DataSource changes. */ + this.dataStream = this._dataSourceChanges.pipe( + // Start off with null `DataSource`. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_16__.startWith)(null), + // Bundle up the previous and current data sources so we can work with both. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_19__.pairwise)(), + // Use `_changeDataSource` to disconnect from the previous data source and connect to the + // new one, passing back a stream of data changes which we run through `switchMap` to give + // us a data stream that emits the latest data from whatever the current `DataSource` is. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_20__.switchMap)(([prev, cur]) => this._changeDataSource(prev, cur)), + // Replay the last emitted data when someone subscribes. + (0,rxjs_operators__WEBPACK_IMPORTED_MODULE_21__.shareReplay)(1)); + /** The differ used to calculate changes to the data. */ + this._differ = null; + /** Whether the rendered data should be updated during the next ngDoCheck cycle. */ + this._needsUpdate = false; + this._destroyed = new rxjs__WEBPACK_IMPORTED_MODULE_1__.Subject(); + this.dataStream.subscribe(data => { + this._data = data; + this._onRenderedDataChange(); + }); + this._viewport.renderedRangeStream.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(range => { + this._renderedRange = range; + if (this.viewChange.observers.length) { + ngZone.run(() => this.viewChange.next(this._renderedRange)); } + this._onRenderedDataChange(); }); + this._viewport.attach(this); } - return subscriber; -}; - -/***/ }), - -/***/ 3746: -/*!***************************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToObservable.js ***! - \***************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToObservable: () => (/* binding */ subscribeToObservable) -/* harmony export */ }); -/* harmony import */ var _symbol_observable__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../symbol/observable */ 5129); - -const subscribeToObservable = obj => subscriber => { - const obs = obj[_symbol_observable__WEBPACK_IMPORTED_MODULE_0__.observable](); - if (typeof obs.subscribe !== 'function') { - throw new TypeError('Provided object does not correctly implement Symbol.observable'); - } else { - return obs.subscribe(subscriber); + /** + * Measures the combined size (width for horizontal orientation, height for vertical) of all items + * in the specified range. Throws an error if the range includes items that are not currently + * rendered. + */ + measureRangeSize(range, orientation) { + if (range.start >= range.end) { + return 0; + } + if ((range.start < this._renderedRange.start || range.end > this._renderedRange.end) && (typeof ngDevMode === 'undefined' || ngDevMode)) { + throw Error(`Error: attempted to measure an item that isn't rendered.`); + } + // The index into the list of rendered views for the first item in the range. + const renderedStartIndex = range.start - this._renderedRange.start; + // The length of the range we're measuring. + const rangeLen = range.end - range.start; + // Loop over all the views, find the first and land node and compute the size by subtracting + // the top of the first node from the bottom of the last one. + let firstNode; + let lastNode; + // Find the first node by starting from the beginning and going forwards. + for (let i = 0; i < rangeLen; i++) { + const view = this._viewContainerRef.get(i + renderedStartIndex); + if (view && view.rootNodes.length) { + firstNode = lastNode = view.rootNodes[0]; + break; + } + } + // Find the last node by starting from the end and going backwards. + for (let i = rangeLen - 1; i > -1; i--) { + const view = this._viewContainerRef.get(i + renderedStartIndex); + if (view && view.rootNodes.length) { + lastNode = view.rootNodes[view.rootNodes.length - 1]; + break; + } + } + return firstNode && lastNode ? getOffset(orientation, 'end', lastNode) - getOffset(orientation, 'start', firstNode) : 0; } -}; - -/***/ }), - -/***/ 9757: -/*!************************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/subscribeToPromise.js ***! - \************************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ subscribeToPromise: () => (/* binding */ subscribeToPromise) -/* harmony export */ }); -/* harmony import */ var _hostReportError__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./hostReportError */ 8722); - -const subscribeToPromise = promise => subscriber => { - promise.then(value => { - if (!subscriber.closed) { - subscriber.next(value); - subscriber.complete(); + ngDoCheck() { + if (this._differ && this._needsUpdate) { + // TODO(mmalerba): We should differentiate needs update due to scrolling and a new portion of + // this list being rendered (can use simpler algorithm) vs needs update due to data actually + // changing (need to do this diff). + const changes = this._differ.diff(this._renderedItems); + if (!changes) { + this._updateContext(); + } else { + this._applyChanges(changes); + } + this._needsUpdate = false; } - }, err => subscriber.error(err)).then(null, _hostReportError__WEBPACK_IMPORTED_MODULE_0__.hostReportError); - return subscriber; -}; - -/***/ }), - -/***/ 6920: -/*!******************************************************************!*\ - !*** ./node_modules/rxjs/_esm2015/internal/util/toSubscriber.js ***! - \******************************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ toSubscriber: () => (/* binding */ toSubscriber) -/* harmony export */ }); -/* harmony import */ var _Subscriber__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Subscriber */ 5142); -/* harmony import */ var _symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../symbol/rxSubscriber */ 1999); -/* harmony import */ var _Observer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Observer */ 6195); - - - -function toSubscriber(nextOrObserver, error, complete) { - if (nextOrObserver) { - if (nextOrObserver instanceof _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber) { - return nextOrObserver; + } + ngOnDestroy() { + this._viewport.detach(); + this._dataSourceChanges.next(undefined); + this._dataSourceChanges.complete(); + this.viewChange.complete(); + this._destroyed.next(); + this._destroyed.complete(); + this._viewRepeater.detach(); + } + /** React to scroll state changes in the viewport. */ + _onRenderedDataChange() { + if (!this._renderedRange) { + return; } - if (nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber]) { - return nextOrObserver[_symbol_rxSubscriber__WEBPACK_IMPORTED_MODULE_1__.rxSubscriber](); + this._renderedItems = this._data.slice(this._renderedRange.start, this._renderedRange.end); + if (!this._differ) { + // Use a wrapper function for the `trackBy` so any new values are + // picked up automatically without having to recreate the differ. + this._differ = this._differs.find(this._renderedItems).create((index, item) => { + return this.cdkVirtualForTrackBy ? this.cdkVirtualForTrackBy(index, item) : item; + }); } + this._needsUpdate = true; } - if (!nextOrObserver && !error && !complete) { - return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(_Observer__WEBPACK_IMPORTED_MODULE_2__.empty); + /** Swap out one `DataSource` for another. */ + _changeDataSource(oldDs, newDs) { + if (oldDs) { + oldDs.disconnect(this); + } + this._needsUpdate = true; + return newDs ? newDs.connect(this) : (0,rxjs__WEBPACK_IMPORTED_MODULE_4__.of)(); } - return new _Subscriber__WEBPACK_IMPORTED_MODULE_0__.Subscriber(nextOrObserver, error, complete); -} - -/***/ }), - -/***/ 9210: -/*!******************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/native.js ***! - \******************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({ - randomUUID -}); - -/***/ }), - -/***/ 9772: -/*!*****************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/regex.js ***! - \*****************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); - -/***/ }), - -/***/ 7948: -/*!***************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/rng.js ***! - \***************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (/* binding */ rng) -/* harmony export */ }); -// Unique ID creation requires a high quality random # generator. In the browser we therefore -// require the crypto API and do not support built-in fallback to lower quality random number -// generators (like Math.random()). -let getRandomValues; -const rnds8 = new Uint8Array(16); -function rng() { - // lazy load so that environments that need to polyfill have a chance to do so - if (!getRandomValues) { - // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. - getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto); - if (!getRandomValues) { - throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); + /** Update the `CdkVirtualForOfContext` for all views. */ + _updateContext() { + const count = this._data.length; + let i = this._viewContainerRef.length; + while (i--) { + const view = this._viewContainerRef.get(i); + view.context.index = this._renderedRange.start + i; + view.context.count = count; + this._updateComputedContextProperties(view.context); + view.detectChanges(); } } - return getRandomValues(rnds8); + /** Apply changes to the DOM. */ + _applyChanges(changes) { + this._viewRepeater.applyChanges(changes, this._viewContainerRef, (record, _adjustedPreviousIndex, currentIndex) => this._getEmbeddedViewArgs(record, currentIndex), record => record.item); + // Update $implicit for any items that had an identity change. + changes.forEachIdentityChange(record => { + const view = this._viewContainerRef.get(record.currentIndex); + view.context.$implicit = record.item; + }); + // Update the context variables on all items. + const count = this._data.length; + let i = this._viewContainerRef.length; + while (i--) { + const view = this._viewContainerRef.get(i); + view.context.index = this._renderedRange.start + i; + view.context.count = count; + this._updateComputedContextProperties(view.context); + } + } + /** Update the computed properties on the `CdkVirtualForOfContext`. */ + _updateComputedContextProperties(context) { + context.first = context.index === 0; + context.last = context.index === context.count - 1; + context.even = context.index % 2 === 0; + context.odd = !context.even; + } + _getEmbeddedViewArgs(record, index) { + // Note that it's important that we insert the item directly at the proper index, + // rather than inserting it and the moving it in place, because if there's a directive + // on the same node that injects the `ViewContainerRef`, Angular will insert another + // comment node which can throw off the move when it's being repeated for all items. + return { + templateRef: this._template, + context: { + $implicit: record.item, + // It's guaranteed that the iterable is not "undefined" or "null" because we only + // generate views for elements if the "cdkVirtualForOf" iterable has elements. + cdkVirtualForOf: this._cdkVirtualForOf, + index: -1, + count: -1, + first: false, + last: false, + odd: false, + even: false + }, + index + }; + } + static #_ = this.ɵfac = function CdkVirtualForOf_Factory(t) { + return new (t || CdkVirtualForOf)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewContainerRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.TemplateRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.IterableDiffers), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](CdkVirtualScrollViewport, 4), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualForOf, + selectors: [["", "cdkVirtualFor", "", "cdkVirtualForOf", ""]], + inputs: { + cdkVirtualForOf: "cdkVirtualForOf", + cdkVirtualForTrackBy: "cdkVirtualForTrackBy", + cdkVirtualForTemplate: "cdkVirtualForTemplate", + cdkVirtualForTemplateCacheSize: "cdkVirtualForTemplateCacheSize" + }, + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY, + useClass: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._RecycleViewRepeaterStrategy + }])] + }); } - -/***/ }), - -/***/ 564: -/*!*********************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/stringify.js ***! - \*********************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__), -/* harmony export */ unsafeStringify: () => (/* binding */ unsafeStringify) -/* harmony export */ }); -/* harmony import */ var _validate_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./validate.js */ 9359); +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualForOf, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkVirtualFor][cdkVirtualForOf]', + providers: [{ + provide: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY, + useClass: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._RecycleViewRepeaterStrategy + }], + standalone: true + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ViewContainerRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.TemplateRef + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.IterableDiffers + }, { + type: _angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._RecycleViewRepeaterStrategy, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject, + args: [_angular_cdk_collections__WEBPACK_IMPORTED_MODULE_17__._VIEW_REPEATER_STRATEGY] + }] + }, { + type: CdkVirtualScrollViewport, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.SkipSelf + }] + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }]; + }, { + cdkVirtualForOf: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + cdkVirtualForTrackBy: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + cdkVirtualForTemplate: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }], + cdkVirtualForTemplateCacheSize: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input + }] + }); +})(); /** - * Convert array of 16 byte values to UUID string format of the form: - * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + * Provides a virtual scrollable for the element it is attached to. */ - -const byteToHex = []; -for (let i = 0; i < 256; ++i) { - byteToHex.push((i + 0x100).toString(16).slice(1)); -} -function unsafeStringify(arr, offset = 0) { - // Note: Be careful editing this code! It's been tuned for performance - // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 - return byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]; -} -function stringify(arr, offset = 0) { - const uuid = unsafeStringify(arr, offset); // Consistency check for valid UUID. If this throws, it's likely due to one - // of the following: - // - One or more input array values don't map to a hex octet (leading to - // "undefined" in the uuid) - // - Invalid input values for the RFC `version` or `variant` fields - - if (!(0,_validate_js__WEBPACK_IMPORTED_MODULE_0__["default"])(uuid)) { - throw TypeError('Stringified UUID is invalid'); +class CdkVirtualScrollableElement extends CdkVirtualScrollable { + constructor(elementRef, scrollDispatcher, ngZone, dir) { + super(elementRef, scrollDispatcher, ngZone, dir); } - return uuid; + measureBoundingClientRectWithScrollOffset(from) { + return this.getElementRef().nativeElement.getBoundingClientRect()[from] - this.measureScrollOffset(from); + } + static #_ = this.ɵfac = function CdkVirtualScrollableElement_Factory(t) { + return new (t || CdkVirtualScrollableElement)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualScrollableElement, + selectors: [["", "cdkVirtualScrollingElement", ""]], + hostAttrs: [1, "cdk-virtual-scrollable"], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableElement + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"]] + }); } -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (stringify); - -/***/ }), - -/***/ 4289: -/*!**************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/v4.js ***! - \**************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { - -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _native_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./native.js */ 9210); -/* harmony import */ var _rng_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rng.js */ 7948); -/* harmony import */ var _stringify_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./stringify.js */ 564); - - +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollableElement, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: '[cdkVirtualScrollingElement]', + providers: [{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableElement + }], + standalone: true, + host: { + 'class': 'cdk-virtual-scrollable' + } + }] + }], function () { + return [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef + }, { + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); -function v4(options, buf, offset) { - if (_native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID && !buf && !options) { - return _native_js__WEBPACK_IMPORTED_MODULE_0__["default"].randomUUID(); +/** + * Provides as virtual scrollable for the global / window scrollbar. + */ +class CdkVirtualScrollableWindow extends CdkVirtualScrollable { + constructor(scrollDispatcher, ngZone, dir) { + super(new _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef(document.documentElement), scrollDispatcher, ngZone, dir); + this._elementScrolled = new rxjs__WEBPACK_IMPORTED_MODULE_5__.Observable(observer => this.ngZone.runOutsideAngular(() => (0,rxjs__WEBPACK_IMPORTED_MODULE_8__.fromEvent)(document, 'scroll').pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_11__.takeUntil)(this._destroyed)).subscribe(observer))); } - options = options || {}; - const rnds = options.random || (options.rng || _rng_js__WEBPACK_IMPORTED_MODULE_1__["default"])(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` - - rnds[6] = rnds[6] & 0x0f | 0x40; - rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided - - if (buf) { - offset = offset || 0; - for (let i = 0; i < 16; ++i) { - buf[offset + i] = rnds[i]; - } - return buf; + measureBoundingClientRectWithScrollOffset(from) { + return this.getElementRef().nativeElement.getBoundingClientRect()[from]; } - return (0,_stringify_js__WEBPACK_IMPORTED_MODULE_2__.unsafeStringify)(rnds); + static #_ = this.ɵfac = function CdkVirtualScrollableWindow_Factory(t) { + return new (t || CdkVirtualScrollableWindow)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](ScrollDispatcher), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, 8)); + }; + static #_2 = this.ɵdir = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CdkVirtualScrollableWindow, + selectors: [["cdk-virtual-scroll-viewport", "scrollWindow", ""]], + standalone: true, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵProvidersFeature"]([{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableWindow + }]), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵInheritDefinitionFeature"]] + }); } -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (v4); - -/***/ }), +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkVirtualScrollableWindow, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Directive, + args: [{ + selector: 'cdk-virtual-scroll-viewport[scrollWindow]', + providers: [{ + provide: VIRTUAL_SCROLLABLE, + useExisting: CdkVirtualScrollableWindow + }], + standalone: true + }] + }], function () { + return [{ + type: ScrollDispatcher + }, { + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgZone + }, { + type: _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.Directionality, + decorators: [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Optional + }] + }]; + }, null); +})(); +class CdkScrollableModule { + static #_ = this.ɵfac = function CdkScrollableModule_Factory(t) { + return new (t || CdkScrollableModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: CdkScrollableModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({}); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](CdkScrollableModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + exports: [CdkScrollable], + imports: [CdkScrollable] + }] + }], null, null); +})(); +/** + * @docs-primary-export + */ +class ScrollingModule { + static #_ = this.ɵfac = function ScrollingModule_Factory(t) { + return new (t || ScrollingModule)(); + }; + static #_2 = this.ɵmod = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineNgModule"]({ + type: ScrollingModule + }); + static #_3 = this.ɵinj = /* @__PURE__ */_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineInjector"]({ + imports: [_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule, _angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule] + }); +} +(function () { + (typeof ngDevMode === "undefined" || ngDevMode) && _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵsetClassMetadata"](ScrollingModule, [{ + type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule, + args: [{ + imports: [_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule, CdkVirtualScrollViewport, CdkFixedSizeVirtualScroll, CdkVirtualForOf, CdkVirtualScrollableWindow, CdkVirtualScrollableElement], + exports: [_angular_cdk_bidi__WEBPACK_IMPORTED_MODULE_12__.BidiModule, CdkScrollableModule, CdkFixedSizeVirtualScroll, CdkVirtualForOf, CdkVirtualScrollViewport, CdkVirtualScrollableWindow, CdkVirtualScrollableElement] + }] + }], null, null); +})(); -/***/ 9359: -/*!********************************************************!*\ - !*** ./node_modules/uuid/dist/esm-browser/validate.js ***! - \********************************************************/ -/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { +/** + * Generated bundle index. Do not edit. + */ -"use strict"; -__webpack_require__.r(__webpack_exports__); -/* harmony export */ __webpack_require__.d(__webpack_exports__, { -/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) -/* harmony export */ }); -/* harmony import */ var _regex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./regex.js */ 9772); -function validate(uuid) { - return typeof uuid === 'string' && _regex_js__WEBPACK_IMPORTED_MODULE_0__["default"].test(uuid); -} -/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (validate); /***/ }), -/***/ 6575: +/***/ 26575: /*!**********************************************************!*\ !*** ./node_modules/@angular/common/fesm2022/common.mjs ***! \**********************************************************/ @@ -20442,7 +31850,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵparseCookieValue": () => (/* binding */ parseCookieValue), /* harmony export */ "ɵsetRootDomAdapter": () => (/* binding */ setRootDomAdapter) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -21928,7 +33336,6 @@ function getLocaleExtraDayPeriods(locale, formStyle, width) { const data = (0,_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵfindLocaleData"])(locale); checkFullData(data); const dayPeriodsData = [data[_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵLocaleDataIndex"].ExtraData][0 /* ɵExtraLocaleDataIndex.ExtraDayPeriodFormats */], data[_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵLocaleDataIndex"].ExtraData][1 /* ɵExtraLocaleDataIndex.ExtraDayPeriodStandalone */]]; - const dayPeriods = getLastDefinedValue(dayPeriodsData, formStyle) || []; return getLastDefinedValue(dayPeriods, width) || []; } @@ -22015,7 +33422,6 @@ function getNumberOfCurrencyDigits(code) { if (currency) { digits = currency[2 /* ɵCurrencyIndex.NbOfDigits */]; } - return typeof digits === 'number' ? digits : DEFAULT_NB_OF_CURRENCY_DIGITS; } const ISO8601_DATE_REGEX = /^(\d{4,})-?(\d\d)-?(\d\d)(?:T(\d\d)(?::?(\d\d)(?::?(\d\d)(?:\.(\d+))?)?)?(Z|([+-])(\d\d):?(\d\d))?)?$/; @@ -22382,7 +33788,6 @@ function weekGetter(size, monthBased = false) { const diff = thisThurs.getTime() - firstThurs.getTime(); result = 1 + Math.round(diff / 6.048e8); // 6.048e8 ms per week } - return padNumber(result, size, getLocaleNumberSymbol(locale, NumberSymbol.MinusSign)); }; } @@ -27673,7 +39078,7 @@ function unwrapSafeUrl(value) { /***/ }), -/***/ 4860: +/***/ 54860: /*!********************************************************!*\ !*** ./node_modules/@angular/common/fesm2022/http.mjs ***! \********************************************************/ @@ -27718,19 +39123,19 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵHttpInterceptorHandler": () => (/* binding */ HttpInterceptorHandler), /* harmony export */ "ɵwithHttpTransferCache": () => (/* binding */ withHttpTransferCache) /* harmony export */ }); -/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 1670); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 71670); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 61699); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs */ 3064); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 502); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 7293); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs/operators */ 5046); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 7422); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 786); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 5746); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs/operators */ 7627); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 30502); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 67293); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs/operators */ 85046); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs/operators */ 90786); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! rxjs/operators */ 15746); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs/operators */ 17627); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/common */ 26575); /** * @license Angular v16.2.12 @@ -30668,7 +42073,7 @@ function withHttpTransferCache() { /***/ }), -/***/ 1699: +/***/ 61699: /*!******************************************************!*\ !*** ./node_modules/@angular/core/fesm2022/core.mjs ***! \******************************************************/ @@ -31062,16 +42467,16 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵɵvalidateIframeAttribute": () => (/* binding */ ɵɵvalidateIframeAttribute), /* harmony export */ "ɵɵviewQuery": () => (/* binding */ ɵɵviewQuery) /* harmony export */ }); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs */ 2484); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 4614); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 3064); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 9718); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 462); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 84614); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 73064); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 89718); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! rxjs */ 70462); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 1272); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 5083); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs/operators */ 7627); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 99718); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! rxjs/operators */ 45083); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs/operators */ 17627); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -32006,7 +43411,6 @@ function convertToBitFlags(flags) { // comment to force a line break in the formatter flags.optional && 8 /* InternalInjectFlags.Optional */) | (flags.host && 1 /* InternalInjectFlags.Host */) | (flags.self && 2 /* InternalInjectFlags.Self */) | (flags.skipSelf && 4 /* InternalInjectFlags.SkipSelf */); } - function injectArgs(types) { const args = []; for (let i = 0; i < types.length; i++) { @@ -32325,7 +43729,6 @@ function setUpAttributes(renderer, native, attrs) { function isNameOnlyAttributeMarker(marker) { return marker === 3 /* AttributeMarker.Bindings */ || marker === 4 /* AttributeMarker.Template */ || marker === 6 /* AttributeMarker.I18n */; } - function isAnimationProp(name) { // Perf note: accessing charCodeAt to check for the first character of a string is faster as // compared to accessing a character at index 0 (ex. name[0]). The main reason for this is that @@ -33267,7 +44670,6 @@ function isComponentHost(tNode) { function isDirectiveHost(tNode) { return (tNode.flags & 1 /* TNodeFlags.isDirectiveHost */) === 1 /* TNodeFlags.isDirectiveHost */; } - function isComponentDef(def) { return !!def.template; } @@ -33277,7 +44679,6 @@ function isRootView(target) { function isProjectionTNode(tNode) { return (tNode.type & 16 /* TNodeType.Projection */) === 16 /* TNodeType.Projection */; } - function hasI18n(lView) { return (lView[FLAGS] & 32 /* LViewFlags.HasI18n */) === 32 /* LViewFlags.HasI18n */; } @@ -33489,7 +44890,6 @@ function producerAccessed(node) { // `activeConsumer.producerNode[idx]` which will be overwritten below. } } - if (activeConsumer.producerNode[idx] !== node) { // We're a new dependency of the consumer (at `idx`). activeConsumer.producerNode[idx] = node; @@ -34986,7 +46386,6 @@ function callHooks(currentView, arr, initPhase, currentNodeIndex) { if (isInitHook) { currentView[PREORDER_HOOK_FLAGS] += 65536 /* PreOrderHookFlags.NumberOfInitHooksCalledIncrementer */; } - if (lastNodeIndexFound < nodeIndexLimit || nodeIndexLimit == -1) { callHook(currentView, initPhase, arr, i); currentView[PREORDER_HOOK_FLAGS] = (currentView[PREORDER_HOOK_FLAGS] & 4294901760 /* PreOrderHookFlags.NumberOfInitHooksCalledMask */) + i + 2; @@ -35259,7 +46658,6 @@ function getParentInjectorIndex(parentLocation) { ngDevMode && assertGreaterThan(parentInjectorIndex, HEADER_OFFSET, 'Parent injector must be pointing past HEADER_OFFSET.'); return parentLocation & 32767 /* RelativeInjectorLocationFlags.InjectorIndexMask */; } - function getParentInjectorViewOffset(parentLocation) { return parentLocation >> 16 /* RelativeInjectorLocationFlags.ViewOffsetShift */; } @@ -35468,7 +46866,6 @@ function getParentInjectorLocation(tNode, lView) { return parentTNode.injectorIndex | declarationViewOffset << 16 /* RelativeInjectorLocationFlags.ViewOffsetShift */; } } - return NO_PARENT_INJECTOR; } /** @@ -36526,7 +47923,6 @@ function _arrayIndexOfSorted(array, value, shift) { start = middle + 1; // We already searched middle so make it non-inclusive by adding 1 } } - return ~(end << shift); } @@ -36825,7 +48221,6 @@ const Host = // Disable tslint because `InternalInjectFlags` is a const enum which gets inlined. // tslint:disable-next-line: no-toplevel-property-access attachInjectFlag(makeParamDecorator('Host'), 1 /* InternalInjectFlags.Host */); - let _reflect = null; function getReflect() { return _reflect = _reflect || new ReflectionCapabilities(); @@ -38106,7 +49501,6 @@ function detachView(lContainer, removeIndex) { // Unsets the attached flag viewToDetach[FLAGS] &= ~128 /* LViewFlags.Attached */; } - return viewToDetach; } /** @@ -38531,7 +49925,6 @@ function applyNodes(renderer, action, tNode, lView, parentRElement, beforeNode, tNode.flags |= 2 /* TNodeFlags.isProjected */; } } - if ((tNode.flags & 32 /* TNodeFlags.isDetached */) !== 32 /* TNodeFlags.isDetached */) { if (tNodeType & 8 /* TNodeType.ElementContainer */) { applyNodes(renderer, action, tNode.child, lView, parentRElement, beforeNode, false); @@ -38610,7 +50003,6 @@ function applyProjectionRecursive(renderer, action, lView, tProjectionNode, pare if (hasInSkipHydrationBlockFlag(tProjectionNode)) { nodeToProject.flags |= 128 /* TNodeFlags.inSkipHydrationBlock */; } - applyNodes(renderer, action, nodeToProject, projectedComponentLView, parentRElement, beforeNode, true); } } @@ -39023,31 +50415,26 @@ class SafeHtmlImpl extends SafeValueImpl { return "HTML" /* BypassType.Html */; } } - class SafeStyleImpl extends SafeValueImpl { getTypeName() { return "Style" /* BypassType.Style */; } } - class SafeScriptImpl extends SafeValueImpl { getTypeName() { return "Script" /* BypassType.Script */; } } - class SafeUrlImpl extends SafeValueImpl { getTypeName() { return "URL" /* BypassType.Url */; } } - class SafeResourceUrlImpl extends SafeValueImpl { getTypeName() { return "ResourceURL" /* BypassType.ResourceUrl */; } } - function unwrapSafeValue(value) { return value instanceof SafeValueImpl ? value.changingThisBreaksApplicationSecurity : value; } @@ -39693,7 +51080,6 @@ const INJECTOR = new InjectionToken('INJECTOR', // Disable tslint because this is const enum which gets inlined not top level prop access. // tslint:disable-next-line: no-toplevel-property-access -1 /* InjectorMarkers.Injector */); - const INJECTOR_DEF_TYPES = new InjectionToken('INJECTOR_DEF_TYPES'); class NullInjector { get(token, notFoundValue = THROW_IF_NOT_FOUND) { @@ -42667,7 +54053,6 @@ function createLView(parentLView, tView, context, flags, host, tHostNode, enviro if (embeddedViewInjector !== null || parentLView && parentLView[FLAGS] & 2048 /* LViewFlags.HasEmbeddedViewInjector */) { lView[FLAGS] |= 2048 /* LViewFlags.HasEmbeddedViewInjector */; } - resetPreOrderHookFlags(lView); ngDevMode && tView.declTNode && parentLView && assertTNodeForLView(tView.declTNode, parentLView); lView[PARENT] = lView[DECLARATION_VIEW] = parentLView; @@ -43038,7 +54423,6 @@ function createTNode(tView, tParent, type, index, value, attrs) { if (isInSkipHydrationBlock$1()) { flags |= 128 /* TNodeFlags.inSkipHydrationBlock */; } - const tNode = { type, index, @@ -43149,12 +54533,10 @@ function initializeInputAndOutputAliases(tView, tNode, hostDirectiveDefinitionMa if (inputsStore.hasOwnProperty('class')) { tNode.flags |= 8 /* TNodeFlags.hasClassInput */; } - if (inputsStore.hasOwnProperty('style')) { tNode.flags |= 16 /* TNodeFlags.hasStyleInput */; } } - tNode.initialInputs = inputsFromAttrs; tNode.inputs = inputsStore; tNode.outputs = outputsStore; @@ -43218,7 +54600,6 @@ function markDirtyIfOnPush(lView, viewIndex) { childComponentLView[FLAGS] |= 64 /* LViewFlags.Dirty */; } } - function setNgReflectProperty(lView, element, type, attrName, value) { const renderer = lView[RENDERER]; attrName = normalizeDebugBindingName(attrName); @@ -43582,7 +54963,6 @@ function addComponentLogic(lView, hostTNode, def) { } else if (def.onPush) { lViewFlags = 64 /* LViewFlags.Dirty */; } - const componentView = addToViewTree(lView, createLView(lView, tView, null, lViewFlags, native, hostTNode, null, rendererFactory.createRenderer(native, def), null, null, null)); // Component view will always be created before any injected LContainers, // so this is a regular element, wrap it with the component view @@ -43713,7 +55093,6 @@ function createLContainer(hostNative, currentView, native, tNode) { ngDevMode && assertLView(currentView); const lContainer = [hostNative, true, false, currentView, null, 0, tNode, native, null, null, null // dehydrated views ]; - ngDevMode && assertEqual(lContainer.length, CONTAINER_HEADER_OFFSET, 'Should allocate correct number of slots for LContainer header.'); return lContainer; } @@ -44255,11 +55634,9 @@ function refreshView(tView, lView, templateFn, context) { if (contentHooks !== null) { executeInitAndCheckHooks(lView, contentHooks, 1 /* InitPhaseState.AfterContentInitHooksToBeRun */); } - incrementInitPhaseFlags(lView, 1 /* InitPhaseState.AfterContentInitHooksToBeRun */); } } - processHostBindingOpCodes(tView, lView); // Refresh child component views. const components = tView.components; @@ -44286,11 +55663,9 @@ function refreshView(tView, lView, templateFn, context) { if (viewHooks !== null) { executeInitAndCheckHooks(lView, viewHooks, 2 /* InitPhaseState.AfterViewInitHooksToBeRun */); } - incrementInitPhaseFlags(lView, 2 /* InitPhaseState.AfterViewInitHooksToBeRun */); } } - if (tView.firstUpdatePass === true) { // We need to make sure that we only flip the flag on successful `refreshView` only // Don't do this in `finally` block. @@ -44309,7 +55684,6 @@ function refreshView(tView, lView, templateFn, context) { if (!isInCheckNoChangesPass) { lView[FLAGS] &= ~(64 /* LViewFlags.Dirty */ | 8 /* LViewFlags.FirstLViewPass */); } - clearViewRefreshFlag(lView); } finally { leaveView(); @@ -44431,7 +55805,6 @@ class ViewRef$1 { get destroyed() { return (this._lView[FLAGS] & 256 /* LViewFlags.Destroyed */) === 256 /* LViewFlags.Destroyed */; } - destroy() { if (this._appRef) { this._appRef.detachView(this); @@ -44937,7 +56310,6 @@ function createRootComponentView(tNode, hostRNode, rootComponentDef, rootDirecti } else if (rootComponentDef.onPush) { lViewFlags = 64 /* LViewFlags.Dirty */; } - const componentView = createLView(rootView, getOrCreateComponentTView(rootComponentDef), null, lViewFlags, rootView[tNode.index], tNode, environment, viewRenderer, null, null, hydrationInfo); if (tView.firstCreatePass) { markAsComponentHost(tView, tNode, rootDirectives.length - 1); @@ -45436,7 +56808,6 @@ function isListLikeIterable(obj) { // JS Map are iterables but return entries as [k, v] Symbol.iterator in obj; // JS Iterable have a Symbol.iterator prop } - function areIterablesEqual(a, b, comparator) { const iterator1 = a[Symbol.iterator](); const iterator2 = b[Symbol.iterator](); @@ -47468,7 +58839,6 @@ function matchingProjectionSlotIndex(tNode, projectionSlots) { return i; // first matching selector "captures" a given node } } - return wildcardNgContentIndex; } /** @@ -48005,33 +59375,27 @@ function toTStylingRange(prev, next) { ngDevMode && assertNumberInRange(next, 0, 32767 /* StylingRange.UNSIGNED_MASK */); return prev << 17 /* StylingRange.PREV_SHIFT */ | next << 2 /* StylingRange.NEXT_SHIFT */; } - function getTStylingRangePrev(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return tStylingRange >> 17 /* StylingRange.PREV_SHIFT */ & 32767 /* StylingRange.UNSIGNED_MASK */; } - function getTStylingRangePrevDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return (tStylingRange & 2 /* StylingRange.PREV_DUPLICATE */) == 2 /* StylingRange.PREV_DUPLICATE */; } - function setTStylingRangePrev(tStylingRange, previous) { ngDevMode && assertNumber(tStylingRange, 'expected number'); ngDevMode && assertNumberInRange(previous, 0, 32767 /* StylingRange.UNSIGNED_MASK */); return tStylingRange & ~4294836224 /* StylingRange.PREV_MASK */ | previous << 17 /* StylingRange.PREV_SHIFT */; } - function setTStylingRangePrevDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return tStylingRange | 2 /* StylingRange.PREV_DUPLICATE */; } - function getTStylingRangeNext(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return (tStylingRange & 131068 /* StylingRange.NEXT_MASK */) >> 2 /* StylingRange.NEXT_SHIFT */; } - function setTStylingRangeNext(tStylingRange, next) { ngDevMode && assertNumber(tStylingRange, 'expected number'); ngDevMode && assertNumberInRange(next, 0, 32767 /* StylingRange.UNSIGNED_MASK */); @@ -48039,17 +59403,14 @@ function setTStylingRangeNext(tStylingRange, next) { // next << 2 /* StylingRange.NEXT_SHIFT */; } - function getTStylingRangeNextDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return (tStylingRange & 1 /* StylingRange.NEXT_DUPLICATE */) === 1 /* StylingRange.NEXT_DUPLICATE */; } - function setTStylingRangeNextDuplicate(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); return tStylingRange | 1 /* StylingRange.NEXT_DUPLICATE */; } - function getTStylingRangeTail(tStylingRange) { ngDevMode && assertNumber(tStylingRange, 'expected number'); const next = getTStylingRangeNext(tStylingRange); @@ -48439,7 +59800,6 @@ function isStylingMatch(tStylingKeyCursor, tStylingKey) { // statics and we need to check those as well. return keyValueArrayIndexOf(tStylingKeyCursor, tStylingKey) >= 0; // see if we are matching the key } - return false; } @@ -48656,7 +60016,6 @@ function consumeStyleValue(text, startIndex, endIndex) { ch2 = ch1; ch1 = ch & -33 /* CharCode.UPPER_CASE */; } - return lastChIndex; } /** @@ -51144,7 +62503,6 @@ function addTNodeAndUpdateInsertBeforeIndex(previousTNodes, newTNode) { function isI18nText(tNode) { return !(tNode.type & 64 /* TNodeType.Placeholder */); } - function isNewTNodeCreatedBefore(existingTNode, newTNode) { return isI18nText(newTNode) || existingTNode.index > newTNode.index; } @@ -51255,15 +62613,12 @@ function getCurrentICUCaseIndex(tIcu, lView) { function getParentFromIcuCreateOpCode(mergedCode) { return mergedCode >>> 17 /* IcuCreateOpCode.SHIFT_PARENT */; } - function getRefFromIcuCreateOpCode(mergedCode) { return (mergedCode & 131070 /* IcuCreateOpCode.MASK_REF */) >>> 1 /* IcuCreateOpCode.SHIFT_REF */; } - function getInstructionFromIcuCreateOpCode(mergedCode) { return mergedCode & 1 /* IcuCreateOpCode.MASK_INSTRUCTION */; } - function icuCreateOpCode(opCode, parentIdx, refIdx) { ngDevMode && assertGreaterThanOrEqual(parentIdx, 0, 'Missing parent index'); ngDevMode && assertGreaterThan(refIdx, 0, 'Missing ref index'); @@ -52319,7 +63674,6 @@ function parseICUBlock(pattern) { } else { icuType = 1 /* IcuType.plural */; } - mainBinding = parseInt(binding.slice(1), 10); return ''; }); @@ -52496,15 +63850,12 @@ function addRemoveNestedIcu(remove, index, depth) { remove.push(index); // remove ICU comment at `index` } } - function addUpdateIcuSwitch(update, icuExpression, index) { update.push(toMaskBit(icuExpression.mainBinding), 2, -1 - icuExpression.mainBinding, index << 2 /* I18nUpdateOpCode.SHIFT_REF */ | 2 /* I18nUpdateOpCode.IcuSwitch */); } - function addUpdateIcuUpdate(update, bindingMask, index) { update.push(bindingMask, 1, index << 2 /* I18nUpdateOpCode.SHIFT_REF */ | 3 /* I18nUpdateOpCode.IcuUpdate */); } - function addCreateNodeAndAppend(create, marker, text, appendToParentIdx, createAtIdx) { if (marker !== null) { create.push(marker); @@ -52674,7 +64025,6 @@ function ɵɵi18nStart(index, messageIndex, subTemplateIndex = -1) { } else { lView[FLAGS] |= 32 /* LViewFlags.HasI18n */; } - const tI18n = tView.data[adjustedIndex]; const sameViewParentTNode = parentTNode === lView[T_HOST] ? null : parentTNode; const parentRNode = getClosestRElement(tView, sameViewParentTNode, lView); @@ -52887,7 +64237,6 @@ function resolveProvider(provider, tInjectables, lInjectablesBlueprint, isCompon if (isViewProvider) { tNode.providerIndexes += 1048576 /* TNodeProviderIndexes.CptViewProvidersCountShifter */; } - lInjectablesBlueprint.push(factory); lView.push(factory); } else { @@ -52933,7 +64282,6 @@ function resolveProvider(provider, tInjectables, lInjectablesBlueprint, isCompon if (isViewProvider) { tNode.providerIndexes += 1048576 /* TNodeProviderIndexes.CptViewProvidersCountShifter */; } - lInjectablesBlueprint.push(factory); lView.push(factory); } else { @@ -57681,7 +69029,6 @@ function getDependenciesFromInjectable(injector, token) { self: (2 /* InternalInjectFlags.Self */ & flags) === 2 /* InternalInjectFlags.Self */, skipSelf: (4 /* InternalInjectFlags.SkipSelf */ & flags) === 4 /* InternalInjectFlags.SkipSelf */ }; - for (let i = 0; i < resolutionPath.length; i++) { const injectorToCheck = resolutionPath[i]; // if skipSelf is true we skip the first injector @@ -61641,7 +72988,6 @@ function serializeLView(lView, context) { context.corruptedTextNodes.set(rNode, "ngtns" /* TextNodeMarker.Separator */); } } - if (tNode.projectionNext && tNode.projectionNext !== tNode.next && !isInSkipHydrationBlock(tNode.projectionNext)) { // Check if projection next is not the same as next, in which case // the node would not be found at creation time at runtime and we @@ -61876,7 +73222,6 @@ function withDomHydration() { } return () => {}; // noop }, - multi: true }]); } @@ -62258,7 +73603,7 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) { /***/ }), -/***/ 7164: +/***/ 17164: /*!**************************************************************!*\ !*** ./node_modules/@angular/elements/fesm2022/elements.mjs ***! \**************************************************************/ @@ -62271,11 +73616,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ VERSION: () => (/* binding */ VERSION), /* harmony export */ createCustomElement: () => (/* binding */ createCustomElement) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 6309); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 9718); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 7422); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 76309); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 89718); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 47422); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -62827,7 +74172,7 @@ const VERSION = new _angular_core__WEBPACK_IMPORTED_MODULE_0__.Version('16.2.12' /***/ }), -/***/ 1059: +/***/ 28849: /*!********************************************************!*\ !*** ./node_modules/@angular/forms/fesm2022/forms.mjs ***! \********************************************************/ @@ -62893,11 +74238,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵNgNoValidate": () => (/* binding */ ɵNgNoValidate), /* harmony export */ "ɵNgSelectMultipleOption": () => (/* binding */ ɵNgSelectMultipleOption) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 502); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 2130); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 7422); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs */ 30502); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 92130); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! rxjs/operators */ 47422); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -63624,7 +74969,6 @@ function minValidator(min) { if (isEmptyInputValue(control.value) || isEmptyInputValue(min)) { return null; // don't validate empty values to allow optional controls } - const value = parseFloat(control.value); // Controls with NaN values after parsing should be treated as not having a // minimum, per the HTML forms spec: https://www.w3.org/TR/html5/forms.html#attr-input-min @@ -63645,7 +74989,6 @@ function maxValidator(max) { if (isEmptyInputValue(control.value) || isEmptyInputValue(max)) { return null; // don't validate empty values to allow optional controls } - const value = parseFloat(control.value); // Controls with NaN values after parsing should be treated as not having a // maximum, per the HTML forms spec: https://www.w3.org/TR/html5/forms.html#attr-input-max @@ -63684,7 +75027,6 @@ function emailValidator(control) { if (isEmptyInputValue(control.value)) { return null; // don't validate empty values to allow optional controls } - return EMAIL_REGEXP.test(control.value) ? null : { 'email': true }; @@ -63744,7 +75086,6 @@ function patternValidator(pattern) { if (isEmptyInputValue(control.value)) { return null; // don't validate empty values to allow optional controls } - const value = control.value; return regex.test(value) ? null : { 'pattern': { @@ -70985,7 +82326,7 @@ class ReactiveFormsModule { /***/ }), -/***/ 6480: +/***/ 36480: /*!******************************************************************************!*\ !*** ./node_modules/@angular/platform-browser/fesm2022/platform-browser.mjs ***! \******************************************************************************/ @@ -71030,9 +82371,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "ɵgetDOM": () => (/* reexport safe */ _angular_common__WEBPACK_IMPORTED_MODULE_0__["ɵgetDOM"]), /* harmony export */ "ɵinitDomAdapter": () => (/* binding */ initDomAdapter) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common/http */ 4860); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common/http */ 54860); /** * @license Angular v16.2.12 * (c) 2010-2022 Google LLC. https://angular.io/ @@ -72020,7 +83361,6 @@ class KeyEventsPlugin extends EventManagerPlugin { } else if (keycode === '.') { keycode = 'dot'; // because '.' is used as a separator in event names } - MODIFIER_KEYS.forEach(modifierName => { if (modifierName !== keycode) { const modifierGetter = MODIFIER_KEY_GETTERS[modifierName]; @@ -73371,7 +84711,7 @@ const TransferState = _angular_core__WEBPACK_IMPORTED_MODULE_1__.TransferState; /***/ }), -/***/ 3873: +/***/ 83873: /*!****************************************************************************************************************!*\ !*** ./node_modules/@project-sunbird/sunbird-player-sdk-v9/fesm2022/project-sunbird-sunbird-player-sdk-v9.mjs ***! \****************************************************************************************************************/ @@ -73398,11 +84738,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ errorCode: () => (/* binding */ errorCode), /* harmony export */ errorMessage: () => (/* binding */ errorMessage) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 2525); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/forms */ 1059); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 32525); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var _angular_forms__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/forms */ 28849); @@ -74840,7 +86180,7 @@ class ErrorService { /***/ }), -/***/ 7558: +/***/ 17558: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_DataView.js ***! \*********************************************/ @@ -74851,8 +86191,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -74862,7 +86202,7 @@ var DataView = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_j /***/ }), -/***/ 3875: +/***/ 73875: /*!*****************************************!*\ !*** ./node_modules/lodash-es/_Hash.js ***! \*****************************************/ @@ -74873,11 +86213,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _hashClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hashClear.js */ 4014); -/* harmony import */ var _hashDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_hashDelete.js */ 2208); -/* harmony import */ var _hashGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_hashGet.js */ 6546); -/* harmony import */ var _hashHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_hashHas.js */ 7343); -/* harmony import */ var _hashSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_hashSet.js */ 6788); +/* harmony import */ var _hashClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hashClear.js */ 64014); +/* harmony import */ var _hashDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_hashDelete.js */ 32208); +/* harmony import */ var _hashGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_hashGet.js */ 16546); +/* harmony import */ var _hashHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_hashHas.js */ 32502); +/* harmony import */ var _hashSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_hashSet.js */ 36788); @@ -74911,7 +86251,7 @@ Hash.prototype.set = _hashSet_js__WEBPACK_IMPORTED_MODULE_4__["default"]; /***/ }), -/***/ 2938: +/***/ 32938: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_ListCache.js ***! \**********************************************/ @@ -74922,11 +86262,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _listCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_listCacheClear.js */ 9537); -/* harmony import */ var _listCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_listCacheDelete.js */ 5126); -/* harmony import */ var _listCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_listCacheGet.js */ 3936); -/* harmony import */ var _listCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_listCacheHas.js */ 9420); -/* harmony import */ var _listCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_listCacheSet.js */ 8886); +/* harmony import */ var _listCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_listCacheClear.js */ 99537); +/* harmony import */ var _listCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_listCacheDelete.js */ 15126); +/* harmony import */ var _listCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_listCacheGet.js */ 23936); +/* harmony import */ var _listCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_listCacheHas.js */ 69420); +/* harmony import */ var _listCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_listCacheSet.js */ 88886); @@ -74971,8 +86311,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -74982,7 +86322,7 @@ var Map = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js__WE /***/ }), -/***/ 795: +/***/ 80795: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_MapCache.js ***! \*********************************************/ @@ -74993,11 +86333,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _mapCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_mapCacheClear.js */ 3771); -/* harmony import */ var _mapCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_mapCacheDelete.js */ 9809); -/* harmony import */ var _mapCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_mapCacheGet.js */ 9080); -/* harmony import */ var _mapCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapCacheHas.js */ 9927); -/* harmony import */ var _mapCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_mapCacheSet.js */ 8096); +/* harmony import */ var _mapCacheClear_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_mapCacheClear.js */ 43771); +/* harmony import */ var _mapCacheDelete_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_mapCacheDelete.js */ 99809); +/* harmony import */ var _mapCacheGet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_mapCacheGet.js */ 29080); +/* harmony import */ var _mapCacheHas_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapCacheHas.js */ 89927); +/* harmony import */ var _mapCacheSet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_mapCacheSet.js */ 58096); @@ -75031,7 +86371,7 @@ MapCache.prototype.set = _mapCacheSet_js__WEBPACK_IMPORTED_MODULE_4__["default"] /***/ }), -/***/ 9433: +/***/ 89433: /*!********************************************!*\ !*** ./node_modules/lodash-es/_Promise.js ***! \********************************************/ @@ -75042,8 +86382,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -75053,7 +86393,7 @@ var Promise = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js /***/ }), -/***/ 3684: +/***/ 23684: /*!****************************************!*\ !*** ./node_modules/lodash-es/_Set.js ***! \****************************************/ @@ -75064,8 +86404,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -75075,7 +86415,7 @@ var Set = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js__WE /***/ }), -/***/ 7081: +/***/ 77081: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_SetCache.js ***! \*********************************************/ @@ -75086,9 +86426,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 795); -/* harmony import */ var _setCacheAdd_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setCacheAdd.js */ 4924); -/* harmony import */ var _setCacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_setCacheHas.js */ 8336); +/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 80795); +/* harmony import */ var _setCacheAdd_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setCacheAdd.js */ 64924); +/* harmony import */ var _setCacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_setCacheHas.js */ 68336); @@ -75117,7 +86457,7 @@ SetCache.prototype.has = _setCacheHas_js__WEBPACK_IMPORTED_MODULE_2__["default"] /***/ }), -/***/ 3536: +/***/ 53536: /*!******************************************!*\ !*** ./node_modules/lodash-es/_Stack.js ***! \******************************************/ @@ -75128,12 +86468,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /* harmony import */ var _stackClear_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_stackClear.js */ 6677); -/* harmony import */ var _stackDelete_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stackDelete.js */ 5311); -/* harmony import */ var _stackGet_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_stackGet.js */ 5121); -/* harmony import */ var _stackHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_stackHas.js */ 669); -/* harmony import */ var _stackSet_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_stackSet.js */ 9746); +/* harmony import */ var _stackDelete_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stackDelete.js */ 55311); +/* harmony import */ var _stackGet_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_stackGet.js */ 95121); +/* harmony import */ var _stackHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_stackHas.js */ 90669); +/* harmony import */ var _stackSet_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_stackSet.js */ 79746); @@ -75163,7 +86503,7 @@ Stack.prototype.set = _stackSet_js__WEBPACK_IMPORTED_MODULE_5__["default"]; /***/ }), -/***/ 2134: +/***/ 82134: /*!*******************************************!*\ !*** ./node_modules/lodash-es/_Symbol.js ***! \*******************************************/ @@ -75174,7 +86514,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Built-in value references. */ @@ -75183,7 +86523,7 @@ var Symbol = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"].Symbol; /***/ }), -/***/ 9764: +/***/ 49764: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_Uint8Array.js ***! \***********************************************/ @@ -75194,7 +86534,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Built-in value references. */ @@ -75203,7 +86543,7 @@ var Uint8Array = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"].Uint8Array; /***/ }), -/***/ 2680: +/***/ 12680: /*!********************************************!*\ !*** ./node_modules/lodash-es/_WeakMap.js ***! \********************************************/ @@ -75214,8 +86554,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_root.js */ 16396); @@ -75225,7 +86565,7 @@ var WeakMap = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_root_js /***/ }), -/***/ 6318: +/***/ 36318: /*!******************************************!*\ !*** ./node_modules/lodash-es/_apply.js ***! \******************************************/ @@ -75263,7 +86603,7 @@ function apply(func, thisArg, args) { /***/ }), -/***/ 8851: +/***/ 88851: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_arrayAggregator.js ***! \****************************************************/ @@ -75297,7 +86637,7 @@ function arrayAggregator(array, setter, iteratee, accumulator) { /***/ }), -/***/ 7528: +/***/ 47528: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_arrayEach.js ***! \**********************************************/ @@ -75331,7 +86671,7 @@ function arrayEach(array, iteratee) { /***/ }), -/***/ 4423: +/***/ 74423: /*!************************************************!*\ !*** ./node_modules/lodash-es/_arrayFilter.js ***! \************************************************/ @@ -75368,7 +86708,7 @@ function arrayFilter(array, predicate) { /***/ }), -/***/ 6228: +/***/ 36228: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_arrayIncludes.js ***! \**************************************************/ @@ -75379,7 +86719,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIndexOf.js */ 9994); +/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIndexOf.js */ 79994); /** @@ -75399,7 +86739,7 @@ function arrayIncludes(array, value) { /***/ }), -/***/ 958: +/***/ 20958: /*!******************************************************!*\ !*** ./node_modules/lodash-es/_arrayIncludesWith.js ***! \******************************************************/ @@ -75433,7 +86773,7 @@ function arrayIncludesWith(array, value, comparator) { /***/ }), -/***/ 4937: +/***/ 54937: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_arrayLikeKeys.js ***! \**************************************************/ @@ -75444,12 +86784,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseTimes_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseTimes.js */ 6513); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); +/* harmony import */ var _baseTimes_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseTimes.js */ 26513); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); @@ -75498,7 +86838,7 @@ function arrayLikeKeys(value, inherited) { /***/ }), -/***/ 4987: +/***/ 64987: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_arrayMap.js ***! \*********************************************/ @@ -75531,7 +86871,7 @@ function arrayMap(array, iteratee) { /***/ }), -/***/ 1191: +/***/ 11191: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_arrayPush.js ***! \**********************************************/ @@ -75563,7 +86903,7 @@ function arrayPush(array, values) { /***/ }), -/***/ 2304: +/***/ 52304: /*!************************************************!*\ !*** ./node_modules/lodash-es/_arrayReduce.js ***! \************************************************/ @@ -75601,7 +86941,7 @@ function arrayReduce(array, iteratee, accumulator, initAccum) { /***/ }), -/***/ 2292: +/***/ 42292: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_arrayShuffle.js ***! \*************************************************/ @@ -75612,7 +86952,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_copyArray.js */ 4196); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_copyArray.js */ 54196); /* harmony import */ var _shuffleSelf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_shuffleSelf.js */ 4173); @@ -75631,7 +86971,7 @@ function arrayShuffle(array) { /***/ }), -/***/ 2125: +/***/ 72125: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_arraySome.js ***! \**********************************************/ @@ -75666,7 +87006,7 @@ function arraySome(array, predicate) { /***/ }), -/***/ 77: +/***/ 70077: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_assignMergeValue.js ***! \*****************************************************/ @@ -75677,8 +87017,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 8325); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 28325); @@ -75700,7 +87040,7 @@ function assignMergeValue(object, key, value) { /***/ }), -/***/ 8676: +/***/ 68676: /*!************************************************!*\ !*** ./node_modules/lodash-es/_assignValue.js ***! \************************************************/ @@ -75711,8 +87051,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 8325); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 28325); @@ -75742,7 +87082,7 @@ function assignValue(object, key, value) { /***/ }), -/***/ 3342: +/***/ 23342: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_assocIndexOf.js ***! \*************************************************/ @@ -75753,7 +87093,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 8325); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./eq.js */ 28325); /** @@ -75777,7 +87117,7 @@ function assocIndexOf(array, key) { /***/ }), -/***/ 6448: +/***/ 44987: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_baseAggregator.js ***! \***************************************************/ @@ -75788,7 +87128,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 9121); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 59121); /** @@ -75812,7 +87152,7 @@ function baseAggregator(collection, setter, iteratee, accumulator) { /***/ }), -/***/ 3793: +/***/ 83793: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseAssign.js ***! \***********************************************/ @@ -75823,8 +87163,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -75844,7 +87184,7 @@ function baseAssign(object, source) { /***/ }), -/***/ 2631: +/***/ 22631: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseAssignIn.js ***! \*************************************************/ @@ -75855,8 +87195,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -75876,7 +87216,7 @@ function baseAssignIn(object, source) { /***/ }), -/***/ 2681: +/***/ 72681: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_baseAssignValue.js ***! \****************************************************/ @@ -75887,7 +87227,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 1307); +/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 11307); /** @@ -75915,7 +87255,7 @@ function baseAssignValue(object, key, value) { /***/ }), -/***/ 8265: +/***/ 68265: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseClone.js ***! \**********************************************/ @@ -75926,28 +87266,28 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./_arrayEach.js */ 7528); -/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./_assignValue.js */ 8676); -/* harmony import */ var _baseAssign_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./_baseAssign.js */ 3793); -/* harmony import */ var _baseAssignIn_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./_baseAssignIn.js */ 2631); -/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_cloneBuffer.js */ 1691); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyArray.js */ 4196); -/* harmony import */ var _copySymbols_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./_copySymbols.js */ 3662); -/* harmony import */ var _copySymbolsIn_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_copySymbolsIn.js */ 7085); -/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./_getAllKeys.js */ 4857); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./_arrayEach.js */ 47528); +/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./_assignValue.js */ 68676); +/* harmony import */ var _baseAssign_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./_baseAssign.js */ 83793); +/* harmony import */ var _baseAssignIn_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./_baseAssignIn.js */ 22631); +/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_cloneBuffer.js */ 21691); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyArray.js */ 54196); +/* harmony import */ var _copySymbols_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./_copySymbols.js */ 73662); +/* harmony import */ var _copySymbolsIn_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_copySymbolsIn.js */ 37085); +/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./_getAllKeys.js */ 44857); /* harmony import */ var _getAllKeysIn_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./_getAllKeysIn.js */ 9740); /* harmony import */ var _getTag_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_getTag.js */ 8020); -/* harmony import */ var _initCloneArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_initCloneArray.js */ 7392); -/* harmony import */ var _initCloneByTag_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./_initCloneByTag.js */ 586); -/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_initCloneObject.js */ 1372); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isMap_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./isMap.js */ 1078); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isSet_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./isSet.js */ 9584); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./keys.js */ 1192); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _initCloneArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_initCloneArray.js */ 97392); +/* harmony import */ var _initCloneByTag_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./_initCloneByTag.js */ 20586); +/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_initCloneObject.js */ 71372); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isMap_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./isMap.js */ 41078); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isSet_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./isSet.js */ 29584); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./keys.js */ 31192); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -76095,7 +87435,7 @@ function baseClone(value, bitmask, customizer, key, object, stack) { /***/ }), -/***/ 1088: +/***/ 31088: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseCreate.js ***! \***********************************************/ @@ -76106,7 +87446,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); /** Built-in value references. */ @@ -76139,7 +87479,7 @@ var baseCreate = function () { /***/ }), -/***/ 7925: +/***/ 87925: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_baseDifference.js ***! \***************************************************/ @@ -76150,12 +87490,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 7081); -/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 6228); -/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 958); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 4066); +/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 77081); +/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 36228); +/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 20958); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 44066); @@ -76220,7 +87560,7 @@ function baseDifference(array, values, iteratee, comparator) { /***/ }), -/***/ 9121: +/***/ 59121: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseEach.js ***! \*********************************************/ @@ -76231,8 +87571,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseForOwn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseForOwn.js */ 3246); -/* harmony import */ var _createBaseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseEach.js */ 8772); +/* harmony import */ var _baseForOwn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseForOwn.js */ 93246); +/* harmony import */ var _createBaseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseEach.js */ 58772); @@ -76249,7 +87589,7 @@ var baseEach = (0,_createBaseEach_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_b /***/ }), -/***/ 7295: +/***/ 57295: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseFilter.js ***! \***********************************************/ @@ -76260,7 +87600,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 9121); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseEach.js */ 59121); /** @@ -76284,7 +87624,7 @@ function baseFilter(collection, predicate) { /***/ }), -/***/ 4150: +/***/ 24150: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_baseFindIndex.js ***! \**************************************************/ @@ -76320,7 +87660,7 @@ function baseFindIndex(array, predicate, fromIndex, fromRight) { /***/ }), -/***/ 8607: +/***/ 78607: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseFlatten.js ***! \************************************************/ @@ -76331,8 +87671,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _isFlattenable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isFlattenable.js */ 3920); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _isFlattenable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isFlattenable.js */ 28336); @@ -76371,7 +87711,7 @@ function baseFlatten(array, depth, predicate, isStrict, result) { /***/ }), -/***/ 3867: +/***/ 93867: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseFor.js ***! \********************************************/ @@ -76382,7 +87722,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _createBaseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseFor.js */ 4400); +/* harmony import */ var _createBaseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createBaseFor.js */ 24400); /** @@ -76401,7 +87741,7 @@ var baseFor = (0,_createBaseFor_js__WEBPACK_IMPORTED_MODULE_0__["default"])(); /***/ }), -/***/ 3246: +/***/ 93246: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseForOwn.js ***! \***********************************************/ @@ -76412,8 +87752,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 3867); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 93867); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -76432,7 +87772,7 @@ function baseForOwn(object, iteratee) { /***/ }), -/***/ 1527: +/***/ 31527: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseGet.js ***! \********************************************/ @@ -76443,8 +87783,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -76469,7 +87809,7 @@ function baseGet(object, path) { /***/ }), -/***/ 341: +/***/ 70341: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_baseGetAllKeys.js ***! \***************************************************/ @@ -76480,8 +87820,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -76504,7 +87844,7 @@ function baseGetAllKeys(object, keysFunc, symbolsFunc) { /***/ }), -/***/ 9304: +/***/ 79304: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseGetTag.js ***! \***********************************************/ @@ -76515,8 +87855,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _getRawTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getRawTag.js */ 1650); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _getRawTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getRawTag.js */ 11650); /* harmony import */ var _objectToString_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_objectToString.js */ 5354); @@ -76546,7 +87886,7 @@ function baseGetTag(value) { /***/ }), -/***/ 5566: +/***/ 95566: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseHas.js ***! \********************************************/ @@ -76604,7 +87944,7 @@ function baseHasIn(object, key) { /***/ }), -/***/ 9994: +/***/ 79994: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseIndexOf.js ***! \************************************************/ @@ -76615,9 +87955,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 4150); -/* harmony import */ var _baseIsNaN_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsNaN.js */ 3085); -/* harmony import */ var _strictIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_strictIndexOf.js */ 9343); +/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 24150); +/* harmony import */ var _baseIsNaN_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsNaN.js */ 33085); +/* harmony import */ var _strictIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_strictIndexOf.js */ 69343); @@ -76638,7 +87978,7 @@ function baseIndexOf(array, value, fromIndex) { /***/ }), -/***/ 4063: +/***/ 34063: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_baseIsArguments.js ***! \****************************************************/ @@ -76649,7 +87989,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -76671,7 +88011,7 @@ function baseIsArguments(value) { /***/ }), -/***/ 153: +/***/ 90153: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseIsEqual.js ***! \************************************************/ @@ -76725,14 +88065,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 7604); -/* harmony import */ var _equalByTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_equalByTag.js */ 8790); -/* harmony import */ var _equalObjects_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_equalObjects.js */ 457); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 77604); +/* harmony import */ var _equalByTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_equalByTag.js */ 38790); +/* harmony import */ var _equalObjects_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_equalObjects.js */ 40457); /* harmony import */ var _getTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getTag.js */ 8020); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); @@ -76811,7 +88151,7 @@ function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 6934: +/***/ 56934: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseIsMap.js ***! \**********************************************/ @@ -76844,7 +88184,7 @@ function baseIsMap(value) { /***/ }), -/***/ 5435: +/***/ 75435: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseIsMatch.js ***! \************************************************/ @@ -76855,8 +88195,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsEqual.js */ 153); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsEqual.js */ 90153); @@ -76913,7 +88253,7 @@ function baseIsMatch(object, source, matchData, customizer) { /***/ }), -/***/ 3085: +/***/ 33085: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseIsNaN.js ***! \**********************************************/ @@ -76938,7 +88278,7 @@ function baseIsNaN(value) { /***/ }), -/***/ 2020: +/***/ 52020: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseIsNative.js ***! \*************************************************/ @@ -76949,10 +88289,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFunction.js */ 3084); -/* harmony import */ var _isMasked_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isMasked.js */ 8426); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toSource.js */ 1540); +/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isFunction.js */ 93084); +/* harmony import */ var _isMasked_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isMasked.js */ 38426); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toSource.js */ 51540); @@ -76999,7 +88339,7 @@ function baseIsNative(value) { /***/ }), -/***/ 1469: +/***/ 91469: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseIsSet.js ***! \**********************************************/ @@ -77032,7 +88372,7 @@ function baseIsSet(value) { /***/ }), -/***/ 970: +/***/ 80970: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_baseIsTypedArray.js ***! \*****************************************************/ @@ -77043,8 +88383,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isLength.js */ 4080); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isLength.js */ 74080); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -77095,7 +88435,7 @@ function baseIsTypedArray(value) { /***/ }), -/***/ 4018: +/***/ 34018: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseIteratee.js ***! \*************************************************/ @@ -77106,11 +88446,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseMatches_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMatches.js */ 6623); -/* harmony import */ var _baseMatchesProperty_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMatchesProperty.js */ 4185); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 5416); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _property_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./property.js */ 4691); +/* harmony import */ var _baseMatches_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMatches.js */ 76623); +/* harmony import */ var _baseMatchesProperty_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMatchesProperty.js */ 24185); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 25416); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _property_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./property.js */ 14691); @@ -77142,7 +88482,7 @@ function baseIteratee(value) { /***/ }), -/***/ 2093: +/***/ 22093: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseKeys.js ***! \*********************************************/ @@ -77153,8 +88493,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); -/* harmony import */ var _nativeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeys.js */ 3058); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); +/* harmony import */ var _nativeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeys.js */ 93058); @@ -77198,9 +88538,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); -/* harmony import */ var _nativeKeysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeysIn.js */ 2879); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); +/* harmony import */ var _nativeKeysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_nativeKeysIn.js */ 22879); @@ -77235,7 +88575,7 @@ function baseKeysIn(object) { /***/ }), -/***/ 650: +/***/ 10650: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseMap.js ***! \********************************************/ @@ -77246,8 +88586,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseEach.js */ 9121); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseEach.js */ 59121); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); @@ -77271,7 +88611,7 @@ function baseMap(collection, iteratee) { /***/ }), -/***/ 6623: +/***/ 76623: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseMatches.js ***! \************************************************/ @@ -77282,9 +88622,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsMatch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMatch.js */ 5435); -/* harmony import */ var _getMatchData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMatchData.js */ 3741); -/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 499); +/* harmony import */ var _baseIsMatch_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMatch.js */ 75435); +/* harmony import */ var _getMatchData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMatchData.js */ 33741); +/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 30499); @@ -77309,7 +88649,7 @@ function baseMatches(source) { /***/ }), -/***/ 4185: +/***/ 24185: /*!********************************************************!*\ !*** ./node_modules/lodash-es/_baseMatchesProperty.js ***! \********************************************************/ @@ -77320,13 +88660,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseIsEqual.js */ 153); -/* harmony import */ var _get_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./get.js */ 6687); -/* harmony import */ var _hasIn_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hasIn.js */ 3595); -/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 5836); -/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 6646); -/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 499); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseIsEqual.js */ 90153); +/* harmony import */ var _get_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./get.js */ 26687); +/* harmony import */ var _hasIn_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hasIn.js */ 23595); +/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 75836); +/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 96646); +/* harmony import */ var _matchesStrictComparable_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_matchesStrictComparable.js */ 30499); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -77360,7 +88700,7 @@ function baseMatchesProperty(path, srcValue) { /***/ }), -/***/ 5674: +/***/ 45674: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseMerge.js ***! \**********************************************/ @@ -77371,13 +88711,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Stack.js */ 3536); -/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_assignMergeValue.js */ 77); -/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 3867); -/* harmony import */ var _baseMergeDeep_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMergeDeep.js */ 880); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./keysIn.js */ 2229); -/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_safeGet.js */ 3885); +/* harmony import */ var _Stack_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Stack.js */ 53536); +/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_assignMergeValue.js */ 70077); +/* harmony import */ var _baseFor_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFor.js */ 93867); +/* harmony import */ var _baseMergeDeep_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseMergeDeep.js */ 10880); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./keysIn.js */ 22229); +/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_safeGet.js */ 58883); @@ -77418,7 +88758,7 @@ function baseMerge(object, source, srcIndex, customizer, stack) { /***/ }), -/***/ 880: +/***/ 10880: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_baseMergeDeep.js ***! \**************************************************/ @@ -77429,21 +88769,21 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignMergeValue.js */ 77); -/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_cloneBuffer.js */ 1691); +/* harmony import */ var _assignMergeValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignMergeValue.js */ 70077); +/* harmony import */ var _cloneBuffer_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_cloneBuffer.js */ 21691); /* harmony import */ var _cloneTypedArray_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_cloneTypedArray.js */ 7721); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_copyArray.js */ 4196); -/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./_initCloneObject.js */ 1372); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 5306); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./isFunction.js */ 3084); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./isPlainObject.js */ 9702); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); -/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_safeGet.js */ 3885); -/* harmony import */ var _toPlainObject_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./toPlainObject.js */ 5949); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_copyArray.js */ 54196); +/* harmony import */ var _initCloneObject_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./_initCloneObject.js */ 71372); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 65306); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./isFunction.js */ 93084); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./isPlainObject.js */ 59702); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); +/* harmony import */ var _safeGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_safeGet.js */ 58883); +/* harmony import */ var _toPlainObject_js__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./toPlainObject.js */ 25949); @@ -77527,7 +88867,7 @@ function baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, sta /***/ }), -/***/ 4005: +/***/ 54005: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseProperty.js ***! \*************************************************/ @@ -77565,7 +88905,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 1527); +/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 31527); /** @@ -77584,7 +88924,7 @@ function basePropertyDeep(path) { /***/ }), -/***/ 9349: +/***/ 39349: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseRandom.js ***! \***********************************************/ @@ -77615,7 +88955,7 @@ function baseRandom(lower, upper) { /***/ }), -/***/ 7003: +/***/ 97003: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseReduce.js ***! \***********************************************/ @@ -77649,7 +88989,7 @@ function baseReduce(collection, iteratee, accumulator, initAccum, eachFunc) { /***/ }), -/***/ 5736: +/***/ 15736: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseRest.js ***! \*********************************************/ @@ -77660,9 +89000,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./identity.js */ 5416); -/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 9116); -/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 3483); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./identity.js */ 25416); +/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 89116); +/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 13483); @@ -77682,7 +89022,7 @@ function baseRest(func, start) { /***/ }), -/***/ 7873: +/***/ 97873: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseSet.js ***! \********************************************/ @@ -77693,11 +89033,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_assignValue.js */ 8676); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_assignValue.js */ 68676); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -77745,7 +89085,7 @@ function baseSet(object, path, value, customizer) { /***/ }), -/***/ 5095: +/***/ 55095: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_baseSetToString.js ***! \****************************************************/ @@ -77757,8 +89097,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _constant_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./constant.js */ 4324); -/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 1307); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./identity.js */ 5416); +/* harmony import */ var _defineProperty_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_defineProperty.js */ 11307); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./identity.js */ 25416); @@ -77783,7 +89123,7 @@ var baseSetToString = !_defineProperty_js__WEBPACK_IMPORTED_MODULE_0__["default" /***/ }), -/***/ 871: +/***/ 40871: /*!************************************************!*\ !*** ./node_modules/lodash-es/_baseShuffle.js ***! \************************************************/ @@ -77813,7 +89153,7 @@ function baseShuffle(collection) { /***/ }), -/***/ 1969: +/***/ 31969: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseSlice.js ***! \**********************************************/ @@ -77855,7 +89195,7 @@ function baseSlice(array, start, end) { /***/ }), -/***/ 6513: +/***/ 26513: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseTimes.js ***! \**********************************************/ @@ -77887,7 +89227,7 @@ function baseTimes(n, iteratee) { /***/ }), -/***/ 5696: +/***/ 25696: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_baseToString.js ***! \*************************************************/ @@ -77898,10 +89238,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isSymbol.js */ 67380); @@ -77941,7 +89281,7 @@ function baseToString(value) { /***/ }), -/***/ 9276: +/***/ 99276: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseTrim.js ***! \*********************************************/ @@ -77952,7 +89292,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _trimmedEndIndex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_trimmedEndIndex.js */ 8655); +/* harmony import */ var _trimmedEndIndex_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_trimmedEndIndex.js */ 88655); /** Used to match leading whitespace. */ @@ -77972,7 +89312,7 @@ function baseTrim(string) { /***/ }), -/***/ 7523: +/***/ 87523: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseUnary.js ***! \**********************************************/ @@ -77999,7 +89339,7 @@ function baseUnary(func) { /***/ }), -/***/ 3401: +/***/ 84560: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_baseUniq.js ***! \*********************************************/ @@ -78010,12 +89350,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 7081); -/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 6228); -/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 958); -/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 4066); -/* harmony import */ var _createSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_createSet.js */ 8809); -/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_setToArray.js */ 974); +/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_SetCache.js */ 77081); +/* harmony import */ var _arrayIncludes_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayIncludes.js */ 36228); +/* harmony import */ var _arrayIncludesWith_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayIncludesWith.js */ 20958); +/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cacheHas.js */ 44066); +/* harmony import */ var _createSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_createSet.js */ 78809); +/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_setToArray.js */ 60974); @@ -78084,7 +89424,7 @@ function baseUniq(array, iteratee, comparator) { /***/ }), -/***/ 3882: +/***/ 63882: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_baseUnset.js ***! \**********************************************/ @@ -78095,10 +89435,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./last.js */ 8013); -/* harmony import */ var _parent_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_parent.js */ 556); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./last.js */ 78013); +/* harmony import */ var _parent_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_parent.js */ 92171); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -78121,7 +89461,7 @@ function baseUnset(object, path) { /***/ }), -/***/ 8518: +/***/ 78518: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_baseValues.js ***! \***********************************************/ @@ -78132,7 +89472,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); /** @@ -78154,7 +89494,7 @@ function baseValues(object, props) { /***/ }), -/***/ 259: +/***/ 40259: /*!********************************************!*\ !*** ./node_modules/lodash-es/_baseXor.js ***! \********************************************/ @@ -78165,9 +89505,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseDifference_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseDifference.js */ 7925); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); -/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 3401); +/* harmony import */ var _baseDifference_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseDifference.js */ 87925); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); +/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 84560); @@ -78204,7 +89544,7 @@ function baseXor(arrays, iteratee, comparator) { /***/ }), -/***/ 4066: +/***/ 44066: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_cacheHas.js ***! \*********************************************/ @@ -78230,7 +89570,7 @@ function cacheHas(cache, key) { /***/ }), -/***/ 7259: +/***/ 37259: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_castFunction.js ***! \*************************************************/ @@ -78241,7 +89581,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 5416); +/* harmony import */ var _identity_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./identity.js */ 25416); /** @@ -78258,7 +89598,7 @@ function castFunction(value) { /***/ }), -/***/ 7478: +/***/ 17478: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_castPath.js ***! \*********************************************/ @@ -78269,10 +89609,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isKey.js */ 5836); -/* harmony import */ var _stringToPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stringToPath.js */ 1769); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isKey.js */ 75836); +/* harmony import */ var _stringToPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_stringToPath.js */ 21769); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 88511); @@ -78296,7 +89636,7 @@ function castPath(value, object) { /***/ }), -/***/ 2583: +/***/ 82583: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_cloneArrayBuffer.js ***! \*****************************************************/ @@ -78307,7 +89647,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Uint8Array.js */ 9764); +/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Uint8Array.js */ 49764); /** @@ -78326,7 +89666,7 @@ function cloneArrayBuffer(arrayBuffer) { /***/ }), -/***/ 1691: +/***/ 21691: /*!************************************************!*\ !*** ./node_modules/lodash-es/_cloneBuffer.js ***! \************************************************/ @@ -78337,7 +89677,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Detect free variable `exports`. */ @@ -78374,7 +89714,7 @@ function cloneBuffer(buffer, isDeep) { /***/ }), -/***/ 6892: +/***/ 16892: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_cloneDataView.js ***! \**************************************************/ @@ -78385,7 +89725,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 2583); +/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 82583); /** @@ -78404,7 +89744,7 @@ function cloneDataView(dataView, isDeep) { /***/ }), -/***/ 762: +/***/ 10762: /*!************************************************!*\ !*** ./node_modules/lodash-es/_cloneRegExp.js ***! \************************************************/ @@ -78445,7 +89785,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); /** Used to convert symbols to primitives and strings. */ @@ -78477,7 +89817,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 2583); +/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 82583); /** @@ -78496,7 +89836,7 @@ function cloneTypedArray(typedArray, isDeep) { /***/ }), -/***/ 4196: +/***/ 54196: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_copyArray.js ***! \**********************************************/ @@ -78528,7 +89868,7 @@ function copyArray(source, array) { /***/ }), -/***/ 7480: +/***/ 87480: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_copyObject.js ***! \***********************************************/ @@ -78539,8 +89879,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignValue.js */ 8676); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); +/* harmony import */ var _assignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_assignValue.js */ 68676); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); @@ -78577,7 +89917,7 @@ function copyObject(source, props, object, customizer) { /***/ }), -/***/ 3662: +/***/ 73662: /*!************************************************!*\ !*** ./node_modules/lodash-es/_copySymbols.js ***! \************************************************/ @@ -78588,7 +89928,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getSymbols.js */ 9294); @@ -78608,7 +89948,7 @@ function copySymbols(source, object) { /***/ }), -/***/ 7085: +/***/ 37085: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_copySymbolsIn.js ***! \**************************************************/ @@ -78619,8 +89959,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 9816); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 69816); @@ -78650,7 +89990,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); /** Used to detect overreaching core-js shims. */ @@ -78659,7 +89999,7 @@ var coreJsData = _root_js__WEBPACK_IMPORTED_MODULE_0__["default"]['__core-js_sha /***/ }), -/***/ 351: +/***/ 40351: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/_createAggregator.js ***! \*****************************************************/ @@ -78670,10 +90010,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayAggregator_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayAggregator.js */ 8851); -/* harmony import */ var _baseAggregator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseAggregator.js */ 6448); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayAggregator_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayAggregator.js */ 88851); +/* harmony import */ var _baseAggregator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseAggregator.js */ 44987); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -78698,7 +90038,7 @@ function createAggregator(setter, initializer) { /***/ }), -/***/ 7650: +/***/ 57650: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_createAssigner.js ***! \***************************************************/ @@ -78709,8 +90049,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 5736); -/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isIterateeCall.js */ 9154); +/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 15736); +/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isIterateeCall.js */ 79154); @@ -78746,7 +90086,7 @@ function createAssigner(assigner) { /***/ }), -/***/ 8772: +/***/ 58772: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_createBaseEach.js ***! \***************************************************/ @@ -78757,7 +90097,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); /** @@ -78791,7 +90131,7 @@ function createBaseEach(eachFunc, fromRight) { /***/ }), -/***/ 4400: +/***/ 24400: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_createBaseFor.js ***! \**************************************************/ @@ -78828,7 +90168,7 @@ function createBaseFor(fromRight) { /***/ }), -/***/ 5679: +/***/ 35679: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_createFind.js ***! \***********************************************/ @@ -78839,9 +90179,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -78871,7 +90211,7 @@ function createFind(findIndexFunc) { /***/ }), -/***/ 6569: +/***/ 56569: /*!************************************************!*\ !*** ./node_modules/lodash-es/_createRound.js ***! \************************************************/ @@ -78882,10 +90222,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 7861); -/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toNumber.js */ 567); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 37861); +/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toNumber.js */ 20567); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./toString.js */ 88511); @@ -78922,7 +90262,7 @@ function createRound(methodName) { /***/ }), -/***/ 8809: +/***/ 78809: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_createSet.js ***! \**********************************************/ @@ -78933,9 +90273,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Set.js */ 3684); -/* harmony import */ var _noop_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./noop.js */ 7183); -/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setToArray.js */ 974); +/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Set.js */ 23684); +/* harmony import */ var _noop_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./noop.js */ 87183); +/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_setToArray.js */ 60974); @@ -78968,7 +90308,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isPlainObject.js */ 9702); +/* harmony import */ var _isPlainObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isPlainObject.js */ 59702); /** @@ -78987,7 +90327,7 @@ function customOmitClone(value) { /***/ }), -/***/ 1307: +/***/ 11307: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_defineProperty.js ***! \***************************************************/ @@ -78998,7 +90338,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); var defineProperty = function () { try { @@ -79011,7 +90351,7 @@ var defineProperty = function () { /***/ }), -/***/ 7604: +/***/ 77604: /*!************************************************!*\ !*** ./node_modules/lodash-es/_equalArrays.js ***! \************************************************/ @@ -79022,9 +90362,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_SetCache.js */ 7081); -/* harmony import */ var _arraySome_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arraySome.js */ 2125); -/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_cacheHas.js */ 4066); +/* harmony import */ var _SetCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_SetCache.js */ 77081); +/* harmony import */ var _arraySome_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arraySome.js */ 72125); +/* harmony import */ var _cacheHas_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_cacheHas.js */ 44066); @@ -79102,7 +90442,7 @@ function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 8790: +/***/ 38790: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_equalByTag.js ***! \***********************************************/ @@ -79113,12 +90453,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Uint8Array.js */ 9764); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./eq.js */ 8325); -/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 7604); -/* harmony import */ var _mapToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapToArray.js */ 4269); -/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_setToArray.js */ 974); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _Uint8Array_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Uint8Array.js */ 49764); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./eq.js */ 28325); +/* harmony import */ var _equalArrays_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_equalArrays.js */ 77604); +/* harmony import */ var _mapToArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_mapToArray.js */ 74269); +/* harmony import */ var _setToArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_setToArray.js */ 60974); @@ -79222,7 +90562,7 @@ function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 457: +/***/ 40457: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_equalObjects.js ***! \*************************************************/ @@ -79233,7 +90573,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getAllKeys.js */ 4857); +/* harmony import */ var _getAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getAllKeys.js */ 44857); /** Used to compose bitmasks for value comparisons. */ @@ -79315,7 +90655,7 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { /***/ }), -/***/ 2462: +/***/ 82462: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_flatRest.js ***! \*********************************************/ @@ -79326,9 +90666,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _flatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./flatten.js */ 8864); -/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 9116); -/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 3483); +/* harmony import */ var _flatten_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./flatten.js */ 28864); +/* harmony import */ var _overRest_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_overRest.js */ 89116); +/* harmony import */ var _setToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_setToString.js */ 13483); @@ -79347,7 +90687,7 @@ function flatRest(func) { /***/ }), -/***/ 800: +/***/ 60800: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_freeGlobal.js ***! \***********************************************/ @@ -79364,7 +90704,7 @@ var freeGlobal = typeof global == 'object' && global && global.Object === Object /***/ }), -/***/ 4857: +/***/ 44857: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_getAllKeys.js ***! \***********************************************/ @@ -79375,9 +90715,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 341); +/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 70341); /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbols.js */ 9294); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -79407,9 +90747,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 341); -/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 9816); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _baseGetAllKeys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGetAllKeys.js */ 70341); +/* harmony import */ var _getSymbolsIn_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbolsIn.js */ 69816); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -79429,7 +90769,7 @@ function getAllKeysIn(object) { /***/ }), -/***/ 4564: +/***/ 54564: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_getMapData.js ***! \***********************************************/ @@ -79440,7 +90780,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isKeyable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKeyable.js */ 4405); +/* harmony import */ var _isKeyable_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKeyable.js */ 64405); /** @@ -79459,7 +90799,7 @@ function getMapData(map, key) { /***/ }), -/***/ 3741: +/***/ 33741: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_getMatchData.js ***! \*************************************************/ @@ -79470,8 +90810,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 6646); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _isStrictComparable_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_isStrictComparable.js */ 96646); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -79496,7 +90836,7 @@ function getMatchData(object) { /***/ }), -/***/ 2483: +/***/ 72483: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_getNative.js ***! \**********************************************/ @@ -79507,8 +90847,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsNative_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsNative.js */ 2020); -/* harmony import */ var _getValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getValue.js */ 1680); +/* harmony import */ var _baseIsNative_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIsNative.js */ 52020); +/* harmony import */ var _getValue_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getValue.js */ 91680); @@ -79528,7 +90868,7 @@ function getNative(object, key) { /***/ }), -/***/ 1640: +/***/ 41640: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_getPrototype.js ***! \*************************************************/ @@ -79539,7 +90879,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 4119); +/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 84119); /** Built-in value references. */ @@ -79548,7 +90888,7 @@ var getPrototype = (0,_overArg_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Objec /***/ }), -/***/ 1650: +/***/ 11650: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_getRawTag.js ***! \**********************************************/ @@ -79559,7 +90899,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); /** Used for built-in method references. */ @@ -79617,8 +90957,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 4423); -/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 1509); +/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 74423); +/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 71509); @@ -79651,7 +90991,7 @@ var getSymbols = !nativeGetSymbols ? _stubArray_js__WEBPACK_IMPORTED_MODULE_0__[ /***/ }), -/***/ 9816: +/***/ 69816: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_getSymbolsIn.js ***! \*************************************************/ @@ -79662,10 +91002,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_getPrototype.js */ 1640); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_getPrototype.js */ 41640); /* harmony import */ var _getSymbols_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getSymbols.js */ 9294); -/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 1509); +/* harmony import */ var _stubArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./stubArray.js */ 71509); @@ -79704,13 +91044,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _DataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_DataView.js */ 7558); +/* harmony import */ var _DataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_DataView.js */ 17558); /* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_Map.js */ 525); -/* harmony import */ var _Promise_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Promise.js */ 9433); -/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_Set.js */ 3684); -/* harmony import */ var _WeakMap_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_WeakMap.js */ 2680); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_toSource.js */ 1540); +/* harmony import */ var _Promise_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_Promise.js */ 89433); +/* harmony import */ var _Set_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_Set.js */ 23684); +/* harmony import */ var _WeakMap_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_WeakMap.js */ 12680); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _toSource_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_toSource.js */ 51540); @@ -79770,7 +91110,7 @@ if (_DataView_js__WEBPACK_IMPORTED_MODULE_1__["default"] && getTag(new _DataView /***/ }), -/***/ 1680: +/***/ 91680: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_getValue.js ***! \*********************************************/ @@ -79796,7 +91136,7 @@ function getValue(object, key) { /***/ }), -/***/ 1183: +/***/ 71183: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hasPath.js ***! \********************************************/ @@ -79807,12 +91147,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isLength.js */ 4080); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isLength.js */ 74080); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -79851,7 +91191,7 @@ function hasPath(object, path, hasFunc) { /***/ }), -/***/ 4014: +/***/ 64014: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_hashClear.js ***! \**********************************************/ @@ -79880,7 +91220,7 @@ function hashClear() { /***/ }), -/***/ 2208: +/***/ 32208: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_hashDelete.js ***! \***********************************************/ @@ -79910,7 +91250,7 @@ function hashDelete(key) { /***/ }), -/***/ 6546: +/***/ 16546: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hashGet.js ***! \********************************************/ @@ -79954,7 +91294,7 @@ function hashGet(key) { /***/ }), -/***/ 7343: +/***/ 32502: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hashHas.js ***! \********************************************/ @@ -79991,7 +91331,7 @@ function hashHas(key) { /***/ }), -/***/ 6788: +/***/ 36788: /*!********************************************!*\ !*** ./node_modules/lodash-es/_hashSet.js ***! \********************************************/ @@ -80028,7 +91368,7 @@ function hashSet(key, value) { /***/ }), -/***/ 7392: +/***/ 97392: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_initCloneArray.js ***! \***************************************************/ @@ -80067,7 +91407,7 @@ function initCloneArray(array) { /***/ }), -/***/ 586: +/***/ 20586: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_initCloneByTag.js ***! \***************************************************/ @@ -80078,9 +91418,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 2583); -/* harmony import */ var _cloneDataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_cloneDataView.js */ 6892); -/* harmony import */ var _cloneRegExp_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_cloneRegExp.js */ 762); +/* harmony import */ var _cloneArrayBuffer_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_cloneArrayBuffer.js */ 82583); +/* harmony import */ var _cloneDataView_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_cloneDataView.js */ 16892); +/* harmony import */ var _cloneRegExp_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_cloneRegExp.js */ 10762); /* harmony import */ var _cloneSymbol_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_cloneSymbol.js */ 6203); /* harmony import */ var _cloneTypedArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_cloneTypedArray.js */ 7721); @@ -80159,7 +91499,7 @@ function initCloneByTag(object, tag, isDeep) { /***/ }), -/***/ 1372: +/***/ 71372: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_initCloneObject.js ***! \****************************************************/ @@ -80170,9 +91510,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseCreate_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseCreate.js */ 1088); -/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 1640); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); +/* harmony import */ var _baseCreate_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseCreate.js */ 31088); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 41640); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); @@ -80191,7 +91531,7 @@ function initCloneObject(object) { /***/ }), -/***/ 3920: +/***/ 28336: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_isFlattenable.js ***! \**************************************************/ @@ -80202,9 +91542,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 2134); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _Symbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Symbol.js */ 82134); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -80226,7 +91566,7 @@ function isFlattenable(value) { /***/ }), -/***/ 6570: +/***/ 36570: /*!********************************************!*\ !*** ./node_modules/lodash-es/_isIndex.js ***! \********************************************/ @@ -80260,7 +91600,7 @@ function isIndex(value, length) { /***/ }), -/***/ 9154: +/***/ 79154: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_isIterateeCall.js ***! \***************************************************/ @@ -80271,10 +91611,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./eq.js */ 8325); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isIndex.js */ 6570); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _eq_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./eq.js */ 28325); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _isIndex_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_isIndex.js */ 36570); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); @@ -80304,7 +91644,7 @@ function isIterateeCall(value, index, object) { /***/ }), -/***/ 5836: +/***/ 75836: /*!******************************************!*\ !*** ./node_modules/lodash-es/_isKey.js ***! \******************************************/ @@ -80315,8 +91655,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isSymbol.js */ 67380); @@ -80346,7 +91686,7 @@ function isKey(value, object) { /***/ }), -/***/ 4405: +/***/ 64405: /*!**********************************************!*\ !*** ./node_modules/lodash-es/_isKeyable.js ***! \**********************************************/ @@ -80372,7 +91712,7 @@ function isKeyable(value) { /***/ }), -/***/ 8426: +/***/ 38426: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_isMasked.js ***! \*********************************************/ @@ -80406,7 +91746,7 @@ function isMasked(func) { /***/ }), -/***/ 4036: +/***/ 54036: /*!************************************************!*\ !*** ./node_modules/lodash-es/_isPrototype.js ***! \************************************************/ @@ -80436,7 +91776,7 @@ function isPrototype(value) { /***/ }), -/***/ 6646: +/***/ 96646: /*!*******************************************************!*\ !*** ./node_modules/lodash-es/_isStrictComparable.js ***! \*******************************************************/ @@ -80447,7 +91787,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); /** @@ -80465,7 +91805,7 @@ function isStrictComparable(value) { /***/ }), -/***/ 9537: +/***/ 99537: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_listCacheClear.js ***! \***************************************************/ @@ -80491,7 +91831,7 @@ function listCacheClear() { /***/ }), -/***/ 5126: +/***/ 15126: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_listCacheDelete.js ***! \****************************************************/ @@ -80502,7 +91842,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** Used for built-in method references. */ @@ -80539,7 +91879,7 @@ function listCacheDelete(key) { /***/ }), -/***/ 3936: +/***/ 23936: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_listCacheGet.js ***! \*************************************************/ @@ -80550,7 +91890,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** @@ -80571,7 +91911,7 @@ function listCacheGet(key) { /***/ }), -/***/ 9420: +/***/ 69420: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_listCacheHas.js ***! \*************************************************/ @@ -80582,7 +91922,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** @@ -80601,7 +91941,7 @@ function listCacheHas(key) { /***/ }), -/***/ 8886: +/***/ 88886: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_listCacheSet.js ***! \*************************************************/ @@ -80612,7 +91952,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 3342); +/* harmony import */ var _assocIndexOf_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_assocIndexOf.js */ 23342); /** @@ -80640,7 +91980,7 @@ function listCacheSet(key, value) { /***/ }), -/***/ 3771: +/***/ 43771: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheClear.js ***! \**************************************************/ @@ -80651,8 +91991,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _Hash_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Hash.js */ 3875); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _Hash_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_Hash.js */ 73875); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Map.js */ 525); @@ -80677,7 +92017,7 @@ function mapCacheClear() { /***/ }), -/***/ 9809: +/***/ 99809: /*!***************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheDelete.js ***! \***************************************************/ @@ -80688,7 +92028,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80709,7 +92049,7 @@ function mapCacheDelete(key) { /***/ }), -/***/ 9080: +/***/ 29080: /*!************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheGet.js ***! \************************************************/ @@ -80720,7 +92060,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80739,7 +92079,7 @@ function mapCacheGet(key) { /***/ }), -/***/ 9927: +/***/ 89927: /*!************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheHas.js ***! \************************************************/ @@ -80750,7 +92090,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80769,7 +92109,7 @@ function mapCacheHas(key) { /***/ }), -/***/ 8096: +/***/ 58096: /*!************************************************!*\ !*** ./node_modules/lodash-es/_mapCacheSet.js ***! \************************************************/ @@ -80780,7 +92120,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 4564); +/* harmony import */ var _getMapData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getMapData.js */ 54564); /** @@ -80804,7 +92144,7 @@ function mapCacheSet(key, value) { /***/ }), -/***/ 4269: +/***/ 74269: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_mapToArray.js ***! \***********************************************/ @@ -80834,7 +92174,7 @@ function mapToArray(map) { /***/ }), -/***/ 499: +/***/ 30499: /*!************************************************************!*\ !*** ./node_modules/lodash-es/_matchesStrictComparable.js ***! \************************************************************/ @@ -80866,7 +92206,7 @@ function matchesStrictComparable(key, srcValue) { /***/ }), -/***/ 5119: +/***/ 65119: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_memoizeCapped.js ***! \**************************************************/ @@ -80877,7 +92217,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _memoize_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./memoize.js */ 151); +/* harmony import */ var _memoize_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./memoize.js */ 80151); /** Used as the maximum memoize cache size. */ @@ -80916,7 +92256,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 2483); +/* harmony import */ var _getNative_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_getNative.js */ 72483); /* Built-in method references that are verified to be native. */ @@ -80925,7 +92265,7 @@ var nativeCreate = (0,_getNative_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Obj /***/ }), -/***/ 3058: +/***/ 93058: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_nativeKeys.js ***! \***********************************************/ @@ -80936,7 +92276,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 4119); +/* harmony import */ var _overArg_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_overArg.js */ 84119); /* Built-in method references for those with the same name as other `lodash` methods. */ @@ -80945,7 +92285,7 @@ var nativeKeys = (0,_overArg_js__WEBPACK_IMPORTED_MODULE_0__["default"])(Object. /***/ }), -/***/ 2879: +/***/ 22879: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_nativeKeysIn.js ***! \*************************************************/ @@ -80978,7 +92318,7 @@ function nativeKeysIn(object) { /***/ }), -/***/ 2596: +/***/ 92596: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_nodeUtil.js ***! \*********************************************/ @@ -80989,7 +92329,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 800); +/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 60800); /** Detect free variable `exports`. */ @@ -81056,7 +92396,7 @@ function objectToString(value) { /***/ }), -/***/ 4119: +/***/ 84119: /*!********************************************!*\ !*** ./node_modules/lodash-es/_overArg.js ***! \********************************************/ @@ -81084,7 +92424,7 @@ function overArg(func, transform) { /***/ }), -/***/ 9116: +/***/ 89116: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_overRest.js ***! \*********************************************/ @@ -81095,7 +92435,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _apply_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_apply.js */ 6318); +/* harmony import */ var _apply_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_apply.js */ 36318); /* Built-in method references for those with the same name as other `lodash` methods. */ @@ -81133,7 +92473,7 @@ function overRest(func, start, transform) { /***/ }), -/***/ 556: +/***/ 92171: /*!*******************************************!*\ !*** ./node_modules/lodash-es/_parent.js ***! \*******************************************/ @@ -81144,8 +92484,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 1527); -/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSlice.js */ 1969); +/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 31527); +/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSlice.js */ 31969); @@ -81164,7 +92504,7 @@ function parent(object, path) { /***/ }), -/***/ 6396: +/***/ 16396: /*!*****************************************!*\ !*** ./node_modules/lodash-es/_root.js ***! \*****************************************/ @@ -81175,7 +92515,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 800); +/* harmony import */ var _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_freeGlobal.js */ 60800); /** Detect free variable `self`. */ @@ -81187,7 +92527,7 @@ var root = _freeGlobal_js__WEBPACK_IMPORTED_MODULE_0__["default"] || freeSelf || /***/ }), -/***/ 3885: +/***/ 58883: /*!********************************************!*\ !*** ./node_modules/lodash-es/_safeGet.js ***! \********************************************/ @@ -81219,7 +92559,7 @@ function safeGet(object, key) { /***/ }), -/***/ 4924: +/***/ 64924: /*!************************************************!*\ !*** ./node_modules/lodash-es/_setCacheAdd.js ***! \************************************************/ @@ -81251,7 +92591,7 @@ function setCacheAdd(value) { /***/ }), -/***/ 8336: +/***/ 68336: /*!************************************************!*\ !*** ./node_modules/lodash-es/_setCacheHas.js ***! \************************************************/ @@ -81278,7 +92618,7 @@ function setCacheHas(value) { /***/ }), -/***/ 974: +/***/ 60974: /*!***********************************************!*\ !*** ./node_modules/lodash-es/_setToArray.js ***! \***********************************************/ @@ -81308,7 +92648,7 @@ function setToArray(set) { /***/ }), -/***/ 3483: +/***/ 13483: /*!************************************************!*\ !*** ./node_modules/lodash-es/_setToString.js ***! \************************************************/ @@ -81319,8 +92659,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseSetToString_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSetToString.js */ 5095); -/* harmony import */ var _shortOut_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_shortOut.js */ 8685); +/* harmony import */ var _baseSetToString_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseSetToString.js */ 55095); +/* harmony import */ var _shortOut_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_shortOut.js */ 58685); @@ -81337,7 +92677,7 @@ var setToString = (0,_shortOut_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_base /***/ }), -/***/ 8685: +/***/ 58685: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_shortOut.js ***! \*********************************************/ @@ -81396,7 +92736,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseRandom_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRandom.js */ 9349); +/* harmony import */ var _baseRandom_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRandom.js */ 39349); /** @@ -81436,7 +92776,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /** @@ -81454,7 +92794,7 @@ function stackClear() { /***/ }), -/***/ 5311: +/***/ 55311: /*!************************************************!*\ !*** ./node_modules/lodash-es/_stackDelete.js ***! \************************************************/ @@ -81484,7 +92824,7 @@ function stackDelete(key) { /***/ }), -/***/ 5121: +/***/ 95121: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_stackGet.js ***! \*********************************************/ @@ -81511,7 +92851,7 @@ function stackGet(key) { /***/ }), -/***/ 669: +/***/ 90669: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_stackHas.js ***! \*********************************************/ @@ -81538,7 +92878,7 @@ function stackHas(key) { /***/ }), -/***/ 9746: +/***/ 79746: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_stackSet.js ***! \*********************************************/ @@ -81549,9 +92889,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 2938); +/* harmony import */ var _ListCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_ListCache.js */ 32938); /* harmony import */ var _Map_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_Map.js */ 525); -/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_MapCache.js */ 795); +/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_MapCache.js */ 80795); @@ -81588,7 +92928,7 @@ function stackSet(key, value) { /***/ }), -/***/ 9343: +/***/ 69343: /*!**************************************************!*\ !*** ./node_modules/lodash-es/_strictIndexOf.js ***! \**************************************************/ @@ -81623,7 +92963,7 @@ function strictIndexOf(array, value, fromIndex) { /***/ }), -/***/ 1769: +/***/ 21769: /*!*************************************************!*\ !*** ./node_modules/lodash-es/_stringToPath.js ***! \*************************************************/ @@ -81634,7 +92974,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _memoizeCapped_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_memoizeCapped.js */ 5119); +/* harmony import */ var _memoizeCapped_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_memoizeCapped.js */ 65119); /** Used to match property names within property paths. */ @@ -81664,7 +93004,7 @@ var stringToPath = (0,_memoizeCapped_js__WEBPACK_IMPORTED_MODULE_0__["default"]) /***/ }), -/***/ 667: +/***/ 50667: /*!******************************************!*\ !*** ./node_modules/lodash-es/_toKey.js ***! \******************************************/ @@ -81675,7 +93015,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 67380); /** Used as references for various `Number` constants. */ @@ -81699,7 +93039,7 @@ function toKey(value) { /***/ }), -/***/ 1540: +/***/ 51540: /*!*********************************************!*\ !*** ./node_modules/lodash-es/_toSource.js ***! \*********************************************/ @@ -81738,7 +93078,7 @@ function toSource(func) { /***/ }), -/***/ 8655: +/***/ 88655: /*!****************************************************!*\ !*** ./node_modules/lodash-es/_trimmedEndIndex.js ***! \****************************************************/ @@ -81769,7 +93109,7 @@ function trimmedEndIndex(string) { /***/ }), -/***/ 64: +/***/ 90064: /*!*********************************************!*\ !*** ./node_modules/lodash-es/castArray.js ***! \*********************************************/ @@ -81780,7 +93120,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); /** @@ -81827,7 +93167,7 @@ function castArray() { /***/ }), -/***/ 5772: +/***/ 25772: /*!*****************************************!*\ !*** ./node_modules/lodash-es/chunk.js ***! \*****************************************/ @@ -81838,9 +93178,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseSlice.js */ 1969); -/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isIterateeCall.js */ 9154); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toInteger.js */ 7861); +/* harmony import */ var _baseSlice_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseSlice.js */ 31969); +/* harmony import */ var _isIterateeCall_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isIterateeCall.js */ 79154); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./toInteger.js */ 37861); @@ -81892,7 +93232,7 @@ function chunk(array, size, guard) { /***/ }), -/***/ 8717: +/***/ 48717: /*!*********************************************!*\ !*** ./node_modules/lodash-es/cloneDeep.js ***! \*********************************************/ @@ -81903,7 +93243,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseClone.js */ 8265); +/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseClone.js */ 68265); /** Used to compose bitmasks for cloning. */ @@ -81935,7 +93275,7 @@ function cloneDeep(value) { /***/ }), -/***/ 2984: +/***/ 32984: /*!******************************************!*\ !*** ./node_modules/lodash-es/concat.js ***! \******************************************/ @@ -81946,10 +93286,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayPush.js */ 1191); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); -/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_copyArray.js */ 4196); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayPush_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_arrayPush.js */ 11191); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); +/* harmony import */ var _copyArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_copyArray.js */ 54196); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -82033,7 +93373,7 @@ function constant(value) { /***/ }), -/***/ 8325: +/***/ 28325: /*!**************************************!*\ !*** ./node_modules/lodash-es/eq.js ***! \**************************************/ @@ -82083,7 +93423,7 @@ function eq(value, other) { /***/ }), -/***/ 9990: +/***/ 39990: /*!******************************************!*\ !*** ./node_modules/lodash-es/filter.js ***! \******************************************/ @@ -82094,10 +93434,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 4423); -/* harmony import */ var _baseFilter_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFilter.js */ 7295); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayFilter.js */ 74423); +/* harmony import */ var _baseFilter_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseFilter.js */ 57295); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -82152,7 +93492,7 @@ function filter(collection, predicate) { /***/ }), -/***/ 7386: +/***/ 87386: /*!****************************************!*\ !*** ./node_modules/lodash-es/find.js ***! \****************************************/ @@ -82163,8 +93503,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _createFind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createFind.js */ 5679); -/* harmony import */ var _findIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./findIndex.js */ 1646); +/* harmony import */ var _createFind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createFind.js */ 35679); +/* harmony import */ var _findIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./findIndex.js */ 71646); @@ -82209,7 +93549,7 @@ var find = (0,_createFind_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_findIndex /***/ }), -/***/ 1646: +/***/ 71646: /*!*********************************************!*\ !*** ./node_modules/lodash-es/findIndex.js ***! \*********************************************/ @@ -82220,9 +93560,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 4150); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toInteger.js */ 7861); +/* harmony import */ var _baseFindIndex_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseFindIndex.js */ 24150); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toInteger.js */ 37861); @@ -82280,7 +93620,7 @@ function findIndex(array, predicate, fromIndex) { /***/ }), -/***/ 8864: +/***/ 28864: /*!*******************************************!*\ !*** ./node_modules/lodash-es/flatten.js ***! \*******************************************/ @@ -82291,7 +93631,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); /** @@ -82316,7 +93656,7 @@ function flatten(array) { /***/ }), -/***/ 7175: +/***/ 47175: /*!***********************************************!*\ !*** ./node_modules/lodash-es/flattenDeep.js ***! \***********************************************/ @@ -82327,7 +93667,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 8607); +/* harmony import */ var _baseFlatten_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseFlatten.js */ 78607); /** Used as references for various `Number` constants. */ @@ -82355,7 +93695,7 @@ function flattenDeep(array) { /***/ }), -/***/ 913: +/***/ 40913: /*!*******************************************!*\ !*** ./node_modules/lodash-es/forEach.js ***! \*******************************************/ @@ -82366,10 +93706,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayEach.js */ 7528); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseEach.js */ 9121); -/* harmony import */ var _castFunction_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_castFunction.js */ 7259); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayEach_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayEach.js */ 47528); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseEach.js */ 59121); +/* harmony import */ var _castFunction_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_castFunction.js */ 37259); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -82413,7 +93753,7 @@ function forEach(collection, iteratee) { /***/ }), -/***/ 6687: +/***/ 26687: /*!***************************************!*\ !*** ./node_modules/lodash-es/get.js ***! \***************************************/ @@ -82424,7 +93764,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 1527); +/* harmony import */ var _baseGet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseGet.js */ 31527); /** @@ -82460,7 +93800,7 @@ function get(object, path, defaultValue) { /***/ }), -/***/ 408: +/***/ 20408: /*!*******************************************!*\ !*** ./node_modules/lodash-es/groupBy.js ***! \*******************************************/ @@ -82471,8 +93811,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 2681); -/* harmony import */ var _createAggregator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAggregator.js */ 351); +/* harmony import */ var _baseAssignValue_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseAssignValue.js */ 72681); +/* harmony import */ var _createAggregator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAggregator.js */ 40351); @@ -82516,7 +93856,7 @@ var groupBy = (0,_createAggregator_js__WEBPACK_IMPORTED_MODULE_0__["default"])(f /***/ }), -/***/ 4373: +/***/ 34373: /*!***************************************!*\ !*** ./node_modules/lodash-es/has.js ***! \***************************************/ @@ -82527,8 +93867,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseHas_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseHas.js */ 5566); -/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 1183); +/* harmony import */ var _baseHas_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseHas.js */ 95566); +/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 71183); @@ -82566,7 +93906,7 @@ function has(object, path) { /***/ }), -/***/ 3595: +/***/ 23595: /*!*****************************************!*\ !*** ./node_modules/lodash-es/hasIn.js ***! \*****************************************/ @@ -82578,7 +93918,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); /* harmony import */ var _baseHasIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseHasIn.js */ 2100); -/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 1183); +/* harmony import */ var _hasPath_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_hasPath.js */ 71183); @@ -82615,7 +93955,7 @@ function hasIn(object, path) { /***/ }), -/***/ 5416: +/***/ 25416: /*!********************************************!*\ !*** ./node_modules/lodash-es/identity.js ***! \********************************************/ @@ -82660,10 +94000,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseIndexOf.js */ 9994); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _isString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isString.js */ 9362); -/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 7861); +/* harmony import */ var _baseIndexOf_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseIndexOf.js */ 79994); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _isString_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isString.js */ 39362); +/* harmony import */ var _toInteger_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./toInteger.js */ 37861); /* harmony import */ var _values_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./values.js */ 8733); @@ -82717,7 +94057,7 @@ function includes(collection, value, fromIndex, guard) { /***/ }), -/***/ 7018: +/***/ 77018: /*!***********************************************!*\ !*** ./node_modules/lodash-es/isArguments.js ***! \***********************************************/ @@ -82728,7 +94068,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsArguments_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsArguments.js */ 4063); +/* harmony import */ var _baseIsArguments_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsArguments.js */ 34063); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -82769,7 +94109,7 @@ var isArguments = (0,_baseIsArguments_js__WEBPACK_IMPORTED_MODULE_0__["default"] /***/ }), -/***/ 6328: +/***/ 66328: /*!*******************************************!*\ !*** ./node_modules/lodash-es/isArray.js ***! \*******************************************/ @@ -82808,7 +94148,7 @@ var isArray = Array.isArray; /***/ }), -/***/ 4070: +/***/ 64070: /*!***********************************************!*\ !*** ./node_modules/lodash-es/isArrayLike.js ***! \***********************************************/ @@ -82819,8 +94159,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isFunction.js */ 3084); -/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isLength.js */ 4080); +/* harmony import */ var _isFunction_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isFunction.js */ 93084); +/* harmony import */ var _isLength_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isLength.js */ 74080); @@ -82856,7 +94196,7 @@ function isArrayLike(value) { /***/ }), -/***/ 5306: +/***/ 65306: /*!*****************************************************!*\ !*** ./node_modules/lodash-es/isArrayLikeObject.js ***! \*****************************************************/ @@ -82867,7 +94207,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -82904,7 +94244,7 @@ function isArrayLikeObject(value) { /***/ }), -/***/ 2467: +/***/ 92467: /*!********************************************!*\ !*** ./node_modules/lodash-es/isBuffer.js ***! \********************************************/ @@ -82915,8 +94255,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 6396); -/* harmony import */ var _stubFalse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stubFalse.js */ 8534); +/* harmony import */ var _root_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_root.js */ 16396); +/* harmony import */ var _stubFalse_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./stubFalse.js */ 68534); @@ -82957,7 +94297,7 @@ var isBuffer = nativeIsBuffer || _stubFalse_js__WEBPACK_IMPORTED_MODULE_1__["def /***/ }), -/***/ 1855: +/***/ 41855: /*!*******************************************!*\ !*** ./node_modules/lodash-es/isEmpty.js ***! \*******************************************/ @@ -82968,14 +94308,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseKeys.js */ 2093); +/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseKeys.js */ 22093); /* harmony import */ var _getTag_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_getTag.js */ 8020); -/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArguments.js */ 7018); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 6328); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); -/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 2467); -/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_isPrototype.js */ 4036); -/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 4752); +/* harmony import */ var _isArguments_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./isArguments.js */ 77018); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isArray.js */ 66328); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); +/* harmony import */ var _isBuffer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isBuffer.js */ 92467); +/* harmony import */ var _isPrototype_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_isPrototype.js */ 54036); +/* harmony import */ var _isTypedArray_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./isTypedArray.js */ 54752); @@ -83053,7 +94393,7 @@ function isEmpty(value) { /***/ }), -/***/ 4164: +/***/ 24164: /*!*******************************************!*\ !*** ./node_modules/lodash-es/isEqual.js ***! \*******************************************/ @@ -83064,7 +94404,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsEqual.js */ 153); +/* harmony import */ var _baseIsEqual_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseIsEqual.js */ 90153); /** @@ -83102,7 +94442,7 @@ function isEqual(value, other) { /***/ }), -/***/ 3084: +/***/ 93084: /*!**********************************************!*\ !*** ./node_modules/lodash-es/isFunction.js ***! \**********************************************/ @@ -83113,8 +94453,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 2176); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObject.js */ 32176); @@ -83154,7 +94494,7 @@ function isFunction(value) { /***/ }), -/***/ 4080: +/***/ 74080: /*!********************************************!*\ !*** ./node_modules/lodash-es/isLength.js ***! \********************************************/ @@ -83201,7 +94541,7 @@ function isLength(value) { /***/ }), -/***/ 1078: +/***/ 41078: /*!*****************************************!*\ !*** ./node_modules/lodash-es/isMap.js ***! \*****************************************/ @@ -83212,9 +94552,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMap.js */ 6934); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 2596); +/* harmony import */ var _baseIsMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsMap.js */ 56934); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 92596); @@ -83244,7 +94584,7 @@ var isMap = nodeIsMap ? (0,_baseUnary_js__WEBPACK_IMPORTED_MODULE_1__["default"] /***/ }), -/***/ 7570: +/***/ 17570: /*!******************************************!*\ !*** ./node_modules/lodash-es/isNull.js ***! \******************************************/ @@ -83279,7 +94619,7 @@ function isNull(value) { /***/ }), -/***/ 2176: +/***/ 32176: /*!********************************************!*\ !*** ./node_modules/lodash-es/isObject.js ***! \********************************************/ @@ -83365,7 +94705,7 @@ function isObjectLike(value) { /***/ }), -/***/ 9702: +/***/ 59702: /*!*************************************************!*\ !*** ./node_modules/lodash-es/isPlainObject.js ***! \*************************************************/ @@ -83376,8 +94716,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 1640); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _getPrototype_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_getPrototype.js */ 41640); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -83442,7 +94782,7 @@ function isPlainObject(value) { /***/ }), -/***/ 9584: +/***/ 29584: /*!*****************************************!*\ !*** ./node_modules/lodash-es/isSet.js ***! \*****************************************/ @@ -83453,9 +94793,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsSet.js */ 1469); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 2596); +/* harmony import */ var _baseIsSet_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsSet.js */ 91469); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 92596); @@ -83485,7 +94825,7 @@ var isSet = nodeIsSet ? (0,_baseUnary_js__WEBPACK_IMPORTED_MODULE_1__["default"] /***/ }), -/***/ 9362: +/***/ 39362: /*!********************************************!*\ !*** ./node_modules/lodash-es/isString.js ***! \********************************************/ @@ -83496,8 +94836,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -83530,7 +94870,7 @@ function isString(value) { /***/ }), -/***/ 7380: +/***/ 67380: /*!********************************************!*\ !*** ./node_modules/lodash-es/isSymbol.js ***! \********************************************/ @@ -83541,7 +94881,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 9304); +/* harmony import */ var _baseGetTag_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseGetTag.js */ 79304); /* harmony import */ var _isObjectLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isObjectLike.js */ 333); @@ -83573,7 +94913,7 @@ function isSymbol(value) { /***/ }), -/***/ 4752: +/***/ 54752: /*!************************************************!*\ !*** ./node_modules/lodash-es/isTypedArray.js ***! \************************************************/ @@ -83584,9 +94924,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIsTypedArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsTypedArray.js */ 970); -/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 7523); -/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 2596); +/* harmony import */ var _baseIsTypedArray_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseIsTypedArray.js */ 80970); +/* harmony import */ var _baseUnary_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseUnary.js */ 87523); +/* harmony import */ var _nodeUtil_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_nodeUtil.js */ 92596); @@ -83616,7 +94956,7 @@ var isTypedArray = nodeIsTypedArray ? (0,_baseUnary_js__WEBPACK_IMPORTED_MODULE_ /***/ }), -/***/ 4817: +/***/ 10153: /*!***********************************************!*\ !*** ./node_modules/lodash-es/isUndefined.js ***! \***********************************************/ @@ -83651,7 +94991,7 @@ function isUndefined(value) { /***/ }), -/***/ 1192: +/***/ 31192: /*!****************************************!*\ !*** ./node_modules/lodash-es/keys.js ***! \****************************************/ @@ -83662,9 +95002,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 4937); -/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseKeys.js */ 2093); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 54937); +/* harmony import */ var _baseKeys_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseKeys.js */ 22093); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); @@ -83704,7 +95044,7 @@ function keys(object) { /***/ }), -/***/ 2229: +/***/ 22229: /*!******************************************!*\ !*** ./node_modules/lodash-es/keysIn.js ***! \******************************************/ @@ -83715,9 +95055,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 4937); +/* harmony import */ var _arrayLikeKeys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayLikeKeys.js */ 54937); /* harmony import */ var _baseKeysIn_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseKeysIn.js */ 2171); -/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 4070); +/* harmony import */ var _isArrayLike_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArrayLike.js */ 64070); @@ -83752,7 +95092,7 @@ function keysIn(object) { /***/ }), -/***/ 8013: +/***/ 78013: /*!****************************************!*\ !*** ./node_modules/lodash-es/last.js ***! \****************************************/ @@ -83796,10 +95136,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMap.js */ 650); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseMap_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseMap.js */ 10650); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -83855,7 +95195,7 @@ function map(collection, iteratee) { /***/ }), -/***/ 151: +/***/ 80151: /*!*******************************************!*\ !*** ./node_modules/lodash-es/memoize.js ***! \*******************************************/ @@ -83866,7 +95206,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 795); +/* harmony import */ var _MapCache_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_MapCache.js */ 80795); /** Error message constants. */ @@ -83941,7 +95281,7 @@ memoize.Cache = _MapCache_js__WEBPACK_IMPORTED_MODULE_0__["default"]; /***/ }), -/***/ 4011: +/***/ 94011: /*!*****************************************!*\ !*** ./node_modules/lodash-es/merge.js ***! \*****************************************/ @@ -83952,8 +95292,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseMerge_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseMerge.js */ 5674); -/* harmony import */ var _createAssigner_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAssigner.js */ 7650); +/* harmony import */ var _baseMerge_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseMerge.js */ 45674); +/* harmony import */ var _createAssigner_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createAssigner.js */ 57650); @@ -83995,7 +95335,7 @@ var merge = (0,_createAssigner_js__WEBPACK_IMPORTED_MODULE_0__["default"])(funct /***/ }), -/***/ 7183: +/***/ 87183: /*!****************************************!*\ !*** ./node_modules/lodash-es/noop.js ***! \****************************************/ @@ -84025,7 +95365,7 @@ function noop() { /***/ }), -/***/ 6705: +/***/ 86705: /*!****************************************!*\ !*** ./node_modules/lodash-es/omit.js ***! \****************************************/ @@ -84036,13 +95376,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 4987); -/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseClone.js */ 8265); -/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseUnset.js */ 3882); -/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_castPath.js */ 7478); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyObject.js */ 7480); +/* harmony import */ var _arrayMap_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayMap.js */ 64987); +/* harmony import */ var _baseClone_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseClone.js */ 68265); +/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_baseUnset.js */ 63882); +/* harmony import */ var _castPath_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_castPath.js */ 17478); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_copyObject.js */ 87480); /* harmony import */ var _customOmitClone_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_customOmitClone.js */ 9295); -/* harmony import */ var _flatRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_flatRest.js */ 2462); +/* harmony import */ var _flatRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_flatRest.js */ 82462); /* harmony import */ var _getAllKeysIn_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_getAllKeysIn.js */ 9740); @@ -84103,7 +95443,7 @@ var omit = (0,_flatRest_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function (ob /***/ }), -/***/ 4691: +/***/ 14691: /*!********************************************!*\ !*** ./node_modules/lodash-es/property.js ***! \********************************************/ @@ -84114,10 +95454,10 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseProperty_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseProperty.js */ 4005); +/* harmony import */ var _baseProperty_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseProperty.js */ 54005); /* harmony import */ var _basePropertyDeep_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_basePropertyDeep.js */ 2539); -/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 5836); -/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 667); +/* harmony import */ var _isKey_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_isKey.js */ 75836); +/* harmony import */ var _toKey_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_toKey.js */ 50667); @@ -84152,7 +95492,7 @@ function property(path) { /***/ }), -/***/ 5935: +/***/ 45935: /*!******************************************!*\ !*** ./node_modules/lodash-es/reduce.js ***! \******************************************/ @@ -84163,11 +95503,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayReduce_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayReduce.js */ 2304); -/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseEach.js */ 9121); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseReduce_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseReduce.js */ 7003); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayReduce_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayReduce.js */ 52304); +/* harmony import */ var _baseEach_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_baseEach.js */ 59121); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseReduce_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseReduce.js */ 97003); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -84220,7 +95560,7 @@ function reduce(collection, iteratee, accumulator) { /***/ }), -/***/ 1745: +/***/ 61745: /*!*******************************************!*\ !*** ./node_modules/lodash-es/replace.js ***! \*******************************************/ @@ -84231,7 +95571,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 88511); /** @@ -84262,7 +95602,7 @@ function replace() { /***/ }), -/***/ 2502: +/***/ 42502: /*!*****************************************!*\ !*** ./node_modules/lodash-es/round.js ***! \*****************************************/ @@ -84273,7 +95613,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _createRound_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createRound.js */ 6569); +/* harmony import */ var _createRound_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_createRound.js */ 56569); /** @@ -84302,7 +95642,7 @@ var round = (0,_createRound_js__WEBPACK_IMPORTED_MODULE_0__["default"])('round') /***/ }), -/***/ 4509: +/***/ 14509: /*!***************************************!*\ !*** ./node_modules/lodash-es/set.js ***! \***************************************/ @@ -84313,7 +95653,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseSet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseSet.js */ 7873); +/* harmony import */ var _baseSet_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseSet.js */ 97873); /** @@ -84351,7 +95691,7 @@ function set(object, path, value) { /***/ }), -/***/ 4734: +/***/ 14734: /*!*******************************************!*\ !*** ./node_modules/lodash-es/shuffle.js ***! \*******************************************/ @@ -84362,9 +95702,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayShuffle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayShuffle.js */ 2292); -/* harmony import */ var _baseShuffle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseShuffle.js */ 871); -/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 6328); +/* harmony import */ var _arrayShuffle_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_arrayShuffle.js */ 42292); +/* harmony import */ var _baseShuffle_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseShuffle.js */ 40871); +/* harmony import */ var _isArray_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isArray.js */ 66328); @@ -84392,7 +95732,7 @@ function shuffle(collection) { /***/ }), -/***/ 1509: +/***/ 71509: /*!*********************************************!*\ !*** ./node_modules/lodash-es/stubArray.js ***! \*********************************************/ @@ -84428,7 +95768,7 @@ function stubArray() { /***/ }), -/***/ 8534: +/***/ 68534: /*!*********************************************!*\ !*** ./node_modules/lodash-es/stubFalse.js ***! \*********************************************/ @@ -84459,7 +95799,7 @@ function stubFalse() { /***/ }), -/***/ 2071: +/***/ 82071: /*!********************************************!*\ !*** ./node_modules/lodash-es/toFinite.js ***! \********************************************/ @@ -84470,7 +95810,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toNumber.js */ 567); +/* harmony import */ var _toNumber_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toNumber.js */ 20567); /** Used as references for various `Number` constants. */ @@ -84515,7 +95855,7 @@ function toFinite(value) { /***/ }), -/***/ 7861: +/***/ 37861: /*!*********************************************!*\ !*** ./node_modules/lodash-es/toInteger.js ***! \*********************************************/ @@ -84526,7 +95866,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toFinite_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFinite.js */ 2071); +/* harmony import */ var _toFinite_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFinite.js */ 82071); /** @@ -84564,7 +95904,7 @@ function toInteger(value) { /***/ }), -/***/ 5751: +/***/ 55751: /*!*******************************************!*\ !*** ./node_modules/lodash-es/toLower.js ***! \*******************************************/ @@ -84575,7 +95915,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 8511); +/* harmony import */ var _toString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toString.js */ 88511); /** @@ -84606,7 +95946,7 @@ function toLower(value) { /***/ }), -/***/ 567: +/***/ 20567: /*!********************************************!*\ !*** ./node_modules/lodash-es/toNumber.js ***! \********************************************/ @@ -84617,9 +95957,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseTrim_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseTrim.js */ 9276); -/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObject.js */ 2176); -/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 7380); +/* harmony import */ var _baseTrim_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_baseTrim.js */ 99276); +/* harmony import */ var _isObject_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./isObject.js */ 32176); +/* harmony import */ var _isSymbol_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./isSymbol.js */ 67380); @@ -84684,7 +96024,7 @@ function toNumber(value) { /***/ }), -/***/ 5949: +/***/ 25949: /*!*************************************************!*\ !*** ./node_modules/lodash-es/toPlainObject.js ***! \*************************************************/ @@ -84695,8 +96035,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 7480); -/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 2229); +/* harmony import */ var _copyObject_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_copyObject.js */ 87480); +/* harmony import */ var _keysIn_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keysIn.js */ 22229); @@ -84731,7 +96071,7 @@ function toPlainObject(value) { /***/ }), -/***/ 8511: +/***/ 88511: /*!********************************************!*\ !*** ./node_modules/lodash-es/toString.js ***! \********************************************/ @@ -84742,7 +96082,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseToString.js */ 5696); +/* harmony import */ var _baseToString_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseToString.js */ 25696); /** @@ -84784,8 +96124,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 3401); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseUniq_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUniq.js */ 84560); @@ -84819,7 +96159,7 @@ function uniqBy(array, iteratee) { /***/ }), -/***/ 9412: +/***/ 39412: /*!*****************************************!*\ !*** ./node_modules/lodash-es/unset.js ***! \*****************************************/ @@ -84830,7 +96170,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUnset.js */ 3882); +/* harmony import */ var _baseUnset_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseUnset.js */ 63882); /** @@ -84878,8 +96218,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _baseValues_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseValues.js */ 8518); -/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 1192); +/* harmony import */ var _baseValues_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseValues.js */ 78518); +/* harmony import */ var _keys_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keys.js */ 31192); @@ -84916,7 +96256,7 @@ function values(object) { /***/ }), -/***/ 9530: +/***/ 79530: /*!*****************************************!*\ !*** ./node_modules/lodash-es/xorBy.js ***! \*****************************************/ @@ -84927,12 +96267,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__) /* harmony export */ }); -/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_arrayFilter.js */ 4423); -/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseIteratee.js */ 4018); -/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 5736); -/* harmony import */ var _baseXor_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseXor.js */ 259); -/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 5306); -/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./last.js */ 8013); +/* harmony import */ var _arrayFilter_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_arrayFilter.js */ 74423); +/* harmony import */ var _baseIteratee_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_baseIteratee.js */ 34018); +/* harmony import */ var _baseRest_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_baseRest.js */ 15736); +/* harmony import */ var _baseXor_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_baseXor.js */ 40259); +/* harmony import */ var _isArrayLikeObject_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./isArrayLikeObject.js */ 65306); +/* harmony import */ var _last_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./last.js */ 78013); @@ -84974,7 +96314,7 @@ var xorBy = (0,_baseRest_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function (a /***/ }), -/***/ 2459: +/***/ 42459: /*!*********************************************************************************!*\ !*** ./node_modules/ngx-bootstrap/carousel/fesm2022/ngx-bootstrap-carousel.mjs ***! \*********************************************************************************/ @@ -84988,9 +96328,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ CarouselModule: () => (/* binding */ CarouselModule), /* harmony export */ SlideComponent: () => (/* binding */ SlideComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var ngx_bootstrap_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ngx-bootstrap/utils */ 8929); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var ngx_bootstrap_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ngx-bootstrap/utils */ 18929); @@ -86068,7 +97408,7 @@ class CarouselModule { /***/ }), -/***/ 8929: +/***/ 18929: /*!***************************************************************************!*\ !*** ./node_modules/ngx-bootstrap/utils/fesm2022/ngx-bootstrap-utils.mjs ***! \***************************************************************************/ @@ -86094,7 +97434,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ warnOnce: () => (/* binding */ warnOnce), /* harmony export */ window: () => (/* binding */ win) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); /** @@ -86298,7 +97638,6 @@ class LinkedList { this.asArray = []; // Array methods overriding END } - get(position) { if (this.length === 0 || position < 0 || position >= this.length) { return void 0; @@ -86604,7 +97943,7 @@ function warnOnce(msg) { /***/ }), -/***/ 1670: +/***/ 71670: /*!*********************************************************************!*\ !*** ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js ***! \*********************************************************************/ @@ -86653,7 +97992,7 @@ function _asyncToGenerator(fn) { "use strict"; (self["webpackChunkquml_player_wc"] = self["webpackChunkquml_player_wc"] || []).push([["main"],{ -/***/ 7207: +/***/ 57207: /*!****************************************************************!*\ !*** ./projects/quml-library/src/lib/alert/alert.component.ts ***! \****************************************************************/ @@ -86663,9 +98002,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AlertComponent: () => (/* binding */ AlertComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); @@ -86885,7 +98224,7 @@ class AlertComponent { /***/ }), -/***/ 3893: +/***/ 23893: /*!******************************************************************!*\ !*** ./projects/quml-library/src/lib/header/header.component.ts ***! \******************************************************************/ @@ -86895,13 +98234,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ HeaderComponent: () => (/* binding */ HeaderComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common */ 26575); /* harmony import */ var _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../icon/ans/ans.component */ 8188); -/* harmony import */ var _icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../icon/durationtimer/durationtimer.component */ 9905); -/* harmony import */ var _progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../progress-indicators/progress-indicators.component */ 1267); +/* harmony import */ var _icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../icon/durationtimer/durationtimer.component */ 29905); +/* harmony import */ var _progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../progress-indicators/progress-indicators.component */ 51267); @@ -87403,7 +98742,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AnsComponent: () => (/* binding */ AnsComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class AnsComponent { static #_ = this.ɵfac = function AnsComponent_Factory(t) { @@ -87432,7 +98771,7 @@ class AnsComponent { /***/ }), -/***/ 1228: +/***/ 11228: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/audio/audio.component.ts ***! \*********************************************************************/ @@ -87442,7 +98781,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AudioComponent: () => (/* binding */ AudioComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class AudioComponent { static #_ = this.ɵfac = function AudioComponent_Factory(t) { @@ -87478,7 +98817,7 @@ class AudioComponent { /***/ }), -/***/ 467: +/***/ 90467: /*!***************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/bookmark/bookmark.component.ts ***! \***************************************************************************/ @@ -87488,7 +98827,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ BookmarkComponent: () => (/* binding */ BookmarkComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class BookmarkComponent { static #_ = this.ɵfac = function BookmarkComponent_Factory(t) { @@ -87517,7 +98856,7 @@ class BookmarkComponent { /***/ }), -/***/ 5922: +/***/ 55922: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/close/close.component.ts ***! \*********************************************************************/ @@ -87527,7 +98866,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ CloseComponent: () => (/* binding */ CloseComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class CloseComponent { static #_ = this.ɵfac = function CloseComponent_Factory(t) { @@ -87556,7 +98895,7 @@ class CloseComponent { /***/ }), -/***/ 5019: +/***/ 85019: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/content/content.component.ts ***! \*************************************************************************/ @@ -87566,7 +98905,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ContentComponent: () => (/* binding */ ContentComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class ContentComponent { static #_ = this.ɵfac = function ContentComponent_Factory(t) { @@ -87598,7 +98937,7 @@ class ContentComponent { /***/ }), -/***/ 189: +/***/ 30189: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/correct/correct.component.ts ***! \*************************************************************************/ @@ -87608,7 +98947,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ CorrectComponent: () => (/* binding */ CorrectComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class CorrectComponent { static #_ = this.ɵfac = function CorrectComponent_Factory(t) { @@ -87637,7 +98976,7 @@ class CorrectComponent { /***/ }), -/***/ 9905: +/***/ 29905: /*!*************************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/durationtimer/durationtimer.component.ts ***! \*************************************************************************************/ @@ -87647,7 +98986,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ DurationtimerComponent: () => (/* binding */ DurationtimerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class DurationtimerComponent { static #_ = this.ɵfac = function DurationtimerComponent_Factory(t) { @@ -87676,7 +99015,7 @@ class DurationtimerComponent { /***/ }), -/***/ 4696: +/***/ 64696: /*!*******************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/hint/hint.component.ts ***! \*******************************************************************/ @@ -87686,7 +99025,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ HintComponent: () => (/* binding */ HintComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class HintComponent { static #_ = this.ɵfac = function HintComponent_Factory(t) { @@ -87715,7 +99054,7 @@ class HintComponent { /***/ }), -/***/ 2075: +/***/ 82075: /*!*******************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/menu/menu.component.ts ***! \*******************************************************************/ @@ -87725,7 +99064,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ MenuComponent: () => (/* binding */ MenuComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class MenuComponent { static #_ = this.ɵfac = function MenuComponent_Factory(t) { @@ -87754,7 +99093,7 @@ class MenuComponent { /***/ }), -/***/ 3651: +/***/ 33651: /*!*********************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/next-active/next-active.component.ts ***! \*********************************************************************************/ @@ -87764,7 +99103,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ NextActiveComponent: () => (/* binding */ NextActiveComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class NextActiveComponent { static #_ = this.ɵfac = function NextActiveComponent_Factory(t) { @@ -87822,7 +99161,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ NextComponent: () => (/* binding */ NextComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class NextComponent { static #_ = this.ɵfac = function NextComponent_Factory(t) { @@ -87870,7 +99209,7 @@ class NextComponent { /***/ }), -/***/ 9178: +/***/ 49178: /*!*****************************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/previous-active/previous-active.component.ts ***! \*****************************************************************************************/ @@ -87880,7 +99219,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ PreviousActiveComponent: () => (/* binding */ PreviousActiveComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class PreviousActiveComponent { static #_ = this.ɵfac = function PreviousActiveComponent_Factory(t) { @@ -87921,7 +99260,7 @@ class PreviousActiveComponent { /***/ }), -/***/ 664: +/***/ 50664: /*!***************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/previous/previous.component.ts ***! \***************************************************************************/ @@ -87931,7 +99270,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ PreviousComponent: () => (/* binding */ PreviousComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class PreviousComponent { static #_ = this.ɵfac = function PreviousComponent_Factory(t) { @@ -87979,7 +99318,7 @@ class PreviousComponent { /***/ }), -/***/ 4819: +/***/ 34819: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/share/share.component.ts ***! \*********************************************************************/ @@ -87989,7 +99328,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ShareComponent: () => (/* binding */ ShareComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class ShareComponent { static #_ = this.ɵfac = function ShareComponent_Factory(t) { @@ -88018,7 +99357,7 @@ class ShareComponent { /***/ }), -/***/ 413: +/***/ 40413: /*!*******************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/star/star.component.ts ***! \*******************************************************************/ @@ -88028,7 +99367,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ StarComponent: () => (/* binding */ StarComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class StarComponent { static #_ = this.ɵfac = function StarComponent_Factory(t) { @@ -88060,7 +99399,7 @@ class StarComponent { /***/ }), -/***/ 2205: +/***/ 72205: /*!*********************************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/startpagestaricon/startpagestaricon.component.ts ***! \*********************************************************************************************/ @@ -88070,7 +99409,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ StartpagestariconComponent: () => (/* binding */ StartpagestariconComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class StartpagestariconComponent { static #_ = this.ɵfac = function StartpagestariconComponent_Factory(t) { @@ -88102,7 +99441,7 @@ class StartpagestariconComponent { /***/ }), -/***/ 2162: +/***/ 52162: /*!*********************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/timer/timer.component.ts ***! \*********************************************************************/ @@ -88112,7 +99451,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ TimerComponent: () => (/* binding */ TimerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class TimerComponent { static #_ = this.ɵfac = function TimerComponent_Factory(t) { @@ -88154,7 +99493,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ WrongComponent: () => (/* binding */ WrongComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class WrongComponent { static #_ = this.ɵfac = function WrongComponent_Factory(t) { @@ -88186,7 +99525,7 @@ class WrongComponent { /***/ }), -/***/ 9736: +/***/ 99736: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/icon/zoom-in/zoom-in.component.ts ***! \*************************************************************************/ @@ -88196,7 +99535,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ZoomInComponent: () => (/* binding */ ZoomInComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class ZoomInComponent { static #_ = this.ɵfac = function ZoomInComponent_Factory(t) { @@ -88227,7 +99566,7 @@ class ZoomInComponent { /***/ }), -/***/ 2306: +/***/ 72306: /*!****************************************************************************!*\ !*** ./projects/quml-library/src/lib/main-player/main-player.component.ts ***! \****************************************************************************/ @@ -88237,27 +99576,27 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ MainPlayerComponent: () => (/* binding */ MainPlayerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 6687); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 26687); /* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 3715); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 4734); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 8717); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 7175); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 408); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 8013); -/* harmony import */ var _section_player_section_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../section-player/section-player.component */ 4970); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../telemetry-constants */ 1679); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 2525); -/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../player-constants */ 8831); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../util-service */ 4384); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 14734); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 48717); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 47175); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 20408); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 78013); +/* harmony import */ var _section_player_section_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../section-player/section-player.component */ 14970); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../telemetry-constants */ 71679); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var ally_js_esm_maintain_maintain__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ally.js/esm/maintain/_maintain */ 32525); +/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../player-constants */ 28831); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./../util-service */ 54384); /* harmony import */ var _services_transformation_service_transformation_service__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../services/transformation-service/transformation.service */ 8396); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 3873); -/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../header/header.component */ 3893); -/* harmony import */ var _scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../scoreboard/scoreboard.component */ 9186); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 83873); +/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../header/header.component */ 23893); +/* harmony import */ var _scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../scoreboard/scoreboard.component */ 19186); @@ -89043,7 +100382,7 @@ class MainPlayerComponent { /***/ }), -/***/ 305: +/***/ 50305: /*!**************************************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq-image-option/mcq-image-option.component.ts ***! \**************************************************************************************/ @@ -89053,9 +100392,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqImageOptionComponent: () => (/* binding */ McqImageOptionComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89188,7 +100527,7 @@ class McqImageOptionComponent { /***/ }), -/***/ 1879: +/***/ 51879: /*!**************************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq-option/mcq-option.component.ts ***! \**************************************************************************/ @@ -89198,14 +100537,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqOptionComponent: () => (/* binding */ McqOptionComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 4734); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 9990); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-image-option/mcq-image-option.component */ 305); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 14734); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 39990); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-image-option/mcq-image-option.component */ 50305); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89534,7 +100873,7 @@ class McqOptionComponent { /***/ }), -/***/ 4443: +/***/ 64443: /*!******************************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq-question/mcq-question.component.ts ***! \******************************************************************************/ @@ -89544,9 +100883,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqQuestionComponent: () => (/* binding */ McqQuestionComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89604,11 +100943,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqSolutionsComponent: () => (/* binding */ McqSolutionsComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _icon_close_close_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/close/close.component */ 5922); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _icon_close_close_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/close/close.component */ 55922); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -89760,7 +101099,7 @@ class McqSolutionsComponent { /***/ }), -/***/ 6633: +/***/ 16633: /*!************************************************************!*\ !*** ./projects/quml-library/src/lib/mcq/mcq.component.ts ***! \************************************************************/ @@ -89770,14 +101109,14 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ McqComponent: () => (/* binding */ McqComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 64); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../mcq-question/mcq-question.component */ 4443); -/* harmony import */ var _mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-option/mcq-option.component */ 1879); -/* harmony import */ var _quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../quml-popup/quml-popup.component */ 7921); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 90064); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../mcq-question/mcq-question.component */ 64443); +/* harmony import */ var _mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../mcq-option/mcq-option.component */ 51879); +/* harmony import */ var _quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../quml-popup/quml-popup.component */ 77921); @@ -90059,7 +101398,460 @@ class McqComponent { /***/ }), -/***/ 5989: +/***/ 88921: +/*!*********************************************************************!*\ + !*** ./projects/quml-library/src/lib/mtf/check-figure.directive.ts ***! + \*********************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ CheckFigureDirective: () => (/* binding */ CheckFigureDirective) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); + +class CheckFigureDirective { + constructor(el, renderer) { + this.el = el; + this.renderer = renderer; + } + ngAfterViewInit() { + this.checkForFigureTag(); + } + checkForFigureTag() { + const figureTag = this.el.nativeElement.querySelector('figure'); + const magnifyIcon = this.el.nativeElement.parentElement.querySelector('.zoom-icon'); + if (figureTag) { + this.renderer.setStyle(magnifyIcon, 'display', 'block'); + } else { + this.renderer.setStyle(magnifyIcon, 'display', 'none'); + } + } + static #_ = this.ɵfac = function CheckFigureDirective_Factory(t) { + return new (t || CheckFigureDirective)(_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef), _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_0__.Renderer2)); + }; + static #_2 = this.ɵdir = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵdefineDirective"]({ + type: CheckFigureDirective, + selectors: [["", "appCheckFigure", ""]] + }); +} + +/***/ }), + +/***/ 71568: +/*!********************************************************************************!*\ + !*** ./projects/quml-library/src/lib/mtf/mtf-options/mtf-options.component.ts ***! + \********************************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ MtfOptionsComponent: () => (/* binding */ MtfOptionsComponent) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 14734); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/cdk/drag-drop */ 17792); +/* harmony import */ var _check_figure_directive__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../check-figure.directive */ 88921); + + + + + + +function MtfOptionsComponent_ng_container_0_div_3_Template(rf, ctx) { + if (rf & 1) { + const _r7 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 7); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_0_div_3_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r7); + const ctx_r6 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r6.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r5 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r5.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_0_div_5_Template(rf, ctx) { + if (rf & 1) { + const _r11 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 10); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_0_div_5_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r11); + const ctx_r10 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r10.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r8 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("cdkDragData", option_r8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r8.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_0_div_6_Template(rf, ctx) { + if (rf & 1) { + const _r13 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "span", 13); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_0_div_6_Template_span_click_2_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r13); + const ctx_r12 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r12.closeModal()); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](3, "\u00D7"); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](4, "img", 14); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const ctx_r4 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("src", ctx_r4.selectedImageSrc, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeUrl"]); + } +} +function MtfOptionsComponent_ng_container_0_Template(rf, ctx) { + if (rf & 1) { + const _r15 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerStart"](0); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](1, "div", 1)(2, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](3, MtfOptionsComponent_ng_container_0_div_3_Template, 3, 1, "div", 3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](4, "div", 4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("cdkDropListDropped", function MtfOptionsComponent_ng_container_0_Template_div_cdkDropListDropped_4_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r15); + const ctx_r14 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r14.onDrop($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](5, MtfOptionsComponent_ng_container_0_div_5_Template, 3, 2, "div", 5); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](6, MtfOptionsComponent_ng_container_0_div_6_Template, 5, 1, "div", 6); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerEnd"](); + } + if (rf & 2) { + const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r0.shuffledOptions.left); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r0.shuffledOptions.right); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx_r0.isModalVisible); + } +} +function MtfOptionsComponent_ng_container_1_div_3_Template(rf, ctx) { + if (rf & 1) { + const _r22 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 20); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 8); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_1_div_3_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r22); + const ctx_r21 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r21.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r19 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r19.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_1_div_5_Template(rf, ctx) { + if (rf & 1) { + const _r26 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 21); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](1, "div", 22); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](2, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_1_div_5_Template_div_click_2_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r26); + const ctx_r25 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r25.openModal($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const option_r23 = ctx.$implicit; + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("cdkDragData", option_r23); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", option_r23.label, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + } +} +function MtfOptionsComponent_ng_container_1_div_6_Template(rf, ctx) { + if (rf & 1) { + const _r28 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "span", 13); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("click", function MtfOptionsComponent_ng_container_1_div_6_Template_span_click_2_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r28); + const ctx_r27 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r27.closeModal()); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtext"](3, "\u00D7"); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](4, "img", 14); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const ctx_r18 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("src", ctx_r18.selectedImageSrc, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeUrl"]); + } +} +function MtfOptionsComponent_ng_container_1_Template(rf, ctx) { + if (rf & 1) { + const _r30 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerStart"](0); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](1, "div", 15)(2, "div", 16); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](3, MtfOptionsComponent_ng_container_1_div_3_Template, 3, 1, "div", 17); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](4, "div", 18); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("cdkDropListDropped", function MtfOptionsComponent_ng_container_1_Template_div_cdkDropListDropped_4_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r30); + const ctx_r29 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r29.onDrop($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](5, MtfOptionsComponent_ng_container_1_div_5_Template, 3, 2, "div", 19); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](6, MtfOptionsComponent_ng_container_1_div_6_Template, 5, 1, "div", 6); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementContainerEnd"](); + } + if (rf & 2) { + const ctx_r1 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r1.shuffledOptions.left); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngForOf", ctx_r1.shuffledOptions.right); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx_r1.isModalVisible); + } +} +class MtfOptionsComponent { + constructor() { + this.reorderedOptions = new _angular_core__WEBPACK_IMPORTED_MODULE_1__.EventEmitter(); + this.optionsShuffled = false; + this.isModalVisible = false; + this.selectedImageSrc = ''; + this.shuffledOptions = { + left: [], + right: [] + }; + } + ngOnInit() { + this.shuffleMTFOptions(); + } + ngOnChanges() { + if (this.replayed || this.tryAgain) { + this.shuffleMTFOptions(); + } + } + shuffleMTFOptions() { + const leftOptions = this.options.left; + const rightOptions = this.options.right; + /* Left options will be shuffled if the shuffleOptions configuration is set to true */ + let shuffledLeft = this.shuffleOptions ? this.shuffleAndCheck(leftOptions) : leftOptions; + /* Right options will always be shuffled */ + let shuffledRight = this.shuffleAndCheck(rightOptions); + /* Ensure that the shuffled lists do not contain matching pairs */ + while (shuffledLeft.some((item, index) => item.value === shuffledRight[index].value)) { + shuffledRight = this.shuffleAndCheck(rightOptions); + } + this.shuffledOptions = { + left: shuffledLeft, + right: shuffledRight + }; + this.optionsShuffled = true; + } + shuffleAndCheck(array) { + let shuffledArray; + while (true) { + shuffledArray = lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](array); + if (shuffledArray.every((item, index) => item.value !== index)) { + break; + } + } + return shuffledArray; + } + onDrop(event) { + const droppedItem = event.item.data; + const currentIndex = this.shuffledOptions.right.indexOf(droppedItem); + const targetIndex = event.currentIndex; + this.swapRightOptions(currentIndex, targetIndex); + this.reorderedOptions.emit(this.shuffledOptions); + } + swapRightOptions(index1, index2) { + [this.shuffledOptions.right[index1], this.shuffledOptions.right[index2]] = [this.shuffledOptions.right[index2], this.shuffledOptions.right[index1]]; + } + openModal(event) { + const parentDiv = event.target.parentElement; + const figure = parentDiv.querySelector('figure'); + if (figure) { + const img = figure.querySelector('img'); + if (img) { + this.selectedImageSrc = img.src; + this.isModalVisible = true; + } + } + } + closeModal() { + this.isModalVisible = false; + } + static #_ = this.ɵfac = function MtfOptionsComponent_Factory(t) { + return new (t || MtfOptionsComponent)(); + }; + static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineComponent"]({ + type: MtfOptionsComponent, + selectors: [["quml-mtf-options"]], + inputs: { + options: "options", + layout: "layout", + shuffleOptions: "shuffleOptions", + replayed: "replayed", + tryAgain: "tryAgain" + }, + outputs: { + reorderedOptions: "reorderedOptions" + }, + features: [_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵNgOnChangesFeature"]], + decls: 2, + vars: 2, + consts: [[4, "ngIf"], [1, "main-div"], ["id", "leftSide"], ["class", "bubble-right", 4, "ngFor", "ngForOf"], ["id", "rightSide", "cdkDropList", "", 3, "cdkDropListDropped"], ["class", "bubble-left", "cdkDrag", "", "cdkDragBoundary", "#rightSide", 3, "cdkDragData", 4, "ngFor", "ngForOf"], ["class", "mft-modal modal", 4, "ngIf"], [1, "bubble-right"], ["appCheckFigure", "", 3, "innerHTML"], [1, "zoom-icon", 3, "click"], ["cdkDrag", "", "cdkDragBoundary", "#rightSide", 1, "bubble-left", 3, "cdkDragData"], [1, "mft-modal", "modal"], [1, "modal-content"], [1, "modal-close", 3, "click"], [3, "src"], [1, "horizontal-main"], ["id", "topSide"], ["class", "bubble-bottom", 4, "ngFor", "ngForOf"], ["id", "bottomSide", "cdkDropList", "", "cdkDropListOrientation", "horizontal", 3, "cdkDropListDropped"], ["class", "bubble-top", "cdkDrag", "", 3, "cdkDragData", 4, "ngFor", "ngForOf"], [1, "bubble-bottom"], ["cdkDrag", "", 1, "bubble-top", 3, "cdkDragData"], ["cdkDragBoundary", "#bottomSide", "appCheckFigure", "", 3, "innerHTML"]], + template: function MtfOptionsComponent_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](0, MtfOptionsComponent_ng_container_0_Template, 7, 3, "ng-container", 0); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](1, MtfOptionsComponent_ng_container_1_Template, 7, 3, "ng-container", 0); + } + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx.optionsShuffled && (ctx.layout === "VERTICAL" || ctx.layout === "DEFAULT")); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx.optionsShuffled && ctx.layout === "HORIZONTAL"); + } + }, + dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_3__.NgForOf, _angular_common__WEBPACK_IMPORTED_MODULE_3__.NgIf, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_4__.CdkDropList, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_4__.CdkDrag, _check_figure_directive__WEBPACK_IMPORTED_MODULE_0__.CheckFigureDirective], + styles: [".main-div[_ngcontent-%COMP%] {\n background: #eee;\n display: flex;\n width: 100%;\n padding: 2%;\n}\n\n#leftSide[_ngcontent-%COMP%] {\n flex-basis: 50%;\n}\n\n .main-div figure.image img, .horizontal-main figure.image img {\n width: 120px;\n height: 80px;\n object-fit: contain;\n}\n\n .main-div figure {\n margin: 0 0 0rem;\n}\n\n#rightSide[_ngcontent-%COMP%] {\n flex-basis: 50%;\n}\n\n.horizontal-main[_ngcontent-%COMP%] {\n background: #eee;\n width: 100%;\n padding: 20px;\n flex-wrap: wrap;\n justify-content: space-between;\n}\n\n#topSide[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: row;\n overflow: hidden;\n}\n\n#bottomSide[_ngcontent-%COMP%] {\n min-height: 60px;\n display: flex;\n flex-direction: row;\n margin-top: -3%;\n}\n\n.cdk-drag-preview[_ngcontent-%COMP%] {\n box-sizing: border-box;\n border-radius: 4px;\n}\n\n.cdk-drag-placeholder[_ngcontent-%COMP%] {\n opacity: 0;\n}\n\n.cdk-drag-animating[_ngcontent-%COMP%] {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n#bottomSide[_ngcontent-%COMP%] .cdk-drag-preview[_ngcontent-%COMP%] {\n box-sizing: border-box;\n border-radius: 4px;\n}\n\n#bottomSide[_ngcontent-%COMP%] .cdk-drag-placeholder[_ngcontent-%COMP%] {\n opacity: 0;\n}\n\n#bottomSide[_ngcontent-%COMP%] .cdk-drag-animating[_ngcontent-%COMP%] {\n transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);\n}\n\n.bubble-left[_ngcontent-%COMP%] {\n margin-left: 10px;\n padding: 50px;\n --size: 150px;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n border-radius: 10px;\n width: 100%;\n margin-bottom: 20px;\n border: solid 1px #ccc;\n color: rgba(0, 0, 0, 0.87);\n cursor: move;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n z-index: 1;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.bubble-left[_ngcontent-%COMP%]:before {\n content: \"\";\n position: absolute;\n left: 0;\n top: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-right-color: #fff;\n border-left: 0;\n margin-top: calc(var(--size) * 0.13 * -1);\n margin-left: calc(var(--size) * 0.13 * -1);\n}\n\n.bubble-right[_ngcontent-%COMP%] {\n --size: 150px;\n padding: 50px;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n cursor: not-allowed;\n border-radius: 10px;\n width: 100%;\n margin-bottom: 20px;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n -webkit-clip-path: polygon(100% 0, 100% 32%, 96% 51%, 100% 72%, 100% 100%, 50% 100%, 21% 100%, 0 100%, 0 0, 41% 0);\n clip-path: polygon(100% 0, 100% 32%, 96% 51%, 100% 72%, 100% 100%, 50% 100%, 21% 100%, 0 100%, 0 0, 41% 0);\n z-index: 1;\n}\n\n.bubble-right[_ngcontent-%COMP%]:before {\n content: \"\";\n position: absolute;\n right: 0;\n top: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-left-color: #fff;\n border-right: 0;\n margin-top: calc(var(--size) * 0.13 * -1);\n margin-right: calc(var(--size) * 0.13 * -1);\n}\n\n.bubble-bottom[_ngcontent-%COMP%] {\n margin: 10px;\n --size: 200px;\n margin-bottom: 30px;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n cursor: not-allowed;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n border-radius: 10px;\n width: 92%;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n z-index: 1;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n margin-bottom: 30px;\n -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 100%, 61% 100%, 50% 79%, 39% 100%, 0 100%, 0 0);\n clip-path: polygon(50% 0%, 100% 0, 100% 100%, 61% 100%, 50% 79%, 39% 100%, 0 100%, 0 0);\n}\n\n.bubble-bottom[_ngcontent-%COMP%]:after {\n content: \"\";\n position: absolute;\n bottom: 0;\n left: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-top-color: #fff;\n border-bottom: 0;\n margin-left: calc(var(--size) * 0.13 * -1);\n margin-bottom: calc(var(--size) * 0.13 * -1);\n}\n\n.bubble-top[_ngcontent-%COMP%] {\n cursor: move;\n margin: 10px;\n --size: 200px;\n margin-top: 2%;\n position: relative;\n width: var(--size);\n height: calc(var(--size) * 0.66);\n border-radius: 10px;\n width: 92%;\n margin-bottom: 10px;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n text-align: center;\n background: #fff;\n z-index: 1;\n box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);\n}\n\n.bubble-top[_ngcontent-%COMP%]:after {\n content: \"\";\n position: absolute;\n top: 0;\n left: 50%;\n width: 0;\n height: 0;\n border: calc(var(--size) * 0.13) solid transparent;\n border-bottom-color: #fff;\n border-top: 0;\n margin-left: calc(var(--size) * 0.13 * -1);\n margin-top: calc(var(--size) * 0.13 * -1);\n}\n\n.zoom-icon[_ngcontent-%COMP%] {\n position: absolute;\n right: 0;\n bottom: 0;\n width: 1.5rem;\n height: 1.5rem;\n border-top-left-radius: 0.5rem;\n cursor: pointer;\n background-color: var(--quml-color-primary-contrast);\n}\n\n.zoom-icon[_ngcontent-%COMP%]::after {\n content: \"\";\n position: absolute;\n bottom: 0.125rem;\n right: 0.125rem;\n z-index: 1;\n width: 1rem;\n height: 1rem;\n background-image: url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n\n.mft-modal.modal[_ngcontent-%COMP%] {\n display: flex;\n position: fixed;\n z-index: 1;\n left: 0;\n top: 0;\n width: 100%;\n height: 100%;\n overflow: auto;\n background-color: rgba(0, 0, 0, 0.9);\n justify-content: center;\n align-items: center;\n}\n\n.mft-modal.modal.modal-content[_ngcontent-%COMP%] {\n position: relative;\n max-width: 90%;\n max-height: 90%;\n}\n\n.modal-close[_ngcontent-%COMP%] {\n position: absolute;\n top: 10px;\n right: 25px;\n color: #fff;\n font-size: 35px;\n font-weight: bold;\n cursor: pointer;\n}\n\n@media screen and (max-width: 768px) {\n .main-div p {\n font-size: 12px;\n line-height: 20px;\n margin-bottom: 0px;\n }\n .horizontal-main p {\n font-size: 11px;\n line-height: 16px;\n margin-bottom: 0;\n }\n .horizontal-main[_ngcontent-%COMP%] {\n padding: 0px;\n }\n .bubble-right[_ngcontent-%COMP%] {\n padding: 0px;\n }\n .bubble-left[_ngcontent-%COMP%] {\n padding: 0px;\n }\n .bubble-bottom[_ngcontent-%COMP%] {\n margin: 10px 2px 20px;\n }\n .bubble-top[_ngcontent-%COMP%] {\n margin: 2% 2px 4px;\n }\n .main-div figure.image img, .horizontal-main figure.image img {\n width: 70px;\n height: 70px;\n object-fit: contain;\n }\n}\n@media screen and (min-width: 1200px) {\n .main-div p {\n font-size: 16px;\n line-height: 25px;\n margin-bottom: 0px;\n }\n .horizontal-main p {\n font-size: 16px;\n line-height: 25px;\n margin-bottom: 0px;\n }\n .mft-modal[_ngcontent-%COMP%] .modal-content[_ngcontent-%COMP%] img[_ngcontent-%COMP%] {\n width: 900px;\n height: 300px;\n object-fit: contain;\n }\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL210Zi9tdGYtb3B0aW9ucy9tdGYtb3B0aW9ucy5jb21wb25lbnQuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLGdCQUFBO0VBQ0EsYUFBQTtFQUNBLFdBQUE7RUFDQSxXQUFBO0FBQ0Y7O0FBRUE7RUFDRSxlQUFBO0FBQ0Y7O0FBRUE7O0VBRUUsWUFBQTtFQUNBLFlBQUE7RUFDQSxtQkFBQTtBQUNGOztBQUVBO0VBRUUsZ0JBQUE7QUFBRjs7QUFFQTtFQUNFLGVBQUE7QUFDRjs7QUFFQTtFQUNFLGdCQUFBO0VBQ0EsV0FBQTtFQUNBLGFBQUE7RUFDQSxlQUFBO0VBQ0EsOEJBQUE7QUFDRjs7QUFFQTtFQUNFLGFBQUE7RUFDQSxtQkFBQTtFQUNBLGdCQUFBO0FBQ0Y7O0FBRUE7RUFDRSxnQkFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QUFDRjs7QUFFQTtFQUNFLHNCQUFBO0VBQ0Esa0JBQUE7QUFDRjs7QUFFQTtFQUNFLFVBQUE7QUFDRjs7QUFFQTtFQUNFLHNEQUFBO0FBQ0Y7O0FBR0E7RUFDRSxzQkFBQTtFQUNBLGtCQUFBO0FBQUY7O0FBR0E7RUFDRSxVQUFBO0FBQUY7O0FBR0E7RUFDRSxzREFBQTtBQUFGOztBQUtBO0VBQ0UsaUJBQUE7RUFDQSxhQUFBO0VBQ0EsYUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0EsV0FBQTtFQUNBLG1CQUFBO0VBQ0Esc0JBQUE7RUFDQSwwQkFBQTtFQUNBLFlBQUE7RUFDQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsVUFBQTtFQUNBLCtHQUFBO0FBRkY7O0FBS0E7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxPQUFBO0VBQ0EsUUFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0Esa0RBQUE7RUFDQSx3QkFBQTtFQUNBLGNBQUE7RUFDQSx5Q0FBQTtFQUNBLDBDQUFBO0FBRkY7O0FBS0E7RUFDRSxhQUFBO0VBQ0EsYUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7RUFDQSxXQUFBO0VBQ0EsbUJBQUE7RUFDQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsK0dBQUE7RUFDQSxrSEFBQTtVQUFBLDBHQUFBO0VBQ0EsVUFBQTtBQUZGOztBQUtBO0VBQ0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFFBQUE7RUFDQSxRQUFBO0VBQ0EsU0FBQTtFQUNBLGtEQUFBO0VBQ0EsdUJBQUE7RUFDQSxlQUFBO0VBQ0EseUNBQUE7RUFDQSwyQ0FBQTtBQUZGOztBQUtBO0VBQ0UsWUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0Esa0JBQUE7RUFDQSxnQ0FBQTtFQUNBLG1CQUFBO0VBQ0EsVUFBQTtFQUNBLG9CQUFBO0VBQ0EsdUJBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxVQUFBO0VBQ0EsK0dBQUE7RUFDQSxtQkFBQTtFQUNBLCtGQUFBO1VBQUEsdUZBQUE7QUFGRjs7QUFLQTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLFNBQUE7RUFDQSxTQUFBO0VBQ0EsUUFBQTtFQUNBLFNBQUE7RUFDQSxrREFBQTtFQUNBLHNCQUFBO0VBQ0EsZ0JBQUE7RUFDQSwwQ0FBQTtFQUNBLDRDQUFBO0FBRkY7O0FBS0E7RUFDRSxZQUFBO0VBQ0EsWUFBQTtFQUNBLGFBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSxrQkFBQTtFQUNBLGdDQUFBO0VBQ0EsbUJBQUE7RUFDQSxVQUFBO0VBQ0EsbUJBQUE7RUFDQSxvQkFBQTtFQUNBLHVCQUFBO0VBQ0EsbUJBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsVUFBQTtFQUNBLCtHQUFBO0FBRkY7O0FBS0E7RUFDRSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxNQUFBO0VBQ0EsU0FBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0Esa0RBQUE7RUFDQSx5QkFBQTtFQUNBLGFBQUE7RUFDQSwwQ0FBQTtFQUNBLHlDQUFBO0FBRkY7O0FBS0E7RUFDRSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSw4QkFBQTtFQUNBLGVBQUE7RUFDQSxvREFBQTtBQUZGOztBQUtBO0VBQ0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxlQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EsdzREQUFBO0VBQ0Esc0JBQUE7RUFDQSw0QkFBQTtFQUNBLDJCQUFBO0FBRkY7O0FBS0E7RUFDRSxhQUFBO0VBQ0EsZUFBQTtFQUNBLFVBQUE7RUFDQSxPQUFBO0VBQ0EsTUFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0EsY0FBQTtFQUNBLG9DQUFBO0VBQ0EsdUJBQUE7RUFDQSxtQkFBQTtBQUZGOztBQUtBO0VBQ0Usa0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtBQUZGOztBQUtBO0VBQ0Usa0JBQUE7RUFDQSxTQUFBO0VBQ0EsV0FBQTtFQUNBLFdBQUE7RUFDQSxlQUFBO0VBQ0EsaUJBQUE7RUFDQSxlQUFBO0FBRkY7O0FBS0E7RUFDRTtJQUNFLGVBQUE7SUFDQSxpQkFBQTtJQUNBLGtCQUFBO0VBRkY7RUFLQTtJQUNFLGVBQUE7SUFDQSxpQkFBQTtJQUNBLGdCQUFBO0VBSEY7RUFNQTtJQUNFLFlBQUE7RUFKRjtFQU9BO0lBQ0UsWUFBQTtFQUxGO0VBUUE7SUFDRSxZQUFBO0VBTkY7RUFTQTtJQUNFLHFCQUFBO0VBUEY7RUFVQTtJQUNFLGtCQUFBO0VBUkY7RUFXQTs7SUFFRSxXQUFBO0lBQ0EsWUFBQTtJQUNBLG1CQUFBO0VBVEY7QUFDRjtBQVlBO0VBQ0U7SUFDRSxlQUFBO0lBQ0EsaUJBQUE7SUFDQSxrQkFBQTtFQVZGO0VBYUE7SUFDRSxlQUFBO0lBQ0EsaUJBQUE7SUFDQSxrQkFBQTtFQVhGO0VBY0E7SUFDRSxZQUFBO0lBQ0EsYUFBQTtJQUNBLG1CQUFBO0VBWkY7QUFDRiIsInNvdXJjZXNDb250ZW50IjpbIi5tYWluLWRpdiB7XG4gIGJhY2tncm91bmQ6ICNlZWU7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIHdpZHRoOiAxMDAlO1xuICBwYWRkaW5nOiAyJTtcbn1cblxuI2xlZnRTaWRlIHtcbiAgZmxleC1iYXNpczogNTAlO1xufVxuXG46Om5nLWRlZXAgLm1haW4tZGl2IGZpZ3VyZS5pbWFnZSBpbWcsXG46Om5nLWRlZXAgLmhvcml6b250YWwtbWFpbiBmaWd1cmUuaW1hZ2UgaW1nIHtcbiAgd2lkdGg6IDEyMHB4O1xuICBoZWlnaHQ6IDgwcHg7XG4gIG9iamVjdC1maXQ6IGNvbnRhaW47XG59XG5cbjo6bmctZGVlcCAubWFpbi1kaXYgZmlndXJlXG57XG4gIG1hcmdpbjogMCAwIDByZW07XG59XG4jcmlnaHRTaWRlIHtcbiAgZmxleC1iYXNpczogNTAlO1xufVxuXG4uaG9yaXpvbnRhbC1tYWluIHtcbiAgYmFja2dyb3VuZDogI2VlZTtcbiAgd2lkdGg6IDEwMCU7XG4gIHBhZGRpbmc6IDIwcHg7XG4gIGZsZXgtd3JhcDogd3JhcDtcbiAganVzdGlmeS1jb250ZW50OiBzcGFjZS1iZXR3ZWVuO1xufVxuXG4jdG9wU2lkZSB7XG4gIGRpc3BsYXk6IGZsZXg7XG4gIGZsZXgtZGlyZWN0aW9uOiByb3c7XG4gIG92ZXJmbG93OiBoaWRkZW47XG59XG5cbiNib3R0b21TaWRlIHtcbiAgbWluLWhlaWdodDogNjBweDtcbiAgZGlzcGxheTogZmxleDtcbiAgZmxleC1kaXJlY3Rpb246IHJvdztcbiAgbWFyZ2luLXRvcDogLTMlO1xufVxuXG4uY2RrLWRyYWctcHJldmlldyB7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cblxuLmNkay1kcmFnLXBsYWNlaG9sZGVyIHtcbiAgb3BhY2l0eTogMDtcbn1cblxuLmNkay1kcmFnLWFuaW1hdGluZyB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAyNTBtcyBjdWJpYy1iZXppZXIoMCwgMCwgMC4yLCAxKTtcbn1cblxuXG4jYm90dG9tU2lkZSAuY2RrLWRyYWctcHJldmlldyB7XG4gIGJveC1zaXppbmc6IGJvcmRlci1ib3g7XG4gIGJvcmRlci1yYWRpdXM6IDRweDtcbn1cblxuI2JvdHRvbVNpZGUgLmNkay1kcmFnLXBsYWNlaG9sZGVyIHtcbiAgb3BhY2l0eTogMDtcbn1cblxuI2JvdHRvbVNpZGUgLmNkay1kcmFnLWFuaW1hdGluZyB7XG4gIHRyYW5zaXRpb246IHRyYW5zZm9ybSAyNTBtcyBjdWJpYy1iZXppZXIoMCwgMCwgMC4yLCAxKTtcbn1cblxuXG4vL3VpIGNoYW5nZXNcbi5idWJibGUtbGVmdCB7XG4gIG1hcmdpbi1sZWZ0OiAxMHB4O1xuICBwYWRkaW5nOiA1MHB4O1xuICAtLXNpemU6IDE1MHB4O1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIHdpZHRoOiB2YXIoLS1zaXplKTtcbiAgaGVpZ2h0OiBjYWxjKHZhcigtLXNpemUpICogMC42Nik7XG4gIGJvcmRlci1yYWRpdXM6IDEwcHg7XG4gIHdpZHRoOiAxMDAlO1xuICBtYXJnaW4tYm90dG9tOiAyMHB4O1xuICBib3JkZXI6IHNvbGlkIDFweCAjY2NjO1xuICBjb2xvcjogcmdiYSgwLCAwLCAwLCAwLjg3KTtcbiAgY3Vyc29yOiBtb3ZlO1xuICBkaXNwbGF5OiBpbmxpbmUtZmxleDtcbiAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG4gIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgYmFja2dyb3VuZDogI2ZmZjtcbiAgei1pbmRleDogMTtcbiAgYm94LXNoYWRvdzogMCAzcHggMXB4IC0ycHggcmdiYSgwLCAwLCAwLCAwLjIpLCAwIDJweCAycHggMCByZ2JhKDAsIDAsIDAsIDAuMTQpLCAwIDFweCA1cHggMCByZ2JhKDAsIDAsIDAsIDAuMTIpO1xufVxuXG4uYnViYmxlLWxlZnQ6YmVmb3JlIHtcbiAgY29udGVudDogJyc7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgdG9wOiA1MCU7XG4gIHdpZHRoOiAwO1xuICBoZWlnaHQ6IDA7XG4gIGJvcmRlcjogY2FsYyh2YXIoLS1zaXplKSAqIDAuMTMpIHNvbGlkIHRyYW5zcGFyZW50O1xuICBib3JkZXItcmlnaHQtY29sb3I6ICNmZmY7XG4gIGJvcmRlci1sZWZ0OiAwO1xuICBtYXJnaW4tdG9wOiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbiAgbWFyZ2luLWxlZnQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjEzICogLTEpO1xufVxuXG4uYnViYmxlLXJpZ2h0IHtcbiAgLS1zaXplOiAxNTBweDtcbiAgcGFkZGluZzogNTBweDtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICB3aWR0aDogdmFyKC0tc2l6ZSk7XG4gIGhlaWdodDogY2FsYyh2YXIoLS1zaXplKSAqIDAuNjYpO1xuICBjdXJzb3I6IG5vdC1hbGxvd2VkO1xuICBib3JkZXItcmFkaXVzOiAxMHB4O1xuICB3aWR0aDogMTAwJTtcbiAgbWFyZ2luLWJvdHRvbTogMjBweDtcbiAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIGJveC1zaGFkb3c6IDAgM3B4IDFweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4yKSwgMCAycHggMnB4IDAgcmdiYSgwLCAwLCAwLCAwLjE0KSwgMCAxcHggNXB4IDAgcmdiYSgwLCAwLCAwLCAwLjEyKTtcbiAgY2xpcC1wYXRoOiBwb2x5Z29uKDEwMCUgMCwgMTAwJSAzMiUsIDk2JSA1MSUsIDEwMCUgNzIlLCAxMDAlIDEwMCUsIDUwJSAxMDAlLCAyMSUgMTAwJSwgMCAxMDAlLCAwIDAsIDQxJSAwKTtcbiAgei1pbmRleDogMTtcbn1cblxuLmJ1YmJsZS1yaWdodDpiZWZvcmUge1xuICBjb250ZW50OiAnJztcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICByaWdodDogMDtcbiAgdG9wOiA1MCU7XG4gIHdpZHRoOiAwO1xuICBoZWlnaHQ6IDA7XG4gIGJvcmRlcjogY2FsYyh2YXIoLS1zaXplKSAqIDAuMTMpIHNvbGlkIHRyYW5zcGFyZW50O1xuICBib3JkZXItbGVmdC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyLXJpZ2h0OiAwO1xuICBtYXJnaW4tdG9wOiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbiAgbWFyZ2luLXJpZ2h0OiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbn1cblxuLmJ1YmJsZS1ib3R0b20ge1xuICBtYXJnaW46IDEwcHg7XG4gIC0tc2l6ZTogMjAwcHg7XG4gIG1hcmdpbi1ib3R0b206IDMwcHg7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgd2lkdGg6IHZhcigtLXNpemUpO1xuICBoZWlnaHQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjY2KTtcbiAgY3Vyc29yOiBub3QtYWxsb3dlZDtcbiAgd2lkdGg6IHZhcigtLXNpemUpO1xuICBoZWlnaHQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjY2KTtcbiAgYm9yZGVyLXJhZGl1czogMTBweDtcbiAgd2lkdGg6IDkyJTtcbiAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIHotaW5kZXg6IDE7XG4gIGJveC1zaGFkb3c6IDAgM3B4IDFweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4yKSwgMCAycHggMnB4IDAgcmdiYSgwLCAwLCAwLCAwLjE0KSwgMCAxcHggNXB4IDAgcmdiYSgwLCAwLCAwLCAwLjEyKTtcbiAgbWFyZ2luLWJvdHRvbTogMzBweDtcbiAgY2xpcC1wYXRoOiBwb2x5Z29uKDUwJSAwJSwgMTAwJSAwLCAxMDAlIDEwMCUsIDYxJSAxMDAlLCA1MCUgNzklLCAzOSUgMTAwJSwgMCAxMDAlLCAwIDApO1xufVxuXG4uYnViYmxlLWJvdHRvbTphZnRlciB7XG4gIGNvbnRlbnQ6ICcnO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGJvdHRvbTogMDtcbiAgbGVmdDogNTAlO1xuICB3aWR0aDogMDtcbiAgaGVpZ2h0OiAwO1xuICBib3JkZXI6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjEzKSBzb2xpZCB0cmFuc3BhcmVudDtcbiAgYm9yZGVyLXRvcC1jb2xvcjogI2ZmZjtcbiAgYm9yZGVyLWJvdHRvbTogMDtcbiAgbWFyZ2luLWxlZnQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjEzICogLTEpO1xuICBtYXJnaW4tYm90dG9tOiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbn1cblxuLmJ1YmJsZS10b3Age1xuICBjdXJzb3I6IG1vdmU7XG4gIG1hcmdpbjogMTBweDtcbiAgLS1zaXplOiAyMDBweDtcbiAgbWFyZ2luLXRvcDogMiU7XG4gIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgd2lkdGg6IHZhcigtLXNpemUpO1xuICBoZWlnaHQ6IGNhbGModmFyKC0tc2l6ZSkgKiAwLjY2KTtcbiAgYm9yZGVyLXJhZGl1czogMTBweDtcbiAgd2lkdGg6IDkyJTtcbiAgbWFyZ2luLWJvdHRvbTogMTBweDtcbiAgZGlzcGxheTogaW5saW5lLWZsZXg7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIGJhY2tncm91bmQ6ICNmZmY7XG4gIHotaW5kZXg6IDE7XG4gIGJveC1zaGFkb3c6IDAgM3B4IDFweCAtMnB4IHJnYmEoMCwgMCwgMCwgMC4yKSwgMCAycHggMnB4IDAgcmdiYSgwLCAwLCAwLCAwLjE0KSwgMCAxcHggNXB4IDAgcmdiYSgwLCAwLCAwLCAwLjEyKTtcbn1cblxuLmJ1YmJsZS10b3A6YWZ0ZXIge1xuICBjb250ZW50OiAnJztcbiAgcG9zaXRpb246IGFic29sdXRlO1xuICB0b3A6IDA7XG4gIGxlZnQ6IDUwJTtcbiAgd2lkdGg6IDA7XG4gIGhlaWdodDogMDtcbiAgYm9yZGVyOiBjYWxjKHZhcigtLXNpemUpICogMC4xMykgc29saWQgdHJhbnNwYXJlbnQ7XG4gIGJvcmRlci1ib3R0b20tY29sb3I6ICNmZmY7XG4gIGJvcmRlci10b3A6IDA7XG4gIG1hcmdpbi1sZWZ0OiBjYWxjKHZhcigtLXNpemUpICogMC4xMyAqIC0xKTtcbiAgbWFyZ2luLXRvcDogY2FsYyh2YXIoLS1zaXplKSAqIDAuMTMgKiAtMSk7XG59XG5cbi56b29tLWljb24ge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHJpZ2h0OiAwO1xuICBib3R0b206IDA7XG4gIHdpZHRoOiAxLjVyZW07XG4gIGhlaWdodDogMS41cmVtO1xuICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAwLjVyZW07XG4gIGN1cnNvcjogcG9pbnRlcjtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0KTtcbn1cblxuLnpvb20taWNvbjo6YWZ0ZXIge1xuICBjb250ZW50OiBcIlwiO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGJvdHRvbTogMC4xMjVyZW07XG4gIHJpZ2h0OiAwLjEyNXJlbTtcbiAgei1pbmRleDogMTtcbiAgd2lkdGg6IDFyZW07XG4gIGhlaWdodDogMXJlbTtcbiAgYmFja2dyb3VuZC1pbWFnZTogdXJsKFwiZGF0YTppbWFnZS9zdmcreG1sLCUzQyUzRnhtbCB2ZXJzaW9uPScxLjAnJTNGJTNFJTNDc3ZnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZycgeG1sbnM6eGxpbms9J2h0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsnIHhtbG5zOnN2Z2pzPSdodHRwOi8vc3ZnanMuY29tL3N2Z2pzJyB2ZXJzaW9uPScxLjEnIHdpZHRoPSc1MTInIGhlaWdodD0nNTEyJyB4PScwJyB5PScwJyB2aWV3Qm94PScwIDAgMzcuMTY2IDM3LjE2Nicgc3R5bGU9J2VuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMicgeG1sOnNwYWNlPSdwcmVzZXJ2ZScgY2xhc3M9JyclM0UlM0NnJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDcGF0aCBkPSdNMzUuODI5LDMyLjA0NWwtNi44MzMtNi44MzNjLTAuNTEzLTAuNTEzLTEuMTY3LTAuNzg4LTEuODM2LTAuODUzYzIuMDYtMi41NjcsMy4yOTgtNS44MTksMy4yOTgtOS4zNTkgYzAtOC4yNzEtNi43MjktMTUtMTUtMTVjLTguMjcxLDAtMTUsNi43MjktMTUsMTVjMCw4LjI3MSw2LjcyOSwxNSwxNSwxNWMzLjEyMSwwLDYuMDIxLTAuOTYsOC40MjQtMi41OTggYzAuMDE4LDAuNzQ0LDAuMzA1LDEuNDgyLDAuODcyLDIuMDUybDYuODMzLDYuODMzYzAuNTg1LDAuNTg2LDEuMzU0LDAuODc5LDIuMTIxLDAuODc5czEuNTM2LTAuMjkzLDIuMTIxLTAuODc5IEMzNy4wMDEsMzUuMTE2LDM3LjAwMSwzMy4yMTcsMzUuODI5LDMyLjA0NXogTTE1LjQ1OCwyNWMtNS41MTQsMC0xMC00LjQ4NC0xMC0xMGMwLTUuNTE0LDQuNDg2LTEwLDEwLTEwYzUuNTE0LDAsMTAsNC40ODYsMTAsMTAgQzI1LjQ1OCwyMC41MTYsMjAuOTcyLDI1LDE1LjQ1OCwyNXogTTIyLjMzNCwxNWMwLDEuMTA0LTAuODk2LDItMiwyaC0yLjc1djIuNzVjMCwxLjEwNC0wLjg5NiwyLTIsMnMtMi0wLjg5Ni0yLTJWMTdoLTIuNzUgYy0xLjEwNCwwLTItMC44OTYtMi0yczAuODk2LTIsMi0yaDIuNzV2LTIuNzVjMC0xLjEwNCwwLjg5Ni0yLDItMnMyLDAuODk2LDIsMlYxM2gyLjc1QzIxLjQzOCwxMywyMi4zMzQsMTMuODk1LDIyLjMzNCwxNXonIGZpbGw9JyUyM2ZmZmZmZicgZGF0YS1vcmlnaW5hbD0nJTIzMDAwMDAwJyBzdHlsZT0nJyBjbGFzcz0nJy8lM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQy9nJTNFJTNDL3N2ZyUzRSUwQVwiKTtcbiAgYmFja2dyb3VuZC1zaXplOiBjb3ZlcjtcbiAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgYmFja2dyb3VuZC1wb3NpdGlvbjogY2VudGVyO1xufVxuXG4ubWZ0LW1vZGFsLm1vZGFsIHtcbiAgZGlzcGxheTogZmxleDtcbiAgcG9zaXRpb246IGZpeGVkO1xuICB6LWluZGV4OiAxO1xuICBsZWZ0OiAwO1xuICB0b3A6IDA7XG4gIHdpZHRoOiAxMDAlO1xuICBoZWlnaHQ6IDEwMCU7XG4gIG92ZXJmbG93OiBhdXRvO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiByZ2JhKDAsIDAsIDAsIDAuOSk7XG4gIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICBhbGlnbi1pdGVtczogY2VudGVyO1xufVxuXG4ubWZ0LW1vZGFsLm1vZGFsLm1vZGFsLWNvbnRlbnQge1xuICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gIG1heC13aWR0aDogOTAlO1xuICBtYXgtaGVpZ2h0OiA5MCU7XG59XG5cbi5tb2RhbC1jbG9zZSB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgdG9wOiAxMHB4O1xuICByaWdodDogMjVweDtcbiAgY29sb3I6ICNmZmY7XG4gIGZvbnQtc2l6ZTogMzVweDtcbiAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gIGN1cnNvcjogcG9pbnRlcjtcbn1cblxuQG1lZGlhIHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgOjpuZy1kZWVwLm1haW4tZGl2IHAge1xuICAgIGZvbnQtc2l6ZTogMTJweDtcbiAgICBsaW5lLWhlaWdodDogMjBweDtcbiAgICBtYXJnaW4tYm90dG9tOiAwcHg7XG4gIH1cblxuICA6Om5nLWRlZXAuaG9yaXpvbnRhbC1tYWluIHAge1xuICAgIGZvbnQtc2l6ZTogMTFweDtcbiAgICBsaW5lLWhlaWdodDogMTZweDtcbiAgICBtYXJnaW4tYm90dG9tOiAwO1xuICB9XG5cbiAgLmhvcml6b250YWwtbWFpbiB7XG4gICAgcGFkZGluZzogMHB4O1xuICB9XG5cbiAgLmJ1YmJsZS1yaWdodCB7XG4gICAgcGFkZGluZzogMHB4O1xuICB9XG5cbiAgLmJ1YmJsZS1sZWZ0IHtcbiAgICBwYWRkaW5nOiAwcHg7XG4gIH1cblxuICAuYnViYmxlLWJvdHRvbSB7XG4gICAgbWFyZ2luOiAxMHB4IDJweCAyMHB4O1xuICB9XG5cbiAgLmJ1YmJsZS10b3Age1xuICAgIG1hcmdpbjogMiUgMnB4IDRweDtcbiAgfVxuXG4gIDo6bmctZGVlcCAubWFpbi1kaXYgZmlndXJlLmltYWdlIGltZyxcbiAgOjpuZy1kZWVwIC5ob3Jpem9udGFsLW1haW4gZmlndXJlLmltYWdlIGltZyB7XG4gICAgd2lkdGg6IDcwcHg7XG4gICAgaGVpZ2h0OiA3MHB4O1xuICAgIG9iamVjdC1maXQ6IGNvbnRhaW47XG4gIH1cbn1cblxuQG1lZGlhIHNjcmVlbiBhbmQgKG1pbi13aWR0aDogMTIwMHB4KSB7XG4gIDo6bmctZGVlcC5tYWluLWRpdiBwIHtcbiAgICBmb250LXNpemU6IDE2cHg7XG4gICAgbGluZS1oZWlnaHQ6IDI1cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICB9XG5cbiAgOjpuZy1kZWVwLmhvcml6b250YWwtbWFpbiBwIHtcbiAgICBmb250LXNpemU6IDE2cHg7XG4gICAgbGluZS1oZWlnaHQ6IDI1cHg7XG4gICAgbWFyZ2luLWJvdHRvbTogMHB4O1xuICB9XG5cbiAgLm1mdC1tb2RhbCAubW9kYWwtY29udGVudCBpbWcge1xuICAgIHdpZHRoOiA5MDBweDtcbiAgICBoZWlnaHQ6IDMwMHB4O1xuICAgIG9iamVjdC1maXQ6IGNvbnRhaW47XG4gIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */"] + }); +} + +/***/ }), + +/***/ 30960: +/*!************************************************************!*\ + !*** ./projects/quml-library/src/lib/mtf/mtf.component.ts ***! + \************************************************************/ +/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { + +__webpack_require__.r(__webpack_exports__); +/* harmony export */ __webpack_require__.d(__webpack_exports__, { +/* harmony export */ MtfComponent: () => (/* binding */ MtfComponent) +/* harmony export */ }); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mtf-options/mtf-options.component */ 71568); + + + + +function MtfComponent_div_0_quml_mtf_options_3_Template(rf, ctx) { + if (rf & 1) { + const _r3 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "quml-mtf-options", 5); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵlistener"]("reorderedOptions", function MtfComponent_div_0_quml_mtf_options_3_Template_quml_mtf_options_reorderedOptions_0_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵrestoreView"](_r3); + const ctx_r2 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵresetView"](ctx_r2.handleReorderedOptions($event)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + } + if (rf & 2) { + const ctx_r1 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("shuffleOptions", ctx_r1.shuffleOptions)("replayed", ctx_r1.replayed)("tryAgain", ctx_r1.tryAgain)("options", ctx_r1.interactions.response1.options)("layout", ctx_r1.layout); + } +} +function MtfComponent_div_0_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementStart"](0, "div", 1)(1, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelement"](2, "p", 3); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](3, MtfComponent_div_0_quml_mtf_options_3_Template, 1, 5, "quml-mtf-options", 4); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵelementEnd"](); + } + if (rf & 2) { + const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("innerHTML", ctx_r0.questionBody, _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵsanitizeHtml"]); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx_r0.interactions == null ? null : ctx_r0.interactions.response1 == null ? null : ctx_r0.interactions.response1.options); + } +} +class MtfComponent { + constructor() { + this.optionsReordered = new _angular_core__WEBPACK_IMPORTED_MODULE_1__.EventEmitter(); + } + ngOnInit() { + this.initialize(); + } + initialize() { + this.setLayout(); + this.interactions = this.question?.interactions; + this.questionBody = this.question?.body; + } + setLayout() { + const templateId = this.question?.templateId; + if (templateId === 'mtf-vertical') { + this.layout = 'VERTICAL'; + } else if (templateId === 'mtf-horizontal') { + this.layout = 'HORIZONTAL'; + } else { + console.error('Invalid or undefined templateId'); + this.layout = 'DEFAULT'; + } + } + handleReorderedOptions(reorderedOptions) { + this.optionsReordered.emit(reorderedOptions); + } + static #_ = this.ɵfac = function MtfComponent_Factory(t) { + return new (t || MtfComponent)(); + }; + static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵdefineComponent"]({ + type: MtfComponent, + selectors: [["quml-mtf"]], + inputs: { + question: "question", + shuffleOptions: "shuffleOptions", + replayed: "replayed", + tryAgain: "tryAgain" + }, + outputs: { + optionsReordered: "optionsReordered" + }, + decls: 1, + vars: 1, + consts: [["class", "question-body", 4, "ngIf"], [1, "question-body"], [1, "mtf-title"], [3, "innerHTML"], [3, "shuffleOptions", "replayed", "tryAgain", "options", "layout", "reorderedOptions", 4, "ngIf"], [3, "shuffleOptions", "replayed", "tryAgain", "options", "layout", "reorderedOptions"]], + template: function MtfComponent_Template(rf, ctx) { + if (rf & 1) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵtemplate"](0, MtfComponent_div_0_Template, 4, 2, "div", 0); + } + if (rf & 2) { + _angular_core__WEBPACK_IMPORTED_MODULE_1__["ɵɵproperty"]("ngIf", ctx.questionBody); + } + }, + dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_2__.NgIf, _mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_0__.MtfOptionsComponent], + styles: [".quml-mtf[_ngcontent-%COMP%] {\n padding: 0px;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL210Zi9tdGYuY29tcG9uZW50LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7RUFDRSxZQUFBO0FBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyIucXVtbC1tdGYge1xuICBwYWRkaW5nOiAwcHg7XG59Il0sInNvdXJjZVJvb3QiOiIifQ== */"] + }); +} + +/***/ }), + +/***/ 75989: /*!*************************************************************************!*\ !*** ./projects/quml-library/src/lib/pipes/safe-html/safe-html.pipe.ts ***! \*************************************************************************/ @@ -90069,8 +101861,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SafeHtmlPipe: () => (/* binding */ SafeHtmlPipe) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/platform-browser */ 6480); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/platform-browser */ 36480); class SafeHtmlPipe { @@ -90092,7 +101884,7 @@ class SafeHtmlPipe { /***/ }), -/***/ 8831: +/***/ 28831: /*!***********************************************************!*\ !*** ./projects/quml-library/src/lib/player-constants.ts ***! \***********************************************************/ @@ -90113,7 +101905,7 @@ const COMPATABILITY_LEVEL = 6; /***/ }), -/***/ 1267: +/***/ 51267: /*!********************************************************************************************!*\ !*** ./projects/quml-library/src/lib/progress-indicators/progress-indicators.component.ts ***! \********************************************************************************************/ @@ -90123,8 +101915,8 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ProgressIndicatorsComponent: () => (/* binding */ ProgressIndicatorsComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ 26575); @@ -90226,7 +102018,7 @@ class ProgressIndicatorsComponent { /***/ }), -/***/ 2792: +/***/ 92792: /*!*****************************************************************!*\ !*** ./projects/quml-library/src/lib/quml-library.component.ts ***! \*****************************************************************/ @@ -90236,7 +102028,7 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QumlLibraryComponent: () => (/* binding */ QumlLibraryComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ 61699); class QumlLibraryComponent { static #_ = this.ɵfac = function QumlLibraryComponent_Factory(t) { @@ -90260,7 +102052,7 @@ class QumlLibraryComponent { /***/ }), -/***/ 1073: +/***/ 81073: /*!***************************************************************!*\ !*** ./projects/quml-library/src/lib/quml-library.service.ts ***! \***************************************************************/ @@ -90270,13 +102062,13 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QumlLibraryService: () => (/* binding */ QumlLibraryService) /* harmony export */ }); -/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 1670); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @project-sunbird/client-services/telemetry */ 5869); +/* harmony import */ var _home_ttpl_rt_171_Documents_A_Tekdi_InQuiry_Second_Forks_player_node_modules_babel_runtime_helpers_esm_asyncToGenerator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */ 71670); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @project-sunbird/client-services/telemetry */ 35869); /* harmony import */ var _project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_project_sunbird_client_services_telemetry__WEBPACK_IMPORTED_MODULE_1__); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util-service */ 4384); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./util-service */ 54384); @@ -90496,7 +102288,7 @@ class QumlLibraryService { /***/ }), -/***/ 7921: +/***/ 77921: /*!**************************************************************************!*\ !*** ./projects/quml-library/src/lib/quml-popup/quml-popup.component.ts ***! \**************************************************************************/ @@ -90506,9 +102298,9 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ QumlPopupComponent: () => (/* binding */ QumlPopupComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -90601,7 +102393,7 @@ class QuestionCursor {} /***/ }), -/***/ 5502: +/***/ 45502: /*!**********************************************************!*\ !*** ./projects/quml-library/src/lib/sa/sa.component.ts ***! \**********************************************************/ @@ -90611,12 +102403,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SaComponent: () => (/* binding */ SaComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -90784,7 +102576,7 @@ class SaComponent { /***/ }), -/***/ 9186: +/***/ 19186: /*!**************************************************************************!*\ !*** ./projects/quml-library/src/lib/scoreboard/scoreboard.component.ts ***! \**************************************************************************/ @@ -90794,11 +102586,11 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ScoreboardComponent: () => (/* binding */ ScoreboardComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 3190); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 6575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 93190); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/common */ 26575); @@ -91011,7 +102803,7 @@ class ScoreboardComponent { /***/ }), -/***/ 4970: +/***/ 14970: /*!**********************************************************************************!*\ !*** ./projects/quml-library/src/lib/section-player/section-player.component.ts ***! \**********************************************************************************/ @@ -91021,32 +102813,34 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ SectionPlayerComponent: () => (/* binding */ SectionPlayerComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 3873); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 9530); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 5446); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 8717); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! lodash-es */ 6687); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! lodash-es */ 408); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! lodash-es */ 4817); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! rxjs */ 2484); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs/operators */ 3303); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 1679); -/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../player-constants */ 8831); -/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 3464); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util-service */ 4384); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 2459); -/* harmony import */ var _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../mcq/mcq.component */ 6633); -/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../header/header.component */ 3893); -/* harmony import */ var _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../sa/sa.component */ 5502); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 83873); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 79530); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 5446); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! lodash-es */ 48717); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! lodash-es */ 26687); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! lodash-es */ 20408); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! lodash-es */ 10153); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! rxjs */ 32484); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs/operators */ 13303); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../telemetry-constants */ 71679); +/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../player-constants */ 28831); +/* harmony import */ var _services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../services/viewer-service/viewer-service */ 23464); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../util-service */ 54384); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 42459); +/* harmony import */ var _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../mcq/mcq.component */ 16633); +/* harmony import */ var _header_header_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../header/header.component */ 23893); +/* harmony import */ var _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../sa/sa.component */ 45502); /* harmony import */ var _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../icon/ans/ans.component */ 8188); -/* harmony import */ var _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../startpage/startpage.component */ 444); -/* harmony import */ var _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../alert/alert.component */ 7207); +/* harmony import */ var _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../startpage/startpage.component */ 60444); +/* harmony import */ var _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../alert/alert.component */ 57207); /* harmony import */ var _mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../mcq-solutions/mcq-solutions.component */ 3506); +/* harmony import */ var _mtf_mtf_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../mtf/mtf.component */ 30960); + @@ -91072,168 +102866,189 @@ const _c1 = ["imageModal"]; const _c2 = ["questionSlide"]; function SectionPlayerComponent_div_0_div_5_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div", 30); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 30); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - const ctx_r4 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate2"](" ", _r6.getCurrentSlideIndex(), "/", ctx_r4.noOfQuestions, " "); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + const ctx_r4 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate2"](" ", _r6.getCurrentSlideIndex(), "/", ctx_r4.noOfQuestions, " "); } } function SectionPlayerComponent_div_0_div_6_Template(rf, ctx) { if (rf & 1) { - const _r15 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div")(1, "quml-ans", 31); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_div_6_Template_quml_ans_click_1_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r15); - const ctx_r14 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r14.getSolutions()); + const _r15 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div")(1, "quml-ans", 31); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_div_6_Template_quml_ans_click_1_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r15); + const ctx_r14 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r14.getSolutions()); })("keydown", function SectionPlayerComponent_div_0_div_6_Template_quml_ans_keydown_1_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r15); - const ctx_r16 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r16.onAnswerKeyDown($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r15); + const ctx_r16 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r16.onAnswerKeyDown($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } } function SectionPlayerComponent_div_0_slide_12_div_3_Template(rf, ctx) { if (rf & 1) { - const _r23 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div")(1, "quml-mcq", 34); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("optionSelected", function SectionPlayerComponent_div_0_slide_12_div_3_Template_quml_mcq_optionSelected_1_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r23); - const ctx_r22 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r22.getOptionSelected($event)); + const _r24 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div")(1, "quml-mcq", 35); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("optionSelected", function SectionPlayerComponent_div_0_slide_12_div_3_Template_quml_mcq_optionSelected_1_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r24); + const ctx_r23 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r23.getOptionSelected($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } if (rf & 2) { - const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"]().$implicit; - const ctx_r20 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("shuffleOptions", ctx_r20.shuffleOptions)("question", question_r17)("replayed", ctx_r20.parentConfig == null ? null : ctx_r20.parentConfig.isReplayed)("identifier", question_r17.id)("tryAgain", ctx_r20.tryAgainClicked); + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r20 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("shuffleOptions", ctx_r20.shuffleOptions)("question", question_r17)("replayed", ctx_r20.parentConfig == null ? null : ctx_r20.parentConfig.isReplayed)("identifier", question_r17.id)("tryAgain", ctx_r20.tryAgainClicked); } } function SectionPlayerComponent_div_0_slide_12_div_4_Template(rf, ctx) { if (rf & 1) { - const _r27 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div")(1, "quml-sa", 35); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("showAnswerClicked", function SectionPlayerComponent_div_0_slide_12_div_4_Template_quml_sa_showAnswerClicked_1_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r27); - const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"]().$implicit; - const ctx_r25 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r25.showAnswerClicked($event, question_r17)); + const _r28 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div")(1, "quml-sa", 36); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("showAnswerClicked", function SectionPlayerComponent_div_0_slide_12_div_4_Template_quml_sa_showAnswerClicked_1_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r28); + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r26 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r26.showAnswerClicked($event, question_r17)); + }); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); + } + if (rf & 2) { + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r21 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("questions", question_r17)("replayed", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.isReplayed)("baseUrl", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.baseUrl); + } +} +function SectionPlayerComponent_div_0_slide_12_div_5_Template(rf, ctx) { + if (rf & 1) { + const _r31 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 37)(1, "quml-mtf", 38); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("optionsReordered", function SectionPlayerComponent_div_0_slide_12_div_5_Template_quml_mtf_optionsReordered_1_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r31); + const ctx_r30 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r30.handleMTFOptionsChange($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } if (rf & 2) { - const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"]().$implicit; - const ctx_r21 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("questions", question_r17)("replayed", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.isReplayed)("baseUrl", ctx_r21.parentConfig == null ? null : ctx_r21.parentConfig.baseUrl); + const question_r17 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"]().$implicit; + const ctx_r22 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("shuffleOptions", ctx_r22.shuffleOptions)("question", question_r17)("replayed", ctx_r22.parentConfig == null ? null : ctx_r22.parentConfig.isReplayed)("tryAgain", ctx_r22.tryAgainClicked); } } function SectionPlayerComponent_div_0_slide_12_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "slide", null, 32)(2, "div", 33); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_slide_12_div_3_Template, 2, 5, "div", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_slide_12_div_4_Template, 2, 3, "div", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "slide", null, 32)(2, "div", 33); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_slide_12_div_3_Template, 2, 5, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_slide_12_div_4_Template, 2, 3, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](5, SectionPlayerComponent_div_0_slide_12_div_5_Template, 2, 4, "div", 34); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); } if (rf & 2) { const question_r17 = ctx.$implicit; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("id", question_r17.identifier); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "multiple choice question"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "subjective question"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("id", question_r17.identifier); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "multiple choice question"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "subjective question"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (question_r17 == null ? null : question_r17.primaryCategory.toLowerCase()) === "match the following question"); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template(rf, ctx) { if (rf & 1) { - const _r38 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 42); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r38); - const question_r35 = restoredCtx.$implicit; - const ctx_r37 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r37.goToSlideClicked($event, question_r35 == null ? null : question_r35.index)); + const _r42 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 45); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r42); + const question_r39 = restoredCtx.$implicit; + const ctx_r41 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r41.goToSlideClicked($event, question_r39 == null ? null : question_r39.index)); })("keydown", function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r38); - const question_r35 = restoredCtx.$implicit; - const ctx_r39 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r39.onEnter($event, question_r35 == null ? null : question_r35.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r42); + const question_r39 = restoredCtx.$implicit; + const ctx_r43 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r43.onEnter($event, question_r39 == null ? null : question_r39.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r35 = ctx.$implicit; - const j_r36 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r35 == null ? null : question_r35.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r36 + 1 === _r6.getCurrentSlideIndex() ? question_r35.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r35.class : question_r35.class); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r35 == null ? null : question_r35.index, " "); + const question_r39 = ctx.$implicit; + const j_r40 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r39 == null ? null : question_r39.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r40 + 1 === _r6.getCurrentSlideIndex() ? question_r39.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r39.class : question_r39.class); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r39 == null ? null : question_r39.index, " "); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_3_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template, 2, 3, "li", 41); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_li_1_Template, 2, 3, "li", 44); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r32 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r32.progressBarClass); + const ctx_r36 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r36.progressBarClass); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template(rf, ctx) { if (rf & 1) { - const _r44 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 42); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r44); - const question_r41 = restoredCtx.$implicit; - const ctx_r43 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r43.goToSlideClicked($event, question_r41 == null ? null : question_r41.index)); + const _r48 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 45); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r48); + const question_r45 = restoredCtx.$implicit; + const ctx_r47 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r47.goToSlideClicked($event, question_r45 == null ? null : question_r45.index)); })("keydown", function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r44); - const question_r41 = restoredCtx.$implicit; - const ctx_r45 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](5); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r45.onEnter($event, question_r41 == null ? null : question_r41.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r48); + const question_r45 = restoredCtx.$implicit; + const ctx_r49 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](5); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r49.onEnter($event, question_r45 == null ? null : question_r45.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r41 = ctx.$implicit; - const j_r42 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r41 == null ? null : question_r41.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r42 + 1 === _r6.getCurrentSlideIndex() ? question_r41.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r41.class === "skipped" ? question_r41.class : question_r41.class === "unattempted" ? "" : "att-color"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r41 == null ? null : question_r41.index, " "); + const question_r45 = ctx.$implicit; + const j_r46 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r45 == null ? null : question_r45.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r46 + 1 === _r6.getCurrentSlideIndex() ? question_r45.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r45.class === "skipped" ? question_r45.class : question_r45.class === "unattempted" ? "" : "att-color"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r45 == null ? null : question_r45.index, " "); } } function SectionPlayerComponent_div_0_ul_19_li_1_ul_4_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 43); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template, 2, 3, "li", 41); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 46); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_li_1_Template, 2, 3, "li", 44); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r33 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r33.progressBarClass); + const ctx_r37 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r37.progressBarClass); } } const _c3 = function (a0, a1) { @@ -91249,309 +103064,309 @@ const _c4 = function (a0) { }; function SectionPlayerComponent_div_0_ul_19_li_1_Template(rf, ctx) { if (rf & 1) { - const _r47 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 38); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_Template_li_click_0_listener() { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r47); - const section_r30 = restoredCtx.$implicit; - const ctx_r46 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r46.jumpToSection(section_r30 == null ? null : section_r30.identifier)); + const _r51 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 41); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_19_li_1_Template_li_click_0_listener() { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r51); + const section_r34 = restoredCtx.$implicit; + const ctx_r50 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r50.jumpToSection(section_r34 == null ? null : section_r34.identifier)); })("keydown", function SectionPlayerComponent_div_0_ul_19_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r47); - const section_r30 = restoredCtx.$implicit; - const ctx_r48 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r48.onSectionEnter($event, section_r30 == null ? null : section_r30.identifier)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r51); + const section_r34 = restoredCtx.$implicit; + const ctx_r52 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r52.onSectionEnter($event, section_r34 == null ? null : section_r34.identifier)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](1, "label", 39); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_Template, 2, 1, "ul", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_Template, 2, 1, "ul", 40); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](1, "label", 42); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](3, SectionPlayerComponent_div_0_ul_19_li_1_ul_3_Template, 2, 1, "ul", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](4, SectionPlayerComponent_div_0_ul_19_li_1_ul_4_Template, 2, 1, "ul", 43); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const section_r30 = ctx.$implicit; - const i_r31 = ctx.index; - const ctx_r29 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "section ", section_r30 == null ? null : section_r30.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵpureFunction2"](7, _c3, section_r30.class === "attempted", section_r30.class === "partial")); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵpropertyInterpolate1"]("for", "list-item-", i_r31, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵpureFunction1"](10, _c4, (section_r30 == null ? null : section_r30.isActive) && !ctx_r29.showRootInstruction && section_r30.class !== "attempted")); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate"](section_r30 == null ? null : section_r30.index); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (section_r30 == null ? null : section_r30.isActive) && ctx_r29.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", (section_r30 == null ? null : section_r30.isActive) && !ctx_r29.showFeedBack); + const section_r34 = ctx.$implicit; + const i_r35 = ctx.index; + const ctx_r33 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "section ", section_r34 == null ? null : section_r34.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵpureFunction2"](7, _c3, section_r34.class === "attempted", section_r34.class === "partial")); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵpropertyInterpolate1"]("for", "list-item-", i_r35, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵpureFunction1"](10, _c4, (section_r34 == null ? null : section_r34.isActive) && !ctx_r33.showRootInstruction && section_r34.class !== "attempted")); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate"](section_r34 == null ? null : section_r34.index); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (section_r34 == null ? null : section_r34.isActive) && ctx_r33.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", (section_r34 == null ? null : section_r34.isActive) && !ctx_r33.showFeedBack); } } function SectionPlayerComponent_div_0_ul_19_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 36); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_Template, 5, 12, "li", 37); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 39); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_19_li_1_Template, 5, 12, "li", 40); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r8 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r8.mainProgressBar); + const ctx_r8 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r8.mainProgressBar); } } function SectionPlayerComponent_div_0_ul_21_li_1_Template(rf, ctx) { if (rf & 1) { - const _r53 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 46); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_21_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r53); - const question_r50 = restoredCtx.$implicit; - const ctx_r52 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r52.goToSlideClicked($event, question_r50 == null ? null : question_r50.index)); + const _r57 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 49); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_21_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r57); + const question_r54 = restoredCtx.$implicit; + const ctx_r56 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r56.goToSlideClicked($event, question_r54 == null ? null : question_r54.index)); })("keydown", function SectionPlayerComponent_div_0_ul_21_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r53); - const question_r50 = restoredCtx.$implicit; - const ctx_r54 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r54.onEnter($event, question_r50 == null ? null : question_r50.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r57); + const question_r54 = restoredCtx.$implicit; + const ctx_r58 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r58.onEnter($event, question_r54 == null ? null : question_r54.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r50 = ctx.$implicit; - const j_r51 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r50 == null ? null : question_r50.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r51 + 1 === _r6.getCurrentSlideIndex() ? question_r50.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r50.class : question_r50.class); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r50 == null ? null : question_r50.index, " "); + const question_r54 = ctx.$implicit; + const j_r55 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r54 == null ? null : question_r54.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r55 + 1 === _r6.getCurrentSlideIndex() ? question_r54.class === "skipped" ? "progressBar-border" : "progressBar-border " + question_r54.class : question_r54.class); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r54 == null ? null : question_r54.index, " "); } } function SectionPlayerComponent_div_0_ul_21_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 44); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_21_li_1_Template, 2, 3, "li", 45); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 47); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_21_li_1_Template, 2, 3, "li", 48); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r9 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r9.progressBarClass); + const ctx_r9 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r9.progressBarClass); } } function SectionPlayerComponent_div_0_ul_23_li_1_Template(rf, ctx) { if (rf & 1) { - const _r59 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 46); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_23_li_1_Template_li_click_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r59); - const question_r56 = restoredCtx.$implicit; - const ctx_r58 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r58.goToSlideClicked($event, question_r56 == null ? null : question_r56.index)); + const _r63 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 49); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_ul_23_li_1_Template_li_click_0_listener($event) { + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r63); + const question_r60 = restoredCtx.$implicit; + const ctx_r62 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r62.goToSlideClicked($event, question_r60 == null ? null : question_r60.index)); })("keydown", function SectionPlayerComponent_div_0_ul_23_li_1_Template_li_keydown_0_listener($event) { - const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r59); - const question_r56 = restoredCtx.$implicit; - const ctx_r60 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](3); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r60.onEnter($event, question_r56 == null ? null : question_r56.index)); + const restoredCtx = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r63); + const question_r60 = restoredCtx.$implicit; + const ctx_r64 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](3); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r64.onEnter($event, question_r60 == null ? null : question_r60.index)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const question_r56 = ctx.$implicit; - const j_r57 = ctx.index; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵreference"](9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r56 == null ? null : question_r56.index, ""); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", j_r57 + 1 === _r6.getCurrentSlideIndex() ? question_r56.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r56.class === "skipped" ? question_r56.class : question_r56.class === "unattempted" ? "" : "att-color"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtextInterpolate1"](" ", question_r56 == null ? null : question_r56.index, " "); + const question_r60 = ctx.$implicit; + const j_r61 = ctx.index; + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + const _r6 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵreference"](9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵattributeInterpolate1"]("aria-label", "question number ", question_r60 == null ? null : question_r60.index, ""); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", j_r61 + 1 === _r6.getCurrentSlideIndex() ? question_r60.class === "skipped" ? "progressBar-border" : "att-color progressBar-border" : question_r60.class === "skipped" ? question_r60.class : question_r60.class === "unattempted" ? "" : "att-color"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtextInterpolate1"](" ", question_r60 == null ? null : question_r60.index, " "); } } function SectionPlayerComponent_div_0_ul_23_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "ul", 47); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_23_li_1_Template, 2, 3, "li", 45); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "ul", 50); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_0_ul_23_li_1_Template, 2, 3, "li", 48); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r10 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r10.progressBarClass); + const ctx_r10 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r10.progressBarClass); } } function SectionPlayerComponent_div_0_li_24_Template(rf, ctx) { if (rf & 1) { - const _r62 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "li", 48); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_li_24_Template_li_click_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r62); - const ctx_r61 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - ctx_r61.disableNext = true; - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r61.onScoreBoardClicked()); + const _r66 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "li", 51); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_div_0_li_24_Template_li_click_0_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r66); + const ctx_r65 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + ctx_r65.disableNext = true; + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r65.onScoreBoardClicked()); })("keydown", function SectionPlayerComponent_div_0_li_24_Template_li_keydown_0_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r62); - const ctx_r63 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r63.onScoreBoardEnter($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r66); + const ctx_r67 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r67.onScoreBoardEnter($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](1, "img", 49); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](1, "img", 52); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } } function SectionPlayerComponent_div_0_quml_alert_25_Template(rf, ctx) { if (rf & 1) { - const _r65 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "quml-alert", 50); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("showSolution", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_showSolution_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r65); - const ctx_r64 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r64.viewSolution()); + const _r69 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "quml-alert", 53); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("showSolution", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_showSolution_0_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r69); + const ctx_r68 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r68.viewSolution()); })("showHint", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_showHint_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r65); - const ctx_r66 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r66.viewHint()); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r69); + const ctx_r70 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r70.viewHint()); })("closeAlert", function SectionPlayerComponent_div_0_quml_alert_25_Template_quml_alert_closeAlert_0_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r65); - const ctx_r67 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r67.closeAlertBox($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r69); + const ctx_r71 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r71.closeAlertBox($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r12 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("alertType", ctx_r12.alertType)("isHintAvailable", ctx_r12.showHints)("showSolutionButton", ctx_r12.showUserSolution && ctx_r12.currentSolutions); + const ctx_r12 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("alertType", ctx_r12.alertType)("isHintAvailable", ctx_r12.showHints)("showSolutionButton", ctx_r12.showUserSolution && ctx_r12.currentSolutions); } } function SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template(rf, ctx) { if (rf & 1) { - const _r69 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "quml-mcq-solutions", 51); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("close", function SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template_quml_mcq_solutions_close_0_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r69); - const ctx_r68 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r68.closeSolution()); + const _r73 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "quml-mcq-solutions", 54); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("close", function SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template_quml_mcq_solutions_close_0_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r73); + const ctx_r72 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r72.closeSolution()); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r13 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("question", ctx_r13.currentQuestion)("options", ctx_r13.currentOptions)("solutions", ctx_r13.currentSolutions)("baseUrl", ctx_r13.parentConfig == null ? null : ctx_r13.parentConfig.baseUrl)("media", ctx_r13.media)("identifier", ctx_r13.currentQuestionIndetifier); + const ctx_r13 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("question", ctx_r13.currentQuestion)("options", ctx_r13.currentOptions)("solutions", ctx_r13.currentSolutions)("baseUrl", ctx_r13.parentConfig == null ? null : ctx_r13.parentConfig.baseUrl)("media", ctx_r13.media)("identifier", ctx_r13.currentQuestionIndetifier); } } function SectionPlayerComponent_div_0_Template(rf, ctx) { if (rf & 1) { - const _r71 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵgetCurrentView"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "quml-header", 13); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("durationEnds", function SectionPlayerComponent_div_0_Template_quml_header_durationEnds_2_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r70 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r70.durationEnds()); + const _r75 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵgetCurrentView"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 11)(1, "div", 12)(2, "quml-header", 13); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("durationEnds", function SectionPlayerComponent_div_0_Template_quml_header_durationEnds_2_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r74 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r74.durationEnds()); })("nextSlideClicked", function SectionPlayerComponent_div_0_Template_quml_header_nextSlideClicked_2_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r72 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r72.nextSlideClicked($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r76 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r76.nextSlideClicked($event)); })("prevSlideClicked", function SectionPlayerComponent_div_0_Template_quml_header_prevSlideClicked_2_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r73 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r73.previousSlideClicked($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r77 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r77.previousSlideClicked($event)); })("showSolution", function SectionPlayerComponent_div_0_Template_quml_header_showSolution_2_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r74 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r74.viewSolution()); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r78 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r78.viewSolution()); })("toggleScreenRotate", function SectionPlayerComponent_div_0_Template_quml_header_toggleScreenRotate_2_listener() { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r75 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r75.toggleScreenRotate()); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r79 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r79.toggleScreenRotate()); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](3, "div", 14)(4, "div", 15); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](5, SectionPlayerComponent_div_0_div_5_Template, 2, 2, "div", 16); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](6, SectionPlayerComponent_div_0_div_6_Template, 2, 0, "div", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](7, "div", 17)(8, "carousel", 18, 19); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("activeSlideChange", function SectionPlayerComponent_div_0_Template_carousel_activeSlideChange_8_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r76 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r76.activeSlideChange($event)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](3, "div", 14)(4, "div", 15); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](5, SectionPlayerComponent_div_0_div_5_Template, 2, 2, "div", 16); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](6, SectionPlayerComponent_div_0_div_6_Template, 2, 0, "div", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](7, "div", 17)(8, "carousel", 18, 19); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("activeSlideChange", function SectionPlayerComponent_div_0_Template_carousel_activeSlideChange_8_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r80 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r80.activeSlideChange($event)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](10, "slide"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](11, "quml-startpage", 20); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](12, SectionPlayerComponent_div_0_slide_12_Template, 5, 3, "slide", 21); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()(); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](13, "div", 22)(14, "ul"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementContainerStart"](15); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](16, "li", 23); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("keydown", function SectionPlayerComponent_div_0_Template_li_keydown_16_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r77 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r77.onEnter($event, 0)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](10, "slide"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](11, "quml-startpage", 20); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](12, SectionPlayerComponent_div_0_slide_12_Template, 6, 4, "slide", 21); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](13, "div", 22)(14, "ul"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementContainerStart"](15); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](16, "li", 23); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("keydown", function SectionPlayerComponent_div_0_Template_li_keydown_16_listener($event) { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r81 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r81.onEnter($event, 0)); })("click", function SectionPlayerComponent_div_0_Template_li_click_16_listener($event) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵrestoreView"](_r71); - const ctx_r78 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - return _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresetView"](ctx_r78.goToSlideClicked($event, 0)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵrestoreView"](_r75); + const ctx_r82 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + return _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresetView"](ctx_r82.goToSlideClicked($event, 0)); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](17, "i "); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](18, "li"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](19, SectionPlayerComponent_div_0_ul_19_Template, 2, 1, "ul", 24); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](20, "li"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](21, SectionPlayerComponent_div_0_ul_21_Template, 2, 1, "ul", 25); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](22, "li"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](23, SectionPlayerComponent_div_0_ul_23_Template, 2, 1, "ul", 26); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](24, SectionPlayerComponent_div_0_li_24_Template, 2, 0, "li", 27); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementContainerEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()()()(); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](25, SectionPlayerComponent_div_0_quml_alert_25_Template, 1, 3, "quml-alert", 28); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](26, SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template, 1, 6, "quml-mcq-solutions", 29); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](17, "i "); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](18, "li"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](19, SectionPlayerComponent_div_0_ul_19_Template, 2, 1, "ul", 24); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](20, "li"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](21, SectionPlayerComponent_div_0_ul_21_Template, 2, 1, "ul", 25); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](22, "li"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](23, SectionPlayerComponent_div_0_ul_23_Template, 2, 1, "ul", 26); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](24, SectionPlayerComponent_div_0_li_24_Template, 2, 0, "li", 27); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementContainerEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()()()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](25, SectionPlayerComponent_div_0_quml_alert_25_Template, 1, 3, "quml-alert", 28); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](26, SectionPlayerComponent_div_0_quml_mcq_solutions_26_Template, 1, 6, "quml-mcq-solutions", 29); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } if (rf & 2) { - const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵnextContext"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("hidden", ctx_r0.showZoomModal); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("hidden", ctx_r0.showSolution); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("disablePreviousNavigation", ctx_r0.linearNavigation)("duration", ctx_r0.timeLimit)("warningTime", ctx_r0.warningTime)("showWarningTimer", ctx_r0.showWarningTimer)("showTimer", ctx_r0.showTimer)("showLegend", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.showLegend)("currentSlideIndex", ctx_r0.currentSlideIndex)("totalNoOfQuestions", ctx_r0.noOfQuestions)("active", ctx_r0.active)("showFeedBack", ctx_r0.showFeedBack)("currentSolutions", ctx_r0.currentSolutions)("initializeTimer", ctx_r0.initializeTimer)("replayed", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isReplayed)("disableNext", ctx_r0.disableNext)("startPageInstruction", ctx_r0.startPageInstruction)("attempts", ctx_r0.attempts)("showStartPage", ctx_r0.showStartPage)("showDeviceOrientation", ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.config == null ? null : ctx_r0.sectionConfig.config.showDeviceOrientation); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.currentSlideIndex !== 0); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.currentSolutions && ctx_r0.showUserSolution); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("interval", 0)("showIndicators", false)("noWrap", true); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("instructions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.instructions : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.instructions)("points", ctx_r0.points)("time", ctx_r0.showRootInstruction ? ctx_r0.timeLimit : null)("showTimer", ctx_r0.showTimer)("totalNoOfQuestions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.questionCount : ctx_r0.noOfQuestions)("contentName", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName : (ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) ? ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.name : ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngForOf", ctx_r0.questions); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngClass", ctx_r0.currentSlideIndex === 0 ? "att-color progressBar-border" : "att-color"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && ctx_r0.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && !ctx_r0.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig.requiresSubmit && (ctx_r0.progressBarClass == null ? null : ctx_r0.progressBarClass.length)); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.showAlert && ctx_r0.showFeedBack); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx_r0.showSolution); + const ctx_r0 = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵnextContext"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("hidden", ctx_r0.showZoomModal); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("hidden", ctx_r0.showSolution); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("disablePreviousNavigation", ctx_r0.linearNavigation)("duration", ctx_r0.timeLimit)("warningTime", ctx_r0.warningTime)("showWarningTimer", ctx_r0.showWarningTimer)("showTimer", ctx_r0.showTimer)("showLegend", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.showLegend)("currentSlideIndex", ctx_r0.currentSlideIndex)("totalNoOfQuestions", ctx_r0.noOfQuestions)("active", ctx_r0.active)("showFeedBack", ctx_r0.showFeedBack)("currentSolutions", ctx_r0.currentSolutions)("initializeTimer", ctx_r0.initializeTimer)("replayed", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isReplayed)("disableNext", ctx_r0.disableNext)("startPageInstruction", ctx_r0.startPageInstruction)("attempts", ctx_r0.attempts)("showStartPage", ctx_r0.showStartPage)("showDeviceOrientation", ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.config == null ? null : ctx_r0.sectionConfig.config.showDeviceOrientation); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.currentSlideIndex !== 0); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.currentSolutions && ctx_r0.showUserSolution); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("interval", 0)("showIndicators", false)("noWrap", true); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("instructions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.instructions : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.instructions)("points", ctx_r0.points)("time", ctx_r0.showRootInstruction ? ctx_r0.timeLimit : null)("showTimer", ctx_r0.showTimer)("totalNoOfQuestions", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.questionCount : ctx_r0.noOfQuestions)("contentName", ctx_r0.showRootInstruction ? ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName : (ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) ? ctx_r0.sectionConfig == null ? null : ctx_r0.sectionConfig.metadata == null ? null : ctx_r0.sectionConfig.metadata.name : ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.contentName); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngForOf", ctx_r0.questions); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngClass", ctx_r0.currentSlideIndex === 0 ? "att-color progressBar-border" : "att-color"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && ctx_r0.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", !(ctx_r0.parentConfig == null ? null : ctx_r0.parentConfig.isSectionsAvailable) && !ctx_r0.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.parentConfig.requiresSubmit && (ctx_r0.progressBarClass == null ? null : ctx_r0.progressBarClass.length)); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.showAlert && ctx_r0.showFeedBack); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx_r0.showSolution); } } function SectionPlayerComponent_div_1_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](0, "div", 52); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtext"](1, " Please attempt the question\n"); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](0, "div", 55); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtext"](1, " Please attempt the question\n"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); } } function SectionPlayerComponent_sb_player_contenterror_2_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](0, "sb-player-contenterror"); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](0, "sb-player-contenterror"); } } class SectionPlayerComponent { @@ -91561,10 +103376,10 @@ class SectionPlayerComponent { this.cdRef = cdRef; this.errorService = errorService; this.sectionIndex = 0; - this.playerEvent = new _angular_core__WEBPACK_IMPORTED_MODULE_11__.EventEmitter(); - this.sectionEnd = new _angular_core__WEBPACK_IMPORTED_MODULE_11__.EventEmitter(); - this.showScoreBoard = new _angular_core__WEBPACK_IMPORTED_MODULE_11__.EventEmitter(); - this.destroy$ = new rxjs__WEBPACK_IMPORTED_MODULE_12__.Subject(); + this.playerEvent = new _angular_core__WEBPACK_IMPORTED_MODULE_12__.EventEmitter(); + this.sectionEnd = new _angular_core__WEBPACK_IMPORTED_MODULE_12__.EventEmitter(); + this.showScoreBoard = new _angular_core__WEBPACK_IMPORTED_MODULE_12__.EventEmitter(); + this.destroy$ = new rxjs__WEBPACK_IMPORTED_MODULE_13__.Subject(); this.loadView = false; this.showContentError = false; this.noOfTimesApiCalled = 0; @@ -91600,19 +103415,19 @@ class SectionPlayerComponent { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.startPageLoaded, 'impression', 0); } subscribeToEvents() { - this.viewerService.qumlPlayerEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.takeUntil)(this.destroy$)).subscribe(res => { + this.viewerService.qumlPlayerEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.takeUntil)(this.destroy$)).subscribe(res => { this.playerEvent.emit(res); }); - this.viewerService.qumlQuestionEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_13__.takeUntil)(this.destroy$)).subscribe(res => { + this.viewerService.qumlQuestionEvent.pipe((0,rxjs_operators__WEBPACK_IMPORTED_MODULE_14__.takeUntil)(this.destroy$)).subscribe(res => { if (res?.error) { let traceId; - if (lodash_es__WEBPACK_IMPORTED_MODULE_14__["default"](this.sectionConfig, 'config')) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_15__["default"](this.sectionConfig, 'config')) { traceId = this.sectionConfig.config; } if (navigator.onLine && this.viewerService.isAvailableLocally) { - this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorCode.contentLoadFails, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.contentLoadFails, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.contentLoadFails), traceId); + this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorCode.contentLoadFails, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.contentLoadFails, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.contentLoadFails), traceId); } else { - this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorCode.internetConnectivity, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.internetConnectivity, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.internetConnectivity), traceId); + this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorCode.internetConnectivity, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.internetConnectivity, new Error(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.internetConnectivity), traceId); } this.showContentError = true; return; @@ -91620,8 +103435,8 @@ class SectionPlayerComponent { if (!res?.questions) { return; } - const unCommonQuestions = lodash_es__WEBPACK_IMPORTED_MODULE_16__["default"](this.questions, res.questions, 'identifier'); - this.questions = lodash_es__WEBPACK_IMPORTED_MODULE_17__["default"](this.questions.concat(unCommonQuestions), 'identifier'); + const unCommonQuestions = lodash_es__WEBPACK_IMPORTED_MODULE_17__["default"](this.questions, res.questions, 'identifier'); + this.questions = lodash_es__WEBPACK_IMPORTED_MODULE_18__["default"](this.questions.concat(unCommonQuestions), 'identifier'); this.sortQuestions(); this.viewerService.updateSectionQuestions(this.sectionConfig.metadata.identifier, this.questions); this.cdRef.detectChanges(); @@ -91656,7 +103471,7 @@ class SectionPlayerComponent { this.myCarousel.selectSlide(this.currentSlideIndex); } this.threshold = this.sectionConfig?.context?.threshold || 3; - this.questionIds = lodash_es__WEBPACK_IMPORTED_MODULE_18__["default"](this.sectionConfig.metadata.childNodes); + this.questionIds = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.sectionConfig.metadata.childNodes); /* istanbul ignore else */ if (this.parentConfig.isReplayed) { this.initializeTimer = true; @@ -91666,7 +103481,7 @@ class SectionPlayerComponent { this.currentSlideIndex = 0; this.myCarousel.selectSlide(0); this.showRootInstruction = true; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[0], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[0], 'media'); this.setImageZoom(); this.loadView = true; this.removeAttribute(); @@ -91694,7 +103509,6 @@ class SectionPlayerComponent { } else { this.showFeedBack = this.parentConfig.showFeedback; // Fallback to parent config } - this.showUserSolution = this.sectionConfig.metadata?.showSolutions; this.startPageInstruction = this.sectionConfig.metadata?.instructions || this.parentConfig.instructions; this.linearNavigation = this.sectionConfig.metadata.navigationMode === 'non-linear' ? false : true; @@ -91750,7 +103564,7 @@ class SectionPlayerComponent { } } createSummaryObj() { - const classObj = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.progressBarClass, 'class'); + const classObj = lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](this.progressBarClass, 'class'); return { skipped: classObj?.skipped?.length || 0, correct: classObj?.correct?.length || 0, @@ -91759,7 +103573,7 @@ class SectionPlayerComponent { }; } nextSlide() { - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.currentSlideIndex], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.currentSlideIndex], 'media'); this.getQuestion(); this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.nextClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex() + 1); this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.nextClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.impression, this.myCarousel.getCurrentSlideIndex() + 1); @@ -91809,7 +103623,7 @@ class SectionPlayerComponent { } this.currentSlideIndex = this.myCarousel.getCurrentSlideIndex(); this.active = this.currentSlideIndex === 0 && this.sectionIndex === 0 && this.showStartPage; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); this.setImageZoom(); this.setSkippedClass(this.myCarousel.getCurrentSlideIndex() - 1); } @@ -91828,6 +103642,7 @@ class SectionPlayerComponent { this.active = false; this.showAlert = false; this.optionSelectedObj = undefined; + this.mtfReorderedOptionsMap = undefined; this.currentOptionSelected = undefined; this.currentQuestion = undefined; this.currentOptions = undefined; @@ -91858,15 +103673,15 @@ class SectionPlayerComponent { } /* istanbul ignore else */ if (event?.type === 'next') { - this.validateSelectedOption(this.optionSelectedObj, 'next'); + this.validateQuestionInteraction('next'); } } previousSlideClicked(event) { /* istanbul ignore else */ if (event.event === 'previous clicked') { - if (this.optionSelectedObj && this.showFeedBack) { + if ((this.optionSelectedObj || this.mtfReorderedOptionsMap) && this.showFeedBack) { this.stopAutoNavigation = false; - this.validateSelectedOption(this.optionSelectedObj, 'previous'); + this.validateQuestionInteraction('previous'); } else { this.stopAutoNavigation = true; if (this.currentSlideIndex === 0 && this.parentConfig.isSectionsAvailable && this.getCurrentSectionIndex() > 0) { @@ -91901,9 +103716,9 @@ class SectionPlayerComponent { event.stopPropagation(); this.active = false; this.jumpSlideIndex = index; - if (this.optionSelectedObj && this.showFeedBack) { + if ((this.optionSelectedObj || this.mtfReorderedOptionsMap) && this.showFeedBack) { this.stopAutoNavigation = false; - this.validateSelectedOption(this.optionSelectedObj, 'jump'); + this.validateQuestionInteraction('jump'); } else { this.stopAutoNavigation = true; this.goToSlide(this.jumpSlideIndex); @@ -91926,7 +103741,7 @@ class SectionPlayerComponent { event.stopPropagation(); /* istanbul ignore else */ if (this.optionSelectedObj) { - this.validateSelectedOption(this.optionSelectedObj, 'jump'); + this.validateQuestionInteraction('jump'); } this.jumpToSection(identifier); } @@ -91958,27 +103773,45 @@ class SectionPlayerComponent { if (optionSelected.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.single && JSON.stringify(this.currentOptionSelected) === JSON.stringify(optionSelected)) { return; // Same option selected } - this.focusOnNextButton(); this.active = true; this.currentOptionSelected = optionSelected; const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.optionClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); // This optionSelected comes empty whenever the try again is clicked on feedback popup - if (lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](optionSelected?.option)) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](optionSelected?.option)) { this.optionSelectedObj = undefined; this.currentSolutions = undefined; this.updateScoreBoard(currentIndex, 'skipped'); } else { this.optionSelectedObj = optionSelected; this.isAssessEventRaised = false; - this.currentSolutions = !lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](optionSelected.solutions) ? optionSelected.solutions : undefined; + this.currentSolutions = !lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](optionSelected.solutions) ? optionSelected.solutions : undefined; } this.currentQuestionIndetifier = this.questions[currentIndex].identifier; - this.media = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[currentIndex], 'media', []); + this.media = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[currentIndex], 'media', []); /* istanbul ignore else */ if (!this.showFeedBack) { - this.validateSelectedOption(this.optionSelectedObj); + this.validateQuestionInteraction(); + } + } + handleMTFOptionsChange(rearrangedOptions) { + this.focusOnNextButton(); + this.active = true; + const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; + this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.optionsReordered, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); + const currentQuestion = this.questions[currentIndex]; + if (lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](rearrangedOptions)) { + this.updateScoreBoard(currentIndex, 'skipped'); + } else { + this.mtfReorderedOptionsMap = rearrangedOptions; + this.isAssessEventRaised = false; + this.currentSolutions = !lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](currentQuestion.solutions) ? currentQuestion.solutions : undefined; + } + this.currentQuestionIndetifier = currentQuestion.identifier; + this.media = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](currentQuestion, 'media', []); + if (!this.showFeedBack) { + this.validateQuestionInteraction(); } } durationEnds() { @@ -91995,7 +103828,7 @@ class SectionPlayerComponent { const checkContentCompatible = this.checkContentCompatibility(compatibilityLevel); /* istanbul ignore else */ if (!checkContentCompatible.isCompitable) { - this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorCode.contentCompatibility, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.errorMessage.contentCompatibility, checkContentCompatible.error, this.sectionConfig?.config?.traceId); + this.viewerService.raiseExceptionLog(_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorCode.contentCompatibility, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.errorMessage.contentCompatibility, checkContentCompatible.error, this.sectionConfig?.config?.traceId); } } } @@ -92043,109 +103876,127 @@ class SectionPlayerComponent { this.showAlert = false; } setSkippedClass(index) { - if (this.progressBarClass && lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.progressBarClass[index], 'class') === 'unattempted') { + if (this.progressBarClass && lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.progressBarClass[index], 'class') === 'unattempted') { this.progressBarClass[index].class = 'skipped'; } } toggleScreenRotate(event) { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.deviceRotationClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex() + 1); } - validateSelectedOption(option, type) { - const selectedOptionValue = option?.option?.value; + validateQuestionInteraction(eventType) { const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; - const isQuestionSkipAllowed = !this.optionSelectedObj && this.allowSkip && this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq; - const isSubjectiveQuestion = this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.sa; - const onStartPage = this.startPageInstruction && this.myCarousel.getCurrentSlideIndex() === 0; - const isActive = !this.optionSelectedObj && this.active; const selectedQuestion = this.questions[currentIndex]; - const key = selectedQuestion.responseDeclaration ? this.utilService.getKeyValue(Object.keys(selectedQuestion.responseDeclaration)) : ''; + const responseKey = selectedQuestion.responseDeclaration ? this.utilService.getKeyValue(Object.keys(selectedQuestion.responseDeclaration)) : ''; this.slideDuration = Math.round((new Date().getTime() - this.initialSlideDuration) / 1000); - const getParams = () => { - if (selectedQuestion.qType.toUpperCase() === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && selectedQuestion?.editorState?.options) { - return selectedQuestion.editorState.options; - } else if (selectedQuestion.qType.toUpperCase() === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && !lodash_es__WEBPACK_IMPORTED_MODULE_21__["default"](selectedQuestion?.editorState)) { - return [selectedQuestion?.editorState]; - } else { - return []; + const edataItem = this.utilService.getEDataItem(selectedQuestion, responseKey); + if (edataItem && this.parentConfig?.isSectionsAvailable) { + edataItem['sectionId'] = this.sectionConfig?.metadata?.identifier; + } + const questionType = this.questions[currentIndex]['qType']; + const isQuestionSkipAllowed = this.isSkipAllowed(questionType); + if (!isQuestionSkipAllowed) { + this.handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, eventType); + } else { + this.handleNoInteraction(isQuestionSkipAllowed, edataItem, currentIndex, eventType); + } + } + isSkipAllowed(questionType) { + if (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.sa) { + return true; + } + if (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mtf && !this.mtfReorderedOptionsMap || (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq || questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mmcq) && !this.optionSelectedObj && this.allowSkip) { + return true; + } + return false; + } + handleInteraction(selectedQuestion, responseKey, edataItem, currentIndex, type) { + this.currentQuestion = selectedQuestion.body; + this.currentOptions = selectedQuestion.interactions[responseKey].options; + this.showAlert = true; + if (this.optionSelectedObj && (selectedQuestion.qType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq || selectedQuestion.qType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mmcq)) { + if (this.optionSelectedObj.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.single) { + this.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, false, type); + } else if (this.optionSelectedObj.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.multiple) { + this.handleMCQInteraction(selectedQuestion, edataItem, currentIndex, true, type); } - }; - const edataItem = { - 'id': selectedQuestion.identifier, - 'title': selectedQuestion.name, - 'desc': selectedQuestion.description, - 'type': selectedQuestion.qType.toLowerCase(), - 'maxscore': key.length === 0 ? 0 : selectedQuestion.outcomeDeclaration.maxScore.defaultValue || 0, - 'params': getParams() - }; - /* istanbul ignore else */ - if (edataItem && this.parentConfig.isSectionsAvailable) { - edataItem.sectionId = this.sectionConfig.metadata.identifier; + this.optionSelectedObj = undefined; } - /* istanbul ignore else */ - if (!this.optionSelectedObj && !this.isAssessEventRaised && selectedQuestion.qType.toUpperCase() !== _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.sa) { + if (this.mtfReorderedOptionsMap && selectedQuestion.qType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mtf) { + this.handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type); + this.mtfReorderedOptionsMap = undefined; + } + } + handleMCQInteraction(selectedQuestion, edataItem, currentIndex, isMultipleChoice, type) { + const responseDeclaration = selectedQuestion.responseDeclaration; + const outcomeDeclaration = selectedQuestion.outcomeDeclaration; + const selectedOptions = this.optionSelectedObj.option; + let currentScore; + let optionsToPass; + if (isMultipleChoice) { + currentScore = this.utilService.getMultiselectScore(selectedOptions, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + optionsToPass = selectedOptions; + } else { + currentScore = this.utilService.getSingleSelectScore(selectedOptions, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + optionsToPass = [selectedOptions]; + } + if (currentScore === 0) { + this.handleWrongAnswer(currentScore, edataItem, currentIndex, optionsToPass, type); + } else { + this.handleCorrectAnswer(currentScore, edataItem, currentIndex, optionsToPass, type); + } + } + handleMTFInteraction(selectedQuestion, edataItem, currentIndex, type) { + const responseDeclaration = selectedQuestion.responseDeclaration; + const outcomeDeclaration = selectedQuestion.outcomeDeclaration; + const userResponse = this.mtfReorderedOptionsMap; + const currentScore = this.utilService.getMTFScore(userResponse, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); + if (currentScore === 0) { + this.handleWrongAnswer(currentScore, edataItem, currentIndex, userResponse, type); + } else { + this.handleCorrectAnswer(currentScore, edataItem, currentIndex, userResponse, type); + } + } + handleCorrectAnswer(currentScore, edataItem, currentIndex, userResponse, type) { + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, userResponse, this.slideDuration); + } + this.alertType = 'correct'; + if (this.showFeedBack) { + this.correctFeedBackTimeOut(type); + } + this.updateScoreBoard(currentIndex, 'correct', userResponse, currentScore); + } + handleWrongAnswer(currentScore, edataItem, currentIndex, userResponse, type) { + this.alertType = 'wrong'; + const classType = this.progressBarClass[currentIndex].class === 'partial' ? 'partial' : 'wrong'; + this.updateScoreBoard(currentIndex, classType, userResponse, currentScore); + if (!this.isAssessEventRaised) { + this.isAssessEventRaised = true; + this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, userResponse, this.slideDuration); + } + } + handleNoInteraction(isQuestionSkipAllowed, edataItem, currentIndex, type) { + if (!this.isAssessEventRaised) { this.isAssessEventRaised = true; this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [], this.slideDuration); } - if (this.optionSelectedObj) { - this.currentQuestion = selectedQuestion.body; - this.currentOptions = selectedQuestion.interactions[key].options; - if (option.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.single) { - const correctOptionValue = Number(selectedQuestion.responseDeclaration[key].correctResponse.value); - this.showAlert = true; - if (option.option?.value === correctOptionValue) { - const currentScore = this.getScore(currentIndex, key, true); - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, [option.option], this.slideDuration); - } - this.alertType = 'correct'; - if (this.showFeedBack) this.correctFeedBackTimeOut(type); - this.updateScoreBoard(currentIndex, 'correct', undefined, currentScore); - } else { - const currentScore = this.getScore(currentIndex, key, false, option); - this.alertType = 'wrong'; - const classType = this.progressBarClass[currentIndex].class === 'partial' ? 'partial' : 'wrong'; - this.updateScoreBoard(currentIndex, classType, selectedOptionValue, currentScore); - /* istanbul ignore else */ - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [option.option], this.slideDuration); - } - } - } - if (option.cardinality === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.Cardinality.multiple) { - const responseDeclaration = this.questions[currentIndex].responseDeclaration; - const outcomeDeclaration = this.questions[currentIndex].outcomeDeclaration; - const currentScore = this.utilService.getMultiselectScore(option.option, responseDeclaration, this.isShuffleQuestions, outcomeDeclaration); - this.showAlert = true; - if (currentScore === 0) { - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'No', 0, [option.option], this.slideDuration); - } - this.alertType = 'wrong'; - this.updateScoreBoard(currentIndex, 'wrong'); - } else { - this.updateScoreBoard(currentIndex, 'correct', undefined, currentScore); - if (!this.isAssessEventRaised) { - this.isAssessEventRaised = true; - this.viewerService.raiseAssesEvent(edataItem, currentIndex + 1, 'Yes', currentScore, [option.option], this.slideDuration); - } - if (this.showFeedBack) this.correctFeedBackTimeOut(type); - this.alertType = 'correct'; - } - } - this.optionSelectedObj = undefined; - } else if (isQuestionSkipAllowed || isSubjectiveQuestion || onStartPage || isActive) { - if (!lodash_es__WEBPACK_IMPORTED_MODULE_22__["default"](type)) { + const onStartPage = this.startPageInstruction && this.myCarousel.getCurrentSlideIndex() === 0; + if (isQuestionSkipAllowed || onStartPage || this.active) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_23__["default"](type)) { this.nextSlide(); } - } else if (this.startPageInstruction && !this.optionSelectedObj && !this.active && !this.allowSkip && this.myCarousel.getCurrentSlideIndex() > 0 && this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])) { - this.infoPopupTimeOut(); - } else if (!this.optionSelectedObj && !this.active && !this.allowSkip && this.myCarousel.getCurrentSlideIndex() >= 0 && this.utilService.getQuestionType(this.questions, currentIndex) === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq && this.utilService.canGo(this.progressBarClass[this.myCarousel.getCurrentSlideIndex()])) { + } else if (this.shouldShowInfoPopup(currentIndex)) { this.infoPopupTimeOut(); } } + shouldShowInfoPopup(currentIndex) { + const questionType = this.utilService.getQuestionType(this.questions, currentIndex); + const slideIndex = this.myCarousel.getCurrentSlideIndex(); + const canGo = this.utilService.canGo(this.progressBarClass[slideIndex]); + const commonConditions = !this.optionSelectedObj && !this.active && !this.allowSkip && (questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mcq || questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.QuestionType.mtf) && canGo; + return commonConditions && (this.startPageInstruction ? slideIndex > 0 : slideIndex >= 0); + } infoPopupTimeOut() { this.infoPopup = true; setTimeout(() => { @@ -92176,6 +104027,7 @@ class SectionPlayerComponent { this.showRootInstruction = false; if (index === 0) { this.optionSelectedObj = undefined; + this.mtfReorderedOptionsMap = undefined; this.myCarousel.selectSlide(0); this.active = this.currentSlideIndex === 0 && this.sectionIndex === 0 && this.showStartPage; this.showRootInstruction = true; @@ -92185,7 +104037,7 @@ class SectionPlayerComponent { } return; } - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.currentSlideIndex - 1], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.currentSlideIndex - 1], 'media'); this.setSkippedClass(this.currentSlideIndex - 1); /* istanbul ignore else */ if (!this.initializeTimer) { @@ -92242,7 +104094,7 @@ class SectionPlayerComponent { const currentIndex = this.myCarousel.getCurrentSlideIndex() - 1; this.currentQuestion = this.questions[currentIndex].body; this.currentOptions = this.questions[currentIndex].interactions.response1.options; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[currentIndex], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[currentIndex], 'media'); setTimeout(() => { this.setImageZoom(); }); @@ -92259,7 +104111,7 @@ class SectionPlayerComponent { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.viewSolutionClicked, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.interact, this.myCarousel.getCurrentSlideIndex()); this.showSolution = true; this.showAlert = false; - this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_19__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); + this.currentQuestionsMedia = lodash_es__WEBPACK_IMPORTED_MODULE_20__["default"](this.questions[this.myCarousel.getCurrentSlideIndex() - 1], 'media'); setTimeout(() => { this.setImageZoom(); this.setImageHeightWidthClass(); @@ -92303,31 +104155,6 @@ class SectionPlayerComponent { this.viewerService.raiseHeartBeatEvent(_telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.eventName.pageScrolled, _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__.TelemetryType.impression, this.myCarousel.getCurrentSlideIndex() - 1); } } - getScore(currentIndex, key, isCorrectAnswer, selectedOption) { - /* istanbul ignore else */ - if (isCorrectAnswer) { - if (this.isShuffleQuestions) { - return _player_constants__WEBPACK_IMPORTED_MODULE_1__.DEFAULT_SCORE; - } - return this.questions[currentIndex].outcomeDeclaration.maxScore.defaultValue ? this.questions[currentIndex].outcomeDeclaration.maxScore.defaultValue : _player_constants__WEBPACK_IMPORTED_MODULE_1__.DEFAULT_SCORE; - } else { - const selectedOptionValue = selectedOption.option.value; - const mapping = this.questions[currentIndex].responseDeclaration.mapping; - let score = 0; - /* istanbul ignore else */ - if (mapping) { - mapping.forEach(val => { - if (selectedOptionValue === val.value) { - score = val.score || 0; - if (val.score) { - this.progressBarClass[currentIndex].class = 'partial'; - } - } - }); - } - return score; - } - } calculateScore() { return this.progressBarClass.reduce((accumulator, element) => accumulator + element.score, 0); } @@ -92358,7 +104185,6 @@ class SectionPlayerComponent { // } }); } - setImageZoom() { const index = this.myCarousel.getCurrentSlideIndex() - 1; const currentQuestionId = this.questions[index]?.identifier; @@ -92369,7 +104195,7 @@ class SectionPlayerComponent { const imageId = image.getAttribute('data-asset-variable'); image.setAttribute('class', 'option-image'); image.setAttribute('id', imageId); - lodash_es__WEBPACK_IMPORTED_MODULE_23__["default"](this.currentQuestionsMedia, val => { + lodash_es__WEBPACK_IMPORTED_MODULE_24__["default"](this.currentQuestionsMedia, val => { if (imageId === val.id) { if (this.parentConfig.isAvailableLocally && this.parentConfig.baseUrl) { let baseUrl = this.parentConfig.baseUrl; @@ -92435,29 +104261,29 @@ class SectionPlayerComponent { this.errorService.getInternetConnectivityError.unsubscribe(); } static #_ = this.ɵfac = function SectionPlayerComponent_Factory(t) { - return new (t || SectionPlayerComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__.ViewerService), _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_util_service__WEBPACK_IMPORTED_MODULE_3__.UtilService), _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_11__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdirectiveInject"](_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.ErrorService)); + return new (t || SectionPlayerComponent)(_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_services_viewer_service_viewer_service__WEBPACK_IMPORTED_MODULE_2__.ViewerService), _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_util_service__WEBPACK_IMPORTED_MODULE_3__.UtilService), _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_angular_core__WEBPACK_IMPORTED_MODULE_12__.ChangeDetectorRef), _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdirectiveInject"](_project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.ErrorService)); }; - static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵdefineComponent"]({ + static #_2 = this.ɵcmp = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵdefineComponent"]({ type: SectionPlayerComponent, selectors: [["quml-section-player"]], viewQuery: function SectionPlayerComponent_Query(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵviewQuery"](_c0, 5); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵviewQuery"](_c1, 7); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵviewQuery"](_c2, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵviewQuery"](_c0, 5); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵviewQuery"](_c1, 7); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵviewQuery"](_c2, 5); } if (rf & 2) { let _t; - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵloadQuery"]()) && (ctx.myCarousel = _t.first); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵloadQuery"]()) && (ctx.imageModal = _t.first); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵloadQuery"]()) && (ctx.questionSlide = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵloadQuery"]()) && (ctx.myCarousel = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵloadQuery"]()) && (ctx.imageModal = _t.first); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵqueryRefresh"](_t = _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵloadQuery"]()) && (ctx.questionSlide = _t.first); } }, hostBindings: function SectionPlayerComponent_HostBindings(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("beforeunload", function SectionPlayerComponent_beforeunload_HostBindingHandler() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("beforeunload", function SectionPlayerComponent_beforeunload_HostBindingHandler() { return ctx.ngOnDestroy(); - }, false, _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵresolveWindow"]); + }, false, _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵresolveWindow"]); } }, inputs: { @@ -92473,48 +104299,48 @@ class SectionPlayerComponent { sectionEnd: "sectionEnd", showScoreBoard: "showScoreBoard" }, - features: [_angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵNgOnChangesFeature"]], + features: [_angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵNgOnChangesFeature"]], decls: 11, vars: 5, - consts: [["class", "quml-container", 3, "hidden", 4, "ngIf"], ["class", "info-popup", 4, "ngIf"], [4, "ngIf"], [1, "image-viewer__overlay", 3, "hidden"], [1, "image-viewer__close", 3, "click"], [1, "image-viewer__container"], ["id", "imageModal", "alt", "Zoomed image", 1, "image-viewer__img", 3, "src"], ["imageModal", ""], [1, "image-viewer__zoom"], [1, "image-viewer__zoomin", 3, "click"], [1, "image-viewer__zoomout", 3, "click"], [1, "quml-container", 3, "hidden"], [1, "quml-landscape", 3, "hidden"], [1, "main-header", 3, "disablePreviousNavigation", "duration", "warningTime", "showWarningTimer", "showTimer", "showLegend", "currentSlideIndex", "totalNoOfQuestions", "active", "showFeedBack", "currentSolutions", "initializeTimer", "replayed", "disableNext", "startPageInstruction", "attempts", "showStartPage", "showDeviceOrientation", "durationEnds", "nextSlideClicked", "prevSlideClicked", "showSolution", "toggleScreenRotate"], [1, "landscape-mode"], [1, "lanscape-mode-left"], ["class", "current-slide", 4, "ngIf"], [1, "landscape-content"], [1, "landscape-center", 3, "interval", "showIndicators", "noWrap", "activeSlideChange"], ["myCarousel", ""], [3, "instructions", "points", "time", "showTimer", "totalNoOfQuestions", "contentName"], [4, "ngFor", "ngForOf"], [1, "lanscape-mode-right"], ["tabindex", "0", 1, "showFeedBack-progressBar", "info-page", "hover-effect", 3, "ngClass", "keydown", "click"], ["class", "scoreboard-sections", 4, "ngIf"], ["class", "singleContent", 4, "ngIf"], ["class", "singleContent nonFeedback", 4, "ngIf"], ["class", "requiresSubmit cursor-pointer showFeedBack-progressBar hover-effect", "tabindex", "0", "aria-label", "scoreboard", 3, "click", "keydown", 4, "ngIf"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert", 4, "ngIf"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close", 4, "ngIf"], [1, "current-slide"], [3, "click", "keydown"], ["questionSlide", ""], [3, "id"], [3, "shuffleOptions", "question", "replayed", "identifier", "tryAgain", "optionSelected"], [3, "questions", "replayed", "baseUrl", "showAnswerClicked"], [1, "scoreboard-sections"], ["class", "section relative", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], [1, "section", "relative", 3, "ngClass", "click", "keydown"], ["tabindex", "0", 1, "progressBar-border", 3, "for", "ngClass"], ["class", "nonFeedback", 4, "ngIf"], ["tabindex", "0", "class", "showFeedBack-progressBar", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", 3, "ngClass", "click", "keydown"], [1, "nonFeedback"], [1, "singleContent"], ["tabindex", "0", "class", "showFeedBack-progressBar hover-effect", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", "hover-effect", 3, "ngClass", "click", "keydown"], [1, "singleContent", "nonFeedback"], ["tabindex", "0", "aria-label", "scoreboard", 1, "requiresSubmit", "cursor-pointer", "showFeedBack-progressBar", "hover-effect", 3, "click", "keydown"], ["src", "./assets/flag_inactive.svg", "alt", "Flag logo: Show scoreboard"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close"], [1, "info-popup"]], + consts: [["class", "quml-container", 3, "hidden", 4, "ngIf"], ["class", "info-popup", 4, "ngIf"], [4, "ngIf"], [1, "image-viewer__overlay", 3, "hidden"], [1, "image-viewer__close", 3, "click"], [1, "image-viewer__container"], ["id", "imageModal", "alt", "Zoomed image", 1, "image-viewer__img", 3, "src"], ["imageModal", ""], [1, "image-viewer__zoom"], [1, "image-viewer__zoomin", 3, "click"], [1, "image-viewer__zoomout", 3, "click"], [1, "quml-container", 3, "hidden"], [1, "quml-landscape", 3, "hidden"], [1, "main-header", 3, "disablePreviousNavigation", "duration", "warningTime", "showWarningTimer", "showTimer", "showLegend", "currentSlideIndex", "totalNoOfQuestions", "active", "showFeedBack", "currentSolutions", "initializeTimer", "replayed", "disableNext", "startPageInstruction", "attempts", "showStartPage", "showDeviceOrientation", "durationEnds", "nextSlideClicked", "prevSlideClicked", "showSolution", "toggleScreenRotate"], [1, "landscape-mode"], [1, "lanscape-mode-left"], ["class", "current-slide", 4, "ngIf"], [1, "landscape-content"], [1, "landscape-center", 3, "interval", "showIndicators", "noWrap", "activeSlideChange"], ["myCarousel", ""], [3, "instructions", "points", "time", "showTimer", "totalNoOfQuestions", "contentName"], [4, "ngFor", "ngForOf"], [1, "lanscape-mode-right"], ["tabindex", "0", 1, "showFeedBack-progressBar", "info-page", "hover-effect", 3, "ngClass", "keydown", "click"], ["class", "scoreboard-sections", 4, "ngIf"], ["class", "singleContent", 4, "ngIf"], ["class", "singleContent nonFeedback", 4, "ngIf"], ["class", "requiresSubmit cursor-pointer showFeedBack-progressBar hover-effect", "tabindex", "0", "aria-label", "scoreboard", 3, "click", "keydown", 4, "ngIf"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert", 4, "ngIf"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close", 4, "ngIf"], [1, "current-slide"], [3, "click", "keydown"], ["questionSlide", ""], [3, "id"], ["class", "mtf", 4, "ngIf"], [3, "shuffleOptions", "question", "replayed", "identifier", "tryAgain", "optionSelected"], [3, "questions", "replayed", "baseUrl", "showAnswerClicked"], [1, "mtf"], [3, "shuffleOptions", "question", "replayed", "tryAgain", "optionsReordered"], [1, "scoreboard-sections"], ["class", "section relative", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], [1, "section", "relative", 3, "ngClass", "click", "keydown"], ["tabindex", "0", 1, "progressBar-border", 3, "for", "ngClass"], ["class", "nonFeedback", 4, "ngIf"], ["tabindex", "0", "class", "showFeedBack-progressBar", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", 3, "ngClass", "click", "keydown"], [1, "nonFeedback"], [1, "singleContent"], ["tabindex", "0", "class", "showFeedBack-progressBar hover-effect", 3, "ngClass", "click", "keydown", 4, "ngFor", "ngForOf"], ["tabindex", "0", 1, "showFeedBack-progressBar", "hover-effect", 3, "ngClass", "click", "keydown"], [1, "singleContent", "nonFeedback"], ["tabindex", "0", "aria-label", "scoreboard", 1, "requiresSubmit", "cursor-pointer", "showFeedBack-progressBar", "hover-effect", 3, "click", "keydown"], ["src", "./assets/flag_inactive.svg", "alt", "Flag logo: Show scoreboard"], [3, "alertType", "isHintAvailable", "showSolutionButton", "showSolution", "showHint", "closeAlert"], [3, "question", "options", "solutions", "baseUrl", "media", "identifier", "close"], [1, "info-popup"]], template: function SectionPlayerComponent_Template(rf, ctx) { if (rf & 1) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](0, SectionPlayerComponent_div_0_Template, 27, 39, "div", 0); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](1, SectionPlayerComponent_div_1_Template, 2, 0, "div", 1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵtemplate"](2, SectionPlayerComponent_sb_player_contenterror_2_Template, 1, 0, "sb-player-contenterror", 2); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](3, "div", 3)(4, "div", 4); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_4_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](0, SectionPlayerComponent_div_0_Template, 27, 39, "div", 0); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](1, SectionPlayerComponent_div_1_Template, 2, 0, "div", 1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵtemplate"](2, SectionPlayerComponent_sb_player_contenterror_2_Template, 1, 0, "sb-player-contenterror", 2); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](3, "div", 3)(4, "div", 4); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_4_listener() { return ctx.closeZoom(); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](5, "div", 5); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelement"](6, "img", 6, 7); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](8, "div", 8)(9, "div", 9); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_9_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](5, "div", 5); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelement"](6, "img", 6, 7); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](8, "div", 8)(9, "div", 9); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_9_listener() { return ctx.zoomIn(); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"](); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementStart"](10, "div", 10); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_10_listener() { + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"](); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementStart"](10, "div", 10); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵlistener"]("click", function SectionPlayerComponent_Template_div_click_10_listener() { return ctx.zoomOut(); }); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵelementEnd"]()()(); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵelementEnd"]()()(); } if (rf & 2) { - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx.loadView); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx.infoPopup); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("ngIf", ctx.showContentError); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](1); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("hidden", !ctx.showZoomModal); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵadvance"](3); - _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵproperty"]("src", ctx.zoomImgSrc, _angular_core__WEBPACK_IMPORTED_MODULE_11__["ɵɵsanitizeUrl"]); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx.loadView); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx.infoPopup); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("ngIf", ctx.showContentError); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](1); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("hidden", !ctx.showZoomModal); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵadvance"](3); + _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵproperty"]("src", ctx.zoomImgSrc, _angular_core__WEBPACK_IMPORTED_MODULE_12__["ɵɵsanitizeUrl"]); } }, - dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_24__.NgClass, _angular_common__WEBPACK_IMPORTED_MODULE_24__.NgForOf, _angular_common__WEBPACK_IMPORTED_MODULE_24__.NgIf, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_25__.SlideComponent, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_25__.CarouselComponent, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_15__.ContenterrorComponent, _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__.McqComponent, _header_header_component__WEBPACK_IMPORTED_MODULE_5__.HeaderComponent, _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__.SaComponent, _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_7__.AnsComponent, _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__.StartpageComponent, _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__.AlertComponent, _mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_10__.McqSolutionsComponent], - styles: ["@charset \"UTF-8\";\n :root {\n --quml-scoreboard-sub-title: #6d7278;\n --quml-scoreboard-skipped: #969696;\n --quml-scoreboard-unattempted: #575757;\n --quml-color-success: #08bc82;\n --quml-color-danger: #f1635d;\n --quml-color-primary-contrast: #333;\n --quml-btn-border: #ccc;\n --quml-heder-text-color: #6250f5;\n --quml-header-bg-color: #c2c2c2;\n --quml-mcq-title-txt: #131415;\n --quml-zoom-btn-txt: #eee;\n --quml-zoom-btn-hover: #f2f2f2;\n --quml-main-bg: #fff;\n --quml-btn-color: #fff;\n --quml-question-bg: #fff;\n}\n\n.quml-header[_ngcontent-%COMP%] {\n background: var(--quml-header-bg-color);\n display: flow-root;\n height: 2.25rem;\n position: fixed;\n}\n\n.quml-container[_ngcontent-%COMP%] {\n overflow: hidden;\n width: 100%;\n height: 100%;\n position: relative;\n}\n\n.quml-landscape[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n\n .carousel {\n outline: none;\n}\n\n.col[_ngcontent-%COMP%] {\n padding-left: 0px;\n padding-right: 0px;\n}\n\n.quml-button[_ngcontent-%COMP%] {\n background-color: var(--primary-color);\n \n\n border: none;\n color: var(--quml-btn-color);\n padding: 0.25rem;\n text-align: center;\n text-decoration: none;\n font-size: 1rem;\n margin: 0.125rem 0.5rem 0.125rem 0.125rem;\n cursor: pointer;\n width: 3rem;\n height: 2.5rem;\n border-radius: 10%;\n}\n\n.landscape-mode[_ngcontent-%COMP%] {\n height: 100%;\n width: 100%;\n position: relative;\n background-color: var(--quml-main-bg);\n}\n\n.landscape-content[_ngcontent-%COMP%] {\n padding: 2.5rem 4rem 0 4rem;\n overflow: auto;\n height: 100%;\n width: 100%;\n}\n@media only screen and (max-width: 480px) {\n .landscape-content[_ngcontent-%COMP%] {\n padding: 5rem 1rem 0 1rem;\n height: calc(100% - 3rem);\n }\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] {\n position: absolute;\n left: 0;\n top: 3.5rem;\n text-align: center;\n z-index: 1;\n width: 4rem;\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] div[_ngcontent-%COMP%] {\n padding-bottom: 1.5rem;\n}\n\n.landscape-center[_ngcontent-%COMP%] {\n width: 100%;\n}\n\n.lanscape-mode-right[_ngcontent-%COMP%] {\n -ms-overflow-style: none; \n\n scrollbar-width: none; \n\n position: absolute;\n padding: 0 1rem;\n right: 0.5rem;\n color: var(--quml-scoreboard-unattempted);\n font-size: 0.75rem;\n height: calc(100% - 4rem);\n overflow-y: auto;\n top: 3.5rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n margin-top: 0.5rem;\n padding: 0;\n text-align: center;\n position: relative;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 0.0625rem;\n height: 100%;\n position: absolute;\n left: 0;\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 1;\n margin: 0 auto;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n width: 1.25rem;\n height: 1.25rem;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n display: inline-block;\n transform: rotate(45deg);\n height: 0.6rem;\n width: 0.3rem;\n border-bottom: 0.12rem solid var(--primary-color);\n border-right: 0.12rem solid var(--primary-color);\n position: absolute;\n top: 0.25rem;\n right: -0.7rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n position: absolute;\n top: 0.525rem;\n right: -0.7rem;\n height: 0.375rem;\n width: 0.375rem;\n border-radius: 0.375rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%] label[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n color: var(--white) !important;\n background: var(--primary-color);\n border: 0.03125rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 0.25rem;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n height: 1.65rem;\n border-radius: 0.25rem;\n position: absolute;\n width: 1.65rem;\n background: var(--quml-question-bg);\n z-index: -1;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] {\n display: none;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n height: 0;\n transform: scaleY(0);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n height: 100%;\n transform-origin: top;\n transition: transform 0.2s ease-out;\n transform: scaleY(1);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ label[_ngcontent-%COMP%] {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 50%;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border: 0.0625rem solid rgb(204, 204, 204);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.progressBar-border[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] .active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.att-color[_ngcontent-%COMP%] {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.info-page[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]:hover {\n color: var(--white) !important;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n color: var(--white);\n border: 0px solid transparent;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%] {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%] {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n\n.current-slide[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-sub-title);\n font-size: 0.875rem;\n font-weight: 900;\n letter-spacing: 0;\n}\n\n@media only screen and (max-width: 480px) {\n .lanscape-mode-right[_ngcontent-%COMP%] {\n background: var(--white);\n display: flex;\n align-items: center;\n overflow-x: auto;\n overflow-y: hidden;\n width: 90%;\n height: 2.5rem;\n padding: 1rem 0 0;\n margin: auto;\n left: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n padding: 0;\n text-align: center;\n position: relative;\n display: flex;\n height: 1.5rem;\n margin-top: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n z-index: 1;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 0px;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] {\n display: flex;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 2.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n top: -1.75rem;\n position: inherit;\n margin: 0.5rem 2.25rem;\n padding-left: 1.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n background: transparent;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.8125rem;\n right: auto;\n left: 0.625rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n margin-bottom: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 100%;\n height: 0.0625rem;\n position: absolute;\n left: 0;\n top: 50%;\n transform: translate(0, -50%);\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 0;\n margin: 0 auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n width: 0;\n transform: scaleX(0);\n margin: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n width: calc(100% - 4rem);\n transform-origin: left;\n transition: transform 0.2s ease-out;\n transform: scaleX(1);\n margin: -1.25rem 3rem 0 4rem;\n }\n .landscape-center[_ngcontent-%COMP%] {\n margin-top: 2rem;\n }\n .lanscape-mode-left[_ngcontent-%COMP%] {\n display: none;\n }\n .landscape-mode[_ngcontent-%COMP%] {\n grid-template-areas: \"right right right\" \"center center center\" \"left left left\";\n }\n}\n.quml-timer[_ngcontent-%COMP%] {\n padding: 0.5rem;\n}\n\n.quml-header-text[_ngcontent-%COMP%] {\n margin: 0.5rem;\n text-align: center;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n\n.quml-arrow-button[_ngcontent-%COMP%] {\n border-radius: 28%;\n font-size: 0%;\n outline: none;\n background-color: var(--primary-color);\n padding: 0.5rem;\n}\n\n.info-popup[_ngcontent-%COMP%] {\n position: absolute;\n top: 18%;\n right: 10%;\n font-size: 0.875rem;\n box-shadow: 0 0.125rem 0.875rem 0 rgba(0, 0, 0, 0.1);\n padding: 0.75rem;\n}\n\n.quml-menu[_ngcontent-%COMP%] {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n.quml-card[_ngcontent-%COMP%] {\n background-color: var(--white);\n padding: 1.25rem;\n box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);\n width: 25%;\n position: absolute;\n left: 37%;\n text-align: center;\n top: 25%;\n z-index: 2;\n}\n\n.quml-card-title[_ngcontent-%COMP%] {\n font-size: 1.25rem;\n text-align: center;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .wrong[_ngcontent-%COMP%] {\n color: red;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .right[_ngcontent-%COMP%] {\n color: green;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] button[_ngcontent-%COMP%] {\n color: var(--white);\n background-color: var(--primary-color);\n border-color: var(--primary-color);\n outline: none;\n font-size: 0.875rem;\n padding: 0.25rem 1.5rem;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] {\n width: 40%;\n display: inline;\n padding-right: 0.75rem;\n}\n\n .carousel.slide a.left.carousel-control.carousel-control-prev, .carousel.slide .carousel-control.carousel-control-next {\n display: none;\n}\n .carousel-item {\n perspective: unset;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] {\n visibility: hidden;\n margin-top: -2.5rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%] {\n display: grid;\n grid-template-columns: 1fr 15fr;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-menu[_ngcontent-%COMP%] {\n color: var(--quml-heder-text-color);\n font-size: 1.5rem;\n padding-left: 1.25rem;\n margin-top: 0.25rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-header-text[_ngcontent-%COMP%] {\n font-size: 0.875rem;\n color: var(--quml-heder-text-color);\n}\n\n.row[_ngcontent-%COMP%] {\n margin-right: 0px;\n margin-left: 0px;\n}\n\n.portrait-header[_ngcontent-%COMP%] {\n visibility: hidden;\n}\n\n.image-viewer__overlay[_ngcontent-%COMP%], .image-viewer__container[_ngcontent-%COMP%], .image-viewer__close[_ngcontent-%COMP%], .image-viewer__zoom[_ngcontent-%COMP%] {\n position: absolute;\n}\n.image-viewer__overlay[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n background: var(--quml-color-primary-contrast);\n z-index: 11111;\n}\n.image-viewer__container[_ngcontent-%COMP%] {\n background-color: var(--quml-color-primary-contrast);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 11111;\n width: 80%;\n height: 80%;\n}\n.image-viewer__img[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n.image-viewer__close[_ngcontent-%COMP%] {\n top: 1rem;\n right: 1rem;\n text-align: center;\n cursor: pointer;\n z-index: 999999;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 100%;\n width: 3rem;\n height: 3rem;\n position: inherit;\n}\n.image-viewer__close[_ngcontent-%COMP%]::after {\n content: \"\u2715\";\n color: var(--white);\n font-size: 2rem;\n}\n.image-viewer__close[_ngcontent-%COMP%]:hover {\n background: rgb(0, 0, 0);\n}\n.image-viewer__zoom[_ngcontent-%COMP%] {\n bottom: 1rem;\n right: 1rem;\n width: 2.5rem;\n height: auto;\n border-radius: 0.5rem;\n background: var(--white);\n display: flex;\n flex-direction: column;\n align-items: center;\n overflow: hidden;\n z-index: 99999;\n position: inherit;\n border: 0.0625rem solid var(--quml-zoom-btn-txt);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%], .image-viewer__zoomout[_ngcontent-%COMP%] {\n text-align: center;\n height: 2.5rem;\n position: relative;\n width: 2.5rem;\n cursor: pointer;\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]:hover, .image-viewer__zoomout[_ngcontent-%COMP%]:hover {\n background-color: var(--quml-zoom-btn-hover);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after, .image-viewer__zoomout[_ngcontent-%COMP%]::after {\n font-size: 1.5rem;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%] {\n border-bottom: 0.0625rem solid var(--quml-btn-border);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after {\n content: \"+\";\n}\n.image-viewer__zoomout[_ngcontent-%COMP%]::after {\n content: \"\u2212\";\n}\n\n\n\n quml-ans {\n cursor: pointer;\n}\n quml-ans svg circle {\n fill: var(--quml-zoom-btn-txt);\n}\n .magnify-icon {\n position: absolute;\n right: 0;\n bottom: 0;\n width: 1.5rem;\n height: 1.5rem;\n border-top-left-radius: 0.5rem;\n cursor: pointer;\n background-color: var(--quml-color-primary-contrast);\n}\n .magnify-icon::after {\n content: \"\";\n position: absolute;\n bottom: 0.125rem;\n right: 0.125rem;\n z-index: 1;\n width: 1rem;\n height: 1rem;\n background-image: url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n .solution-options figure.image {\n border: 0.0625rem solid var(--quml-btn-border);\n overflow: hidden;\n border-radius: 0.25rem;\n position: relative;\n}\n .solutions .solution-options figure.image, .image-viewer__overlay .image-viewer__container {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n .solutions .solution-options figure.image .portrait, .image-viewer__overlay .image-viewer__container .portrait {\n width: auto;\n height: 100%;\n}\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: auto;\n height: auto;\n}\n@media only screen and (max-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: 100%;\n }\n}\n@media only screen and (min-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n height: 100%;\n }\n}\n .solutions .solution-options figure.image .landscape, .image-viewer__overlay .image-viewer__container .landscape {\n height: auto;\n}\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .quml-mcq .mcq-title p, .quml-sa .mcq-title p, quml-sa .mcq-title p, quml-mcq-solutions .mcq-title p {\n word-break: break-word;\n}\n@media only screen and (max-width: 480px) {\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n margin-top: 1rem;\n }\n}\n .quml-mcq .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-mcq .quml-mcq--option .quml-mcq-option-card p:last-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:first-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:last-child {\n margin-bottom: 0;\n}\n quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-25, quml-mcq-solutions figure.image.resize-50, quml-mcq-solutions figure.image.resize-75, quml-mcq-solutions figure.image.resize-100, quml-mcq-solutions figure.image.resize-original {\n width: 25%;\n height: auto;\n}\n quml-mcq-solutions .solution-options p {\n margin-bottom: 1rem;\n}\n .quml-option .option p {\n word-break: break-word;\n}\n\n.endPage-container-height[_ngcontent-%COMP%] {\n height: 100%;\n}\n\n.scoreboard-sections[_ngcontent-%COMP%] {\n display: contents;\n}\n.scoreboard-sections[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n\n.hover-effect[_ngcontent-%COMP%]:hover::after, .hover-effect[_ngcontent-%COMP%]:focus::after, .hover-effect.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3NlY3Rpb24tcGxheWVyL3NlY3Rpb24tcGxheWVyLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdCQUFnQjtBQUVoQjtFQUNFLG9DQUFBO0VBQ0Esa0NBQUE7RUFDQSxzQ0FBQTtFQUNBLDZCQUFBO0VBQ0EsNEJBQUE7RUFDQSxtQ0FBQTtFQUNBLHVCQUFBO0VBQ0EsZ0NBQUE7RUFDQSwrQkFBQTtFQUNBLDZCQUFBO0VBQ0EseUJBQUE7RUFDQSw4QkFBQTtFQUNBLG9CQUFBO0VBQ0Esc0JBQUE7RUFDQSx3QkFBQTtBQUFGOztBQUdBO0VBQ0UsdUNBQUE7RUFDQSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxlQUFBO0FBQUY7O0FBR0E7RUFDRSxnQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7QUFBRjs7QUFHQTtFQUNFLFdBQUE7RUFDQSxZQUFBO0FBQUY7O0FBR0E7RUFDRSxhQUFBO0FBQUY7O0FBR0E7RUFDRSxpQkFBQTtFQUNBLGtCQUFBO0FBQUY7O0FBR0E7RUFDRSxzQ0FBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsNEJBQUE7RUFDQSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EscUJBQUE7RUFDQSxlQUFBO0VBQ0EseUNBQUE7RUFDQSxlQUFBO0VBQ0EsV0FBQTtFQUNBLGNBQUE7RUFDQSxrQkFBQTtBQUFGOztBQUdBO0VBQ0UsWUFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtFQUNBLHFDQUFBO0FBQUY7O0FBR0E7RUFDRSwyQkFBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtBQUFGO0FBRUU7RUFORjtJQU9JLHlCQUFBO0lBQ0EseUJBQUE7RUFDRjtBQUNGOztBQUVBO0VBQ0Usa0JBQUE7RUFDQSxPQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7QUFDRjs7QUFFQTtFQUNFLHNCQUFBO0FBQ0Y7O0FBRUE7RUFDRSxXQUFBO0FBQ0Y7O0FBRUE7RUFDRSx3QkFBQSxFQUFBLGdCQUFBO0VBQ0EscUJBQUEsRUFBQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxlQUFBO0VBQ0EsYUFBQTtFQUNBLHlDQUFBO0VBQ0Esa0JBQUE7RUFDQSx5QkFBQTtFQUNBLGdCQUFBO0VBQ0EsV0FBQTtBQUNGO0FBQ0U7RUFDRSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7QUFDSjtBQUNJO0VBQ0UsV0FBQTtFQUNBLGdCQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0EsT0FBQTtFQUNBLFFBQUE7RUFDQSwwQ0FBQTtFQUNBLFVBQUE7RUFDQSxjQUFBO0FBQ047QUFDSTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQUNOO0FBQ007RUFDRSx5Q0FBQTtFQUNBLDJEQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLHdCQUFBO0FBQ1I7QUFBUTtFQUNFLDRDQUFBO0FBRVY7QUFHTTtFQUNFLHNDQUFBO0VBQ0EsMkJBQUE7QUFEUjtBQUdNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtBQURSO0FBT1U7RUFDRSxzQ0FBQTtFQUNBLDJCQUFBO0FBTFo7QUFPVTtFQUNFLG1CQUFBO0VBQ0EsZ0NBQUE7QUFMWjtBQVlZO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsY0FBQTtFQUNBLGVBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0Esa0JBQUE7QUFWZDtBQWlCUTtFQUNFLFdBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsY0FBQTtFQUNBLGFBQUE7RUFDQSxpREFBQTtFQUNBLGdEQUFBO0VBQ0Esa0JBQUE7RUFDQSxZQUFBO0VBQ0EsY0FBQTtBQWZWO0FBa0JNO0VBR0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSxnQkFBQTtFQUNBLGVBQUE7RUFDQSx1QkFBQTtBQWxCUjtBQXFCUTtFQUNFLHVDQUFBO0VBQ0EsNkJBQUE7QUFuQlY7QUF1QlE7RUFDRSxvQ0FBQTtFQUNBLDJCQUFBO0FBckJWO0FBeUJRO0VBQ0U7Ozs7OztHQUFBO0VBT0EsNkJBQUE7QUF2QlY7QUE0QlE7RUFDRSw4QkFBQTtFQUNBLGdDQUFBO0VBQ0EsNkNBQUE7QUExQlY7QUE4Qkk7RUFDRSx5Q0FBQTtFQUNBLHNCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EseUNBQUE7RUFDQSwyREFBQTtFQUNBLHNCQUFBO0VBQ0EsZUFBQTtBQTVCTjtBQThCTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7RUFDQSxrQkFBQTtFQUNBLHdCQUFBO0FBNUJSO0FBNkJRO0VBQ0UsNENBQUE7QUEzQlY7QUE4Qk07RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBOUJSO0FBK0JRO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtFQUNBLHNCQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsbUNBQUE7RUFDQSxXQUFBO0FBN0JWO0FBZ0NNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBOUJSO0FBZ0NNO0VBQ0UseUNBQUE7RUFDQSwyREFBQTtBQTlCUjtBQStCUTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUE3QlY7QUFpQ0k7RUFDRSxhQUFBO0FBL0JOO0FBaUNJO0VBQ0UsU0FBQTtFQUNBLG9CQUFBO0FBL0JOO0FBaUNJO0VBQ0UsWUFBQTtFQUNBLHFCQUFBO0VBQ0EsbUNBQUE7RUFDQSxvQkFBQTtBQS9CTjtBQWtDTTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUFoQ1I7QUFtQ0k7RUFDRSx5Q0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EsMENBQUE7RUFDQSxzQkFBQTtFQUNBLGVBQUE7QUFqQ047QUFtQ1E7RUFDRSw0Q0FBQTtBQWpDVjtBQXFDTTs7RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBcENSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtFQUNBLDRDQUFBO0FBckNSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBckNSO0FBc0NRO0VBQ0UsOEJBQUE7QUFwQ1Y7QUF1Q007RUFHRSxtQkFBQTtFQUNBLDZCQUFBO0FBdkNSO0FBeUNNO0VBQ0UsdUNBQUE7RUFDQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLG9DQUFBO0VBQ0EsMkJBQUE7QUF2Q1I7QUF5Q007RUFDRTs7Ozs7O0dBQUE7RUFPQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7QUF2Q1I7QUF3Q1E7RUFDRSw0Q0FBQTtFQUNBLDJCQUFBO0FBdENWOztBQTZDQTtFQUNFLHVDQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0FBMUNGOztBQTZDQTtFQUNFO0lBQ0Usd0JBQUE7SUFDQSxhQUFBO0lBQ0EsbUJBQUE7SUFDQSxnQkFBQTtJQUNBLGtCQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7SUFDQSxpQkFBQTtJQUNBLFlBQUE7SUFDQSxPQUFBO0VBMUNGO0VBMkNFO0lBQ0UsZ0JBQUE7SUFDQSxVQUFBO0lBQ0Esa0JBQUE7SUFDQSxrQkFBQTtJQUNBLGFBQUE7SUFDQSxjQUFBO0lBQ0EsYUFBQTtFQXpDSjtFQTBDSTtJQUNFLHFCQUFBO0lBQ0EsVUFBQTtFQXhDTjtFQTBDTTtJQUNFLGlCQUFBO0VBeENSO0VBMkNJO0lBQ0UsYUFBQTtFQXpDTjtFQTBDTTtJQUNFLHFCQUFBO0VBeENSO0VBNENNO0lBQ0UsYUFBQTtJQUNBLGlCQUFBO0lBQ0Esc0JBQUE7SUFDQSxxQkFBQTtFQTFDUjtFQTJDUTtJQUNFLHVCQUFBO0VBekNWO0VBNkNRO0lBQ0UsV0FBQTtJQUNBLGVBQUE7SUFDQSxXQUFBO0lBQ0EsY0FBQTtFQTNDVjtFQStDUTtJQUNFLFdBQUE7SUFDQSxjQUFBO0lBQ0EsWUFBQTtJQUNBLFdBQUE7RUE3Q1Y7RUFpRFE7SUFDRSxXQUFBO0lBQ0EsY0FBQTtJQUNBLFlBQUE7SUFDQSxXQUFBO0VBL0NWO0VBbURRO0lBQ0UsV0FBQTtJQUNBLGNBQUE7SUFDQSxZQUFBO0lBQ0EsV0FBQTtFQWpEVjtFQXFESTtJQUNFLHFCQUFBO0lBQ0EsZ0JBQUE7RUFuRE47RUFxREk7SUFDRSxXQUFBO0lBQ0EsV0FBQTtJQUNBLGlCQUFBO0lBQ0Esa0JBQUE7SUFDQSxPQUFBO0lBQ0EsUUFBQTtJQUNBLDZCQUFBO0lBQ0EsUUFBQTtJQUNBLDBDQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7RUFuRE47RUF1REE7SUFDRSxRQUFBO0lBQ0Esb0JBQUE7SUFDQSxTQUFBO0VBckRGO0VBdURBO0lBQ0Usd0JBQUE7SUFDQSxzQkFBQTtJQUNBLG1DQUFBO0lBQ0Esb0JBQUE7SUFDQSw0QkFBQTtFQXJERjtFQXVEQTtJQUNFLGdCQUFBO0VBckRGO0VBd0RBO0lBQ0UsYUFBQTtFQXRERjtFQXlEQTtJQUNFLGdGQUNFO0VBeERKO0FBQ0Y7QUE2REE7RUFDRSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGNBQUE7RUFDQSxrQkFBQTtFQUNBLHVCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxtQkFBQTtBQTNERjs7QUE4REE7RUFDRSxrQkFBQTtFQUNBLGFBQUE7RUFDQSxhQUFBO0VBQ0Esc0NBQUE7RUFDQSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7RUFDQSxtQkFBQTtFQUVBLG9EQUFBO0VBQ0EsZ0JBQUE7QUE1REY7O0FBK0RBO0VBQ0UsYUFBQTtFQUNBLGNBQUE7QUE1REY7O0FBK0RBO0VBQ0UsOEJBQUE7RUFDQSxnQkFBQTtFQUNBLGlEQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0EsU0FBQTtFQUNBLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7QUE1REY7O0FBK0RBO0VBQ0Usa0JBQUE7RUFDQSxrQkFBQTtBQTVERjs7QUErREE7RUFDRSxVQUFBO0FBNURGOztBQStEQTtFQUNFLFlBQUE7QUE1REY7O0FBK0RBO0VBQ0UsbUJBQUE7RUFDQSxzQ0FBQTtFQUNBLGtDQUFBO0VBQ0EsYUFBQTtFQUNBLG1CQUFBO0VBQ0EsdUJBQUE7QUE1REY7O0FBK0RBO0VBQ0UsVUFBQTtFQUNBLGVBQUE7RUFDQSxzQkFBQTtBQTVERjs7QUFpRUk7O0VBRUUsYUFBQTtBQTlETjtBQWtFRTtFQUNFLGtCQUFBO0FBaEVKOztBQW9FQTtFQUNFLGtCQUFBO0VBQ0EsbUJBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsYUFBQTtFQUNBLCtCQUFBO0FBakVGOztBQW9FQTtFQUNFLG1DQUFBO0VBQ0EsaUJBQUE7RUFDQSxxQkFBQTtFQUNBLG1CQUFBO0FBakVGOztBQW9FQTtFQUNFLG1CQUFBO0VBQ0EsbUNBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsaUJBQUE7RUFDQSxnQkFBQTtBQWpFRjs7QUFvRUE7RUFDRSxrQkFBQTtBQWpFRjs7QUFxRUU7RUFJRSxrQkFBQTtBQXJFSjtBQXdFRTtFQUNFLFdBQUE7RUFDQSxZQUFBO0VBQ0EsOENBQUE7RUFDQSxjQUFBO0FBdEVKO0FBeUVFO0VBQ0Usb0RBQUE7RUFDQSxRQUFBO0VBQ0EsU0FBQTtFQUNBLGdDQUFBO0VBQ0EsY0FBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0FBdkVKO0FBMEVFO0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUF4RUo7QUEyRUU7RUFDRSxTQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7RUFDQSw4QkFBQTtFQUNBLG1CQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQXpFSjtBQTJFSTtFQUNFLFlBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QUF6RU47QUE0RUk7RUFDRSx3QkFBQTtBQTFFTjtBQThFRTtFQUNFLFlBQUE7RUFDQSxXQUFBO0VBQ0EsYUFBQTtFQUNBLFlBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsYUFBQTtFQUNBLHNCQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGNBQUE7RUFDQSxpQkFBQTtFQUNBLGdEQUFBO0FBNUVKO0FBK0VFO0VBRUUsa0JBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSxhQUFBO0VBQ0EsZUFBQTtBQTlFSjtBQWdGSTtFQUNFLDRDQUFBO0FBOUVOO0FBaUZJO0VBQ0UsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsZ0NBQUE7QUEvRU47QUFtRkU7RUFDRSxxREFBQTtBQWpGSjtBQW1GSTtFQUNFLFlBQUE7QUFqRk47QUFzRkk7RUFDRSxZQUFBO0FBcEZOOztBQXlGQSxlQUFBO0FBRUU7RUFDRSxlQUFBO0FBdkZKO0FBd0ZJO0VBQ0UsOEJBQUE7QUF0Rk47QUEwRkU7RUFDRSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSw4QkFBQTtFQUNBLGVBQUE7RUFDQSxvREFBQTtBQXhGSjtBQTJGRTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHc0REFBQTtFQUNBLHNCQUFBO0VBQ0EsNEJBQUE7RUFDQSwyQkFBQTtBQXpGSjtBQTRGRTtFQUNFLDhDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxzQkFBQTtFQUNBLGtCQUFBO0FBMUZKO0FBK0ZFOztFQUVFLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0FBN0ZKO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBOEZNO0VBSkY7O0lBS0ksV0FBQTtFQTFGTjtBQUNGO0FBNEZNO0VBUkY7O0lBU0ksWUFBQTtFQXhGTjtBQUNGO0FBMkZJOztFQUNFLFlBQUE7QUF4Rk47QUFnR0k7Ozs7RUFDRSxnQ0FBQTtBQTNGTjtBQTZGTTs7OztFQUNFLHNCQUFBO0FBeEZSO0FBMEZNO0VBTkY7Ozs7SUFPSSxnQkFBQTtFQXBGTjtBQUNGO0FBOEZNOzs7Ozs7OztFQUVFLGdCQUFBO0FBdEZSO0FBMkZJOzs7Ozs7RUFNRSxVQUFBO0VBQ0EsWUFBQTtBQXpGTjtBQTRGSTtFQUNFLG1CQUFBO0FBMUZOO0FBOEZFO0VBQ0Usc0JBQUE7QUE1Rko7O0FBZ0dBO0VBQ0UsWUFBQTtBQTdGRjs7QUErRkE7RUFDRSxpQkFBQTtBQTVGRjtBQTZGRTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQTNGSjs7QUFrR0k7RUFDRSxzQ0FBQTtFQUNBLFdBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtBQS9GTiIsInNvdXJjZXNDb250ZW50IjpbIkBpbXBvcnQgXCIuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvQHByb2plY3Qtc3VuYmlyZC9zYi1zdHlsZXMvYXNzZXRzL21peGlucy9taXhpbnNcIjtcblxuOjpuZy1kZWVwIDpyb290IHtcbiAgLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlOiAjNmQ3Mjc4O1xuICAtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkOiAjOTY5Njk2O1xuICAtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZDogIzU3NTc1NztcbiAgLS1xdW1sLWNvbG9yLXN1Y2Nlc3M6ICMwOGJjODI7XG4gIC0tcXVtbC1jb2xvci1kYW5nZXI6ICNmMTYzNWQ7XG4gIC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0OiAjMzMzO1xuICAtLXF1bWwtYnRuLWJvcmRlcjogI2NjYztcbiAgLS1xdW1sLWhlZGVyLXRleHQtY29sb3I6ICM2MjUwZjU7XG4gIC0tcXVtbC1oZWFkZXItYmctY29sb3I6ICNjMmMyYzI7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xuICAtLXF1bWwtem9vbS1idG4tdHh0OiAjZWVlO1xuICAtLXF1bWwtem9vbS1idG4taG92ZXI6ICNmMmYyZjI7XG4gIC0tcXVtbC1tYWluLWJnOiAjZmZmO1xuICAtLXF1bWwtYnRuLWNvbG9yOiAjZmZmO1xuICAtLXF1bWwtcXVlc3Rpb24tYmc6ICNmZmY7XG59XG5cbi5xdW1sLWhlYWRlciB7XG4gIGJhY2tncm91bmQ6IHZhcigtLXF1bWwtaGVhZGVyLWJnLWNvbG9yKTtcbiAgZGlzcGxheTogZmxvdy1yb290O1xuICBoZWlnaHQ6IDIuMjVyZW07XG4gIHBvc2l0aW9uOiBmaXhlZDtcbn1cblxuLnF1bWwtY29udGFpbmVyIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4ucXVtbC1sYW5kc2NhcGUge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xufVxuXG46Om5nLWRlZXAgLmNhcm91c2VsIHtcbiAgb3V0bGluZTogbm9uZTtcbn1cblxuLmNvbCB7XG4gIHBhZGRpbmctbGVmdDogMHB4O1xuICBwYWRkaW5nLXJpZ2h0OiAwcHg7XG59XG5cbi5xdW1sLWJ1dHRvbiB7XG4gIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAvKiBOYXZ5IEJsdWUgKi9cbiAgYm9yZGVyOiBub25lO1xuICBjb2xvcjogdmFyKC0tcXVtbC1idG4tY29sb3IpO1xuICBwYWRkaW5nOiAwLjI1cmVtO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgZm9udC1zaXplOiAxcmVtO1xuICBtYXJnaW46IDAuMTI1cmVtIDAuNXJlbSAwLjEyNXJlbSAwLjEyNXJlbTtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB3aWR0aDogM3JlbTtcbiAgaGVpZ2h0OiAyLjVyZW07XG4gIGJvcmRlci1yYWRpdXM6IDEwJTtcbn1cblxuLmxhbmRzY2FwZS1tb2RlIHtcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLW1haW4tYmcpO1xufVxuXG4ubGFuZHNjYXBlLWNvbnRlbnQge1xuICBwYWRkaW5nOiAyLjVyZW0gNHJlbSAwIDRyZW07XG4gIG92ZXJmbG93OiBhdXRvO1xuICBoZWlnaHQ6IDEwMCU7XG4gIHdpZHRoOiAxMDAlO1xuXG4gIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgICBwYWRkaW5nOiA1cmVtIDFyZW0gMCAxcmVtO1xuICAgIGhlaWdodDogY2FsYygxMDAlIC0gM3JlbSk7XG4gIH1cbn1cblxuLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgdG9wOiAzLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgei1pbmRleDogMTtcbiAgd2lkdGg6IDRyZW07XG59XG5cbi5sYW5zY2FwZS1tb2RlLWxlZnQgZGl2IHtcbiAgcGFkZGluZy1ib3R0b206IDEuNXJlbTtcbn1cblxuLmxhbmRzY2FwZS1jZW50ZXIge1xuICB3aWR0aDogMTAwJTtcbn1cblxuLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7IC8qIElFIGFuZCBFZGdlICovXG4gIHNjcm9sbGJhci13aWR0aDogbm9uZTsgLyogRmlyZWZveCAqL1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHBhZGRpbmc6IDAgMXJlbTtcbiAgcmlnaHQ6IDAuNXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgaGVpZ2h0OiBjYWxjKDEwMCUgLSA0cmVtKTtcbiAgb3ZlcmZsb3cteTogYXV0bztcbiAgdG9wOiAzLjVyZW07XG5cbiAgdWwge1xuICAgIGxpc3Qtc3R5bGU6IG5vbmU7XG4gICAgbWFyZ2luLXRvcDogMC41cmVtO1xuICAgIHBhZGRpbmc6IDA7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuICAgICY6OmJlZm9yZSB7XG4gICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgd2lkdGg6IDAuMDYyNXJlbTtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgIGxlZnQ6IDA7XG4gICAgICByaWdodDogMDtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjA0LCAyMDQsIDIwNCwgMC41KTtcbiAgICAgIHotaW5kZXg6IDE7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICB9XG4gICAgbGkge1xuICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgICAgei1pbmRleDogMjtcblxuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICAgIC5zaW5nbGVDb250ZW50Lm5vbkZlZWRiYWNrIHtcbiAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cbiAgICAgIGxpLmF0dC1jb2xvciB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiB7XG4gICAgICB1bCB7XG4gICAgICAgICYubm9uRmVlZGJhY2sge1xuICAgICAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgICBsaS5hdHQtY29sb3Ige1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICBsaSB7XG4gICAgICAgICAgJjpob3ZlcixcbiAgICAgICAgICAmOmZvY3VzLFxuICAgICAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICAgIHdpZHRoOiAxLjY1cmVtO1xuICAgICAgICAgICAgICBoZWlnaHQ6IDEuNjVyZW07XG4gICAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgICAgICAgcGFkZGluZzogMC4yNXJlbTtcbiAgICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgaGVpZ2h0OiAwLjZyZW07XG4gICAgICAgICAgd2lkdGg6IDAuM3JlbTtcbiAgICAgICAgICBib3JkZXItYm90dG9tOiAwLjEycmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlci1yaWdodDogMC4xMnJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgdG9wOiAwLjI1cmVtO1xuICAgICAgICAgIHJpZ2h0OiAtMC43cmVtO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Q6OmFmdGVyLFxuICAgICAgJi53cm9uZzo6YWZ0ZXIsXG4gICAgICAmLnBhcnRpYWw6OmFmdGVyIHtcbiAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICB0b3A6IDAuNTI1cmVtO1xuICAgICAgICByaWdodDogLTAuN3JlbTtcbiAgICAgICAgaGVpZ2h0OiAwLjM3NXJlbTtcbiAgICAgICAgd2lkdGg6IDAuMzc1cmVtO1xuICAgICAgICBib3JkZXItcmFkaXVzOiAwLjM3NXJlbTtcbiAgICAgIH1cbiAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tY29ycmVjdC1iZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgICYud3Jvbmcge1xuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgLS13cm9uZy1iZzogdmFyKC0tcXVtbC1jb2xvci1kYW5nZXIpO1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXdyb25nLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIC0tcGFydGlhbC1iZzogbGluZWFyLWdyYWRpZW50KFxuICAgICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDAlLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDUwJSxcbiAgICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgICAgcmdiYSgyNDksIDEyMiwgMTE2LCAxKSAxMDAlXG4gICAgICAgICAgKTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hdHRlbXB0ZWQsXG4gICAgICAmLnBhcnRpYWwge1xuICAgICAgICBsYWJlbCB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiBsYWJlbCB7XG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDAuMjVyZW07XG4gICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBoZWlnaHQ6IDEuMjVyZW07XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgIG1hcmdpbi1ib3R0b206IDIuMjVyZW07XG4gICAgICBjdXJzb3I6IHBvaW50ZXI7XG5cbiAgICAgICYucmVxdWlyZXNTdWJtaXQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hY3RpdmUsXG4gICAgICAmOmhvdmVyLFxuICAgICAgJjpmb2N1cyB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgICAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgICAgICB6LWluZGV4OiAtMTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5za2lwcGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXNraXBwZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICB9XG4gICAgICAmLnVuYXR0ZW1wdGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gICAgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIHtcbiAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgfVxuICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB+IHVsIHtcbiAgICAgIGhlaWdodDogMDtcbiAgICAgIHRyYW5zZm9ybTogc2NhbGVZKDApO1xuICAgIH1cbiAgICBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHRyYW5zZm9ybS1vcmlnaW46IHRvcDtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjJzIGVhc2Utb3V0O1xuICAgICAgdHJhbnNmb3JtOiBzY2FsZVkoMSk7XG4gICAgfVxuICAgIC5zZWN0aW9uIHtcbiAgICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXTpjaGVja2VkIH4gbGFiZWwge1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXF1bWwtcXVlc3Rpb24tYmcpO1xuICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgd2lkdGg6IDEuMjVyZW07XG4gICAgICBwYWRkaW5nOiAwLjI1cmVtO1xuICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHJnYmEoMjA0LCAyMDQsIDIwNCwgMSk7XG4gICAgICBtYXJnaW4tYm90dG9tOiAyLjI1cmVtO1xuICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyLFxuICAgICAgLmFjdGl2ZSxcbiAgICAgICYuYXR0LWNvbG9yIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cblxuICAgICAgJi5pbmZvLXBhZ2Uge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICB9XG4gICAgICAmLnNraXBwZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkKTtcbiAgICAgICAgJjpob3ZlciB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLnBhcnRpYWwsXG4gICAgICAmLndyb25nLFxuICAgICAgJi5jb3JyZWN0IHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYm9yZGVyOiAwcHggc29saWQgdHJhbnNwYXJlbnQ7XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Qge1xuICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLWNvcnJlY3QtYmcpO1xuICAgICAgfVxuICAgICAgJi53cm9uZyB7XG4gICAgICAgIC0td3JvbmctYmc6IHZhcigtLXF1bWwtY29sb3ItZGFuZ2VyKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td3JvbmctYmcpO1xuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgLS1wYXJ0aWFsLWJnOiBsaW5lYXItZ3JhZGllbnQoXG4gICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgIHJnYmEoNzEsIDE2NCwgMTI4LCAxKSAwJSxcbiAgICAgICAgICByZ2JhKDcxLCAxNjQsIDEyOCwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgMTAwJVxuICAgICAgICApO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgIH1cbiAgICAgICYudW5hdHRlbXB0ZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuXG4uY3VycmVudC1zbGlkZSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlKTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgZm9udC13ZWlnaHQ6IDkwMDtcbiAgbGV0dGVyLXNwYWNpbmc6IDA7XG59XG5cbkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgb3ZlcmZsb3cteDogYXV0bztcbiAgICBvdmVyZmxvdy15OiBoaWRkZW47XG4gICAgd2lkdGg6IDkwJTtcbiAgICBoZWlnaHQ6IDIuNXJlbTtcbiAgICBwYWRkaW5nOiAxcmVtIDAgMDtcbiAgICBtYXJnaW46IGF1dG87XG4gICAgbGVmdDogMDtcbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlOiBub25lO1xuICAgICAgcGFkZGluZzogMDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICBoZWlnaHQ6IDEuNXJlbTtcbiAgICAgIG1hcmdpbi10b3A6IDA7XG4gICAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgICAgbWFyZ2luLXJpZ2h0OiAyLjI1cmVtO1xuICAgICAgICB6LWluZGV4OiAxO1xuXG4gICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zaW5nbGVDb250ZW50IHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAgLnNob3dGZWVkQmFjay1wcm9ncmVzc0JhcjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zZWN0aW9uIHtcbiAgICAgICAgdWwge1xuICAgICAgICAgIHRvcDogLTEuNzVyZW07XG4gICAgICAgICAgcG9zaXRpb246IGluaGVyaXQ7XG4gICAgICAgICAgbWFyZ2luOiAwLjVyZW0gMi4yNXJlbTtcbiAgICAgICAgICBwYWRkaW5nLWxlZnQ6IDEuMjVyZW07XG4gICAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuODEyNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgICAgbGVmdDogMC42MjVyZW07XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuNTI1cmVtO1xuICAgICAgICAgICAgbGVmdDogMC41cmVtO1xuICAgICAgICAgICAgcmlnaHQ6IGF1dG87XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYud3Jvbmcge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLnBhcnRpYWwge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgLnNlY3Rpb24gbGFiZWwge1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIG1hcmdpbi1ib3R0b206IDA7XG4gICAgICB9XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgaGVpZ2h0OiAwLjA2MjVyZW07XG4gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgbGVmdDogMDtcbiAgICAgICAgdG9wOiA1MCU7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKDAsIC01MCUpO1xuICAgICAgICByaWdodDogMDtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMDQsIDIwNCwgMjA0LCAwLjUpO1xuICAgICAgICB6LWluZGV4OiAwO1xuICAgICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQgdWwgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIH4gdWwge1xuICAgIHdpZHRoOiAwO1xuICAgIHRyYW5zZm9ybTogc2NhbGVYKDApO1xuICAgIG1hcmdpbjogMDtcbiAgfVxuICAubGFuc2NhcGUtbW9kZS1yaWdodCB1bCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICB3aWR0aDogY2FsYygxMDAlIC0gNHJlbSk7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogbGVmdDtcbiAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4ycyBlYXNlLW91dDtcbiAgICB0cmFuc2Zvcm06IHNjYWxlWCgxKTtcbiAgICBtYXJnaW46IC0xLjI1cmVtIDNyZW0gMCA0cmVtO1xuICB9XG4gIC5sYW5kc2NhcGUtY2VudGVyIHtcbiAgICBtYXJnaW4tdG9wOiAycmVtO1xuICB9XG5cbiAgLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gICAgZGlzcGxheTogbm9uZTtcbiAgfVxuXG4gIC5sYW5kc2NhcGUtbW9kZSB7XG4gICAgZ3JpZC10ZW1wbGF0ZS1hcmVhczpcbiAgICAgIFwicmlnaHQgcmlnaHQgcmlnaHRcIlxuICAgICAgXCJjZW50ZXIgY2VudGVyIGNlbnRlclwiXG4gICAgICBcImxlZnQgbGVmdCBsZWZ0XCI7XG4gIH1cbn1cblxuLnF1bWwtdGltZXIge1xuICBwYWRkaW5nOiAwLjVyZW07XG59XG5cbi5xdW1sLWhlYWRlci10ZXh0IHtcbiAgbWFyZ2luOiAwLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gIG92ZXJmbG93OiBoaWRkZW47XG4gIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5xdW1sLWFycm93LWJ1dHRvbiB7XG4gIGJvcmRlci1yYWRpdXM6IDI4JTtcbiAgZm9udC1zaXplOiAwJTtcbiAgb3V0bGluZTogbm9uZTtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gIHBhZGRpbmc6IDAuNXJlbTtcbn1cblxuLmluZm8tcG9wdXAge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMTglO1xuICByaWdodDogMTAlO1xuICBmb250LXNpemU6IDAuODc1cmVtO1xuICAvLyBmb250LWZhbWlseTogbm90by1zYW5zOyAvL05PU09OQVJcbiAgYm94LXNoYWRvdzogMCAwLjEyNXJlbSAwLjg3NXJlbSAwIHJnYmEoMCwgMCwgMCwgMC4xKTtcbiAgcGFkZGluZzogMC43NXJlbTtcbn1cblxuLnF1bWwtbWVudSB7XG4gIHdpZHRoOiAxLjVyZW07XG4gIGhlaWdodDogMS41cmVtO1xufVxuXG4ucXVtbC1jYXJkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0td2hpdGUpO1xuICBwYWRkaW5nOiAxLjI1cmVtO1xuICBib3gtc2hhZG93OiAwIDAuMjVyZW0gMC41cmVtIDAgcmdiYSgwLCAwLCAwLCAwLjIpO1xuICB3aWR0aDogMjUlO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IDM3JTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICB0b3A6IDI1JTtcbiAgei1pbmRleDogMjtcbn1cblxuLnF1bWwtY2FyZC10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMS4yNXJlbTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4ucXVtbC1jYXJkLWJvZHkgLndyb25nIHtcbiAgY29sb3I6IHJlZDtcbn1cblxuLnF1bWwtY2FyZC1ib2R5IC5yaWdodCB7XG4gIGNvbG9yOiBncmVlbjtcbn1cblxuLnF1bWwtY2FyZC1idXR0b24tc2VjdGlvbiAuYnV0dG9uLWNvbnRhaW5lciBidXR0b24ge1xuICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgYm9yZGVyLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgb3V0bGluZTogbm9uZTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgcGFkZGluZzogMC4yNXJlbSAxLjVyZW07XG59XG5cbi5xdW1sLWNhcmQtYnV0dG9uLXNlY3Rpb24gLmJ1dHRvbi1jb250YWluZXIge1xuICB3aWR0aDogNDAlO1xuICBkaXNwbGF5OiBpbmxpbmU7XG4gIHBhZGRpbmctcmlnaHQ6IDAuNzVyZW07XG59XG5cbjo6bmctZGVlcCB7XG4gIC5jYXJvdXNlbC5zbGlkZSB7XG4gICAgYS5sZWZ0LmNhcm91c2VsLWNvbnRyb2wuY2Fyb3VzZWwtY29udHJvbC1wcmV2LFxuICAgIC5jYXJvdXNlbC1jb250cm9sLmNhcm91c2VsLWNvbnRyb2wtbmV4dCB7XG4gICAgICBkaXNwbGF5OiBub25lO1xuICAgIH1cbiAgfVxuXG4gIC5jYXJvdXNlbC1pdGVtIHtcbiAgICBwZXJzcGVjdGl2ZTogdW5zZXQ7XG4gIH1cbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgbWFyZ2luLXRvcDogLTIuNXJlbTtcbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCAud3JhcHBlciB7XG4gIGRpc3BsYXk6IGdyaWQ7XG4gIGdyaWQtdGVtcGxhdGUtY29sdW1uczogMWZyIDE1ZnI7XG59XG5cbi5wb3RyYWl0LWhlYWRlci10b3AgLnF1bWwtbWVudSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLWhlZGVyLXRleHQtY29sb3IpO1xuICBmb250LXNpemU6IDEuNXJlbTtcbiAgcGFkZGluZy1sZWZ0OiAxLjI1cmVtO1xuICBtYXJnaW4tdG9wOiAwLjI1cmVtO1xufVxuXG4ucG90cmFpdC1oZWFkZXItdG9wIC5xdW1sLWhlYWRlci10ZXh0IHtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtaGVkZXItdGV4dC1jb2xvcik7XG59XG5cbi5yb3cge1xuICBtYXJnaW4tcmlnaHQ6IDBweDtcbiAgbWFyZ2luLWxlZnQ6IDBweDtcbn1cblxuLnBvcnRyYWl0LWhlYWRlciB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbn1cblxuLmltYWdlLXZpZXdlciB7XG4gICZfX292ZXJsYXksXG4gICZfX2NvbnRhaW5lcixcbiAgJl9fY2xvc2UsXG4gICZfX3pvb20ge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgfVxuXG4gICZfX292ZXJsYXkge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHotaW5kZXg6IDExMTExO1xuICB9XG5cbiAgJl9fY29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHRvcDogNTAlO1xuICAgIGxlZnQ6IDUwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgtNTAlLCAtNTAlKTtcbiAgICB6LWluZGV4OiAxMTExMTtcbiAgICB3aWR0aDogODAlO1xuICAgIGhlaWdodDogODAlO1xuICB9XG5cbiAgJl9faW1nIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gIH1cblxuICAmX19jbG9zZSB7XG4gICAgdG9wOiAxcmVtO1xuICAgIHJpZ2h0OiAxcmVtO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgei1pbmRleDogOTk5OTk5O1xuICAgIGJhY2tncm91bmQ6IHJnYmEoMCwgMCwgMCwgMC41KTtcbiAgICBib3JkZXItcmFkaXVzOiAxMDAlO1xuICAgIHdpZHRoOiAzcmVtO1xuICAgIGhlaWdodDogM3JlbTtcbiAgICBwb3NpdGlvbjogaW5oZXJpdDtcblxuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyNzE1XCI7XG4gICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgZm9udC1zaXplOiAycmVtO1xuICAgIH1cblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAxKTtcbiAgICB9XG4gIH1cblxuICAmX196b29tIHtcbiAgICBib3R0b206IDFyZW07XG4gICAgcmlnaHQ6IDFyZW07XG4gICAgd2lkdGg6IDIuNXJlbTtcbiAgICBoZWlnaHQ6IGF1dG87XG4gICAgYm9yZGVyLXJhZGl1czogMC41cmVtO1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDk5OTk5O1xuICAgIHBvc2l0aW9uOiBpbmhlcml0O1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtem9vbS1idG4tdHh0KTtcbiAgfVxuXG4gICZfX3pvb21pbixcbiAgJl9fem9vbW91dCB7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGhlaWdodDogMi41cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB3aWR0aDogMi41cmVtO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC16b29tLWJ0bi1ob3Zlcik7XG4gICAgfVxuXG4gICAgJjo6YWZ0ZXIge1xuICAgICAgZm9udC1zaXplOiAxLjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICB0b3A6IDUwJTtcbiAgICAgIGxlZnQ6IDUwJTtcbiAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC01MCUsIC01MCUpO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21pbiB7XG4gICAgYm9yZGVyLWJvdHRvbTogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG5cbiAgICAmOjphZnRlciB7XG4gICAgICBjb250ZW50OiBcIlxcMDAyQlwiO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21vdXQge1xuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyMjEyXCI7XG4gICAgfVxuICB9XG59XG5cbi8qIGVkaXRvciBjc3MgKi9cbjo6bmctZGVlcCB7XG4gIHF1bWwtYW5zIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgc3ZnIGNpcmNsZSB7XG4gICAgICBmaWxsOiB2YXIoLS1xdW1sLXpvb20tYnRuLXR4dCk7XG4gICAgfVxuICB9XG5cbiAgLm1hZ25pZnktaWNvbiB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMDtcbiAgICB3aWR0aDogMS41cmVtO1xuICAgIGhlaWdodDogMS41cmVtO1xuICAgIGJvcmRlci10b3AtbGVmdC1yYWRpdXM6IDAuNXJlbTtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0KTtcbiAgfVxuXG4gIC5tYWduaWZ5LWljb246OmFmdGVyIHtcbiAgICBjb250ZW50OiBcIlwiO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBib3R0b206IDAuMTI1cmVtO1xuICAgIHJpZ2h0OiAwLjEyNXJlbTtcbiAgICB6LWluZGV4OiAxO1xuICAgIHdpZHRoOiAxcmVtO1xuICAgIGhlaWdodDogMXJlbTtcbiAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoXCJkYXRhOmltYWdlL3N2Zyt4bWwsJTNDJTNGeG1sIHZlcnNpb249JzEuMCclM0YlM0UlM0NzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluaycgeG1sbnM6c3ZnanM9J2h0dHA6Ly9zdmdqcy5jb20vc3ZnanMnIHZlcnNpb249JzEuMScgd2lkdGg9JzUxMicgaGVpZ2h0PSc1MTInIHg9JzAnIHk9JzAnIHZpZXdCb3g9JzAgMCAzNy4xNjYgMzcuMTY2JyBzdHlsZT0nZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyJyB4bWw6c3BhY2U9J3ByZXNlcnZlJyBjbGFzcz0nJyUzRSUzQ2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0NwYXRoIGQ9J00zNS44MjksMzIuMDQ1bC02LjgzMy02LjgzM2MtMC41MTMtMC41MTMtMS4xNjctMC43ODgtMS44MzYtMC44NTNjMi4wNi0yLjU2NywzLjI5OC01LjgxOSwzLjI5OC05LjM1OSBjMC04LjI3MS02LjcyOS0xNS0xNS0xNWMtOC4yNzEsMC0xNSw2LjcyOS0xNSwxNWMwLDguMjcxLDYuNzI5LDE1LDE1LDE1YzMuMTIxLDAsNi4wMjEtMC45Niw4LjQyNC0yLjU5OCBjMC4wMTgsMC43NDQsMC4zMDUsMS40ODIsMC44NzIsMi4wNTJsNi44MzMsNi44MzNjMC41ODUsMC41ODYsMS4zNTQsMC44NzksMi4xMjEsMC44NzlzMS41MzYtMC4yOTMsMi4xMjEtMC44NzkgQzM3LjAwMSwzNS4xMTYsMzcuMDAxLDMzLjIxNywzNS44MjksMzIuMDQ1eiBNMTUuNDU4LDI1Yy01LjUxNCwwLTEwLTQuNDg0LTEwLTEwYzAtNS41MTQsNC40ODYtMTAsMTAtMTBjNS41MTQsMCwxMCw0LjQ4NiwxMCwxMCBDMjUuNDU4LDIwLjUxNiwyMC45NzIsMjUsMTUuNDU4LDI1eiBNMjIuMzM0LDE1YzAsMS4xMDQtMC44OTYsMi0yLDJoLTIuNzV2Mi43NWMwLDEuMTA0LTAuODk2LDItMiwycy0yLTAuODk2LTItMlYxN2gtMi43NSBjLTEuMTA0LDAtMi0wLjg5Ni0yLTJzMC44OTYtMiwyLTJoMi43NXYtMi43NWMwLTEuMTA0LDAuODk2LTIsMi0yczIsMC44OTYsMiwyVjEzaDIuNzVDMjEuNDM4LDEzLDIyLjMzNCwxMy44OTUsMjIuMzM0LDE1eicgZmlsbD0nJTIzZmZmZmZmJyBkYXRhLW9yaWdpbmFsPSclMjMwMDAwMDAnIHN0eWxlPScnIGNsYXNzPScnLyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDL2clM0UlM0Mvc3ZnJTNFJTBBXCIpO1xuICAgIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gICAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7XG4gIH1cblxuICAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2Uge1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAvLyB3aWR0aDogNy41cmVtO1xuICAgIC8vIGhlaWdodDogNy41cmVtO1xuICB9XG5cbiAgLnNvbHV0aW9ucyAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2UsXG4gIC5pbWFnZS12aWV3ZXJfX292ZXJsYXkgLmltYWdlLXZpZXdlcl9fY29udGFpbmVyIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG5cbiAgICAucG9ydHJhaXQge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IDEwMCU7XG4gICAgfVxuXG4gICAgLm5ldXRyYWwge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICB9XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgfVxuICAgIH1cblxuICAgIC5sYW5kc2NhcGUge1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW1jcSxcbiAgLnF1bWwtc2EsXG4gIHF1bWwtc2EsXG4gIHF1bWwtbWNxLXNvbHV0aW9ucyB7XG4gICAgLm1jcS10aXRsZSB7XG4gICAgICBjb2xvcjogdmFyKC0tcXVtbC1tY3EtdGl0bGUtdHh0KTtcblxuICAgICAgcCB7XG4gICAgICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gICAgICB9XG4gICAgICBAbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gICAgICAgIG1hcmdpbi10b3A6IDFyZW07XG4gICAgICB9XG4gICAgfVxuXG4gICAgLnF1bWwtbWNxLS1xdWVzdGlvbiB7XG4gICAgICBwIHtcbiAgICAgICAgLy8gbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAucXVtbC1tY3EtLW9wdGlvbiB7XG4gICAgICAucXVtbC1tY3Etb3B0aW9uLWNhcmQgcDpmaXJzdC1jaGlsZCxcbiAgICAgIC5xdW1sLW1jcS1vcHRpb24tY2FyZCBwOmxhc3QtY2hpbGQge1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAwO1xuICAgICAgfVxuICAgIH1cbiAgfVxuICBxdW1sLW1jcS1zb2x1dGlvbnMge1xuICAgIGZpZ3VyZS5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1LFxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNTAsXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS03NSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLW9yaWdpbmFsIHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgLnNvbHV0aW9uLW9wdGlvbnMgcCB7XG4gICAgICBtYXJnaW4tYm90dG9tOiAxcmVtO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW9wdGlvbiAub3B0aW9uIHAge1xuICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gIH1cbn1cblxuLmVuZFBhZ2UtY29udGFpbmVyLWhlaWdodCB7XG4gIGhlaWdodDogMTAwJTtcbn1cbi5zY29yZWJvYXJkLXNlY3Rpb25zIHtcbiAgZGlzcGxheTogY29udGVudHM7XG4gIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgei1pbmRleDogMjtcbiAgfVxufVxuLmhvdmVyLWVmZmVjdCB7XG4gICY6aG92ZXIsXG4gICY6Zm9jdXMsXG4gICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAmOjphZnRlciB7XG4gICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgfVxuICB9XG59XG4gIl0sInNvdXJjZVJvb3QiOiIifQ== */", ":root {\n --quml-mcq-title-txt: #131415;\n}\n\n .startpage__instr-desc .mcq-title, .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc .fs-8, .startpage__instr-desc .fs-9, .startpage__instr-desc .fs-10, .startpage__instr-desc .fs-11, .startpage__instr-desc .fs-12, .startpage__instr-desc .fs-13, .startpage__instr-desc .fs-14, .startpage__instr-desc .fs-15, .startpage__instr-desc .fs-16, .startpage__instr-desc .fs-17, .startpage__instr-desc .fs-18, .startpage__instr-desc .fs-19, .startpage__instr-desc .fs-20, .startpage__instr-desc .fs-21, .startpage__instr-desc .fs-22, .startpage__instr-desc .fs-23, .startpage__instr-desc .fs-24, .startpage__instr-desc .fs-25, .startpage__instr-desc .fs-26, .startpage__instr-desc .fs-27, .startpage__instr-desc .fs-28, .startpage__instr-desc .fs-29, .startpage__instr-desc .fs-30, .startpage__instr-desc .fs-36, .quml-mcq .fs-8, .quml-mcq .fs-9, .quml-mcq .fs-10, .quml-mcq .fs-11, .quml-mcq .fs-12, .quml-mcq .fs-13, .quml-mcq .fs-14, .quml-mcq .fs-15, .quml-mcq .fs-16, .quml-mcq .fs-17, .quml-mcq .fs-18, .quml-mcq .fs-19, .quml-mcq .fs-20, .quml-mcq .fs-21, .quml-mcq .fs-22, .quml-mcq .fs-23, .quml-mcq .fs-24, .quml-mcq .fs-25, .quml-mcq .fs-26, .quml-mcq .fs-27, .quml-mcq .fs-28, .quml-mcq .fs-29, .quml-mcq .fs-30, .quml-mcq .fs-36, .quml-sa .fs-8, .quml-sa .fs-9, .quml-sa .fs-10, .quml-sa .fs-11, .quml-sa .fs-12, .quml-sa .fs-13, .quml-sa .fs-14, .quml-sa .fs-15, .quml-sa .fs-16, .quml-sa .fs-17, .quml-sa .fs-18, .quml-sa .fs-19, .quml-sa .fs-20, .quml-sa .fs-21, .quml-sa .fs-22, .quml-sa .fs-23, .quml-sa .fs-24, .quml-sa .fs-25, .quml-sa .fs-26, .quml-sa .fs-27, .quml-sa .fs-28, .quml-sa .fs-29, .quml-sa .fs-30, .quml-sa .fs-36, quml-sa .fs-8, quml-sa .fs-9, quml-sa .fs-10, quml-sa .fs-11, quml-sa .fs-12, quml-sa .fs-13, quml-sa .fs-14, quml-sa .fs-15, quml-sa .fs-16, quml-sa .fs-17, quml-sa .fs-18, quml-sa .fs-19, quml-sa .fs-20, quml-sa .fs-21, quml-sa .fs-22, quml-sa .fs-23, quml-sa .fs-24, quml-sa .fs-25, quml-sa .fs-26, quml-sa .fs-27, quml-sa .fs-28, quml-sa .fs-29, quml-sa .fs-30, quml-sa .fs-36, quml-mcq-solutions .fs-8, quml-mcq-solutions .fs-9, quml-mcq-solutions .fs-10, quml-mcq-solutions .fs-11, quml-mcq-solutions .fs-12, quml-mcq-solutions .fs-13, quml-mcq-solutions .fs-14, quml-mcq-solutions .fs-15, quml-mcq-solutions .fs-16, quml-mcq-solutions .fs-17, quml-mcq-solutions .fs-18, quml-mcq-solutions .fs-19, quml-mcq-solutions .fs-20, quml-mcq-solutions .fs-21, quml-mcq-solutions .fs-22, quml-mcq-solutions .fs-23, quml-mcq-solutions .fs-24, quml-mcq-solutions .fs-25, quml-mcq-solutions .fs-26, quml-mcq-solutions .fs-27, quml-mcq-solutions .fs-28, quml-mcq-solutions .fs-29, quml-mcq-solutions .fs-30, quml-mcq-solutions .fs-36 {\n line-height: normal;\n}\n .startpage__instr-desc .fs-8, .quml-mcq .fs-8, .quml-sa .fs-8, quml-sa .fs-8, quml-mcq-solutions .fs-8 {\n font-size: 0.5rem;\n}\n .startpage__instr-desc .fs-9, .quml-mcq .fs-9, .quml-sa .fs-9, quml-sa .fs-9, quml-mcq-solutions .fs-9 {\n font-size: 0.563rem;\n}\n .startpage__instr-desc .fs-10, .quml-mcq .fs-10, .quml-sa .fs-10, quml-sa .fs-10, quml-mcq-solutions .fs-10 {\n font-size: 0.625rem;\n}\n .startpage__instr-desc .fs-11, .quml-mcq .fs-11, .quml-sa .fs-11, quml-sa .fs-11, quml-mcq-solutions .fs-11 {\n font-size: 0.688rem;\n}\n .startpage__instr-desc .fs-12, .quml-mcq .fs-12, .quml-sa .fs-12, quml-sa .fs-12, quml-mcq-solutions .fs-12 {\n font-size: 0.75rem;\n}\n .startpage__instr-desc .fs-13, .quml-mcq .fs-13, .quml-sa .fs-13, quml-sa .fs-13, quml-mcq-solutions .fs-13 {\n font-size: 0.813rem;\n}\n .startpage__instr-desc .fs-14, .quml-mcq .fs-14, .quml-sa .fs-14, quml-sa .fs-14, quml-mcq-solutions .fs-14 {\n font-size: 0.875rem;\n}\n .startpage__instr-desc .fs-15, .quml-mcq .fs-15, .quml-sa .fs-15, quml-sa .fs-15, quml-mcq-solutions .fs-15 {\n font-size: 0.938rem;\n}\n .startpage__instr-desc .fs-16, .quml-mcq .fs-16, .quml-sa .fs-16, quml-sa .fs-16, quml-mcq-solutions .fs-16 {\n font-size: 1rem;\n}\n .startpage__instr-desc .fs-17, .quml-mcq .fs-17, .quml-sa .fs-17, quml-sa .fs-17, quml-mcq-solutions .fs-17 {\n font-size: 1.063rem;\n}\n .startpage__instr-desc .fs-18, .quml-mcq .fs-18, .quml-sa .fs-18, quml-sa .fs-18, quml-mcq-solutions .fs-18 {\n font-size: 1.125rem;\n}\n .startpage__instr-desc .fs-19, .quml-mcq .fs-19, .quml-sa .fs-19, quml-sa .fs-19, quml-mcq-solutions .fs-19 {\n font-size: 1.188rem;\n}\n .startpage__instr-desc .fs-20, .quml-mcq .fs-20, .quml-sa .fs-20, quml-sa .fs-20, quml-mcq-solutions .fs-20 {\n font-size: 1.25rem;\n}\n .startpage__instr-desc .fs-21, .quml-mcq .fs-21, .quml-sa .fs-21, quml-sa .fs-21, quml-mcq-solutions .fs-21 {\n font-size: 1.313rem;\n}\n .startpage__instr-desc .fs-22, .quml-mcq .fs-22, .quml-sa .fs-22, quml-sa .fs-22, quml-mcq-solutions .fs-22 {\n font-size: 1.375rem;\n}\n .startpage__instr-desc .fs-23, .quml-mcq .fs-23, .quml-sa .fs-23, quml-sa .fs-23, quml-mcq-solutions .fs-23 {\n font-size: 1.438rem;\n}\n .startpage__instr-desc .fs-24, .quml-mcq .fs-24, .quml-sa .fs-24, quml-sa .fs-24, quml-mcq-solutions .fs-24 {\n font-size: 1.5rem;\n}\n .startpage__instr-desc .fs-25, .quml-mcq .fs-25, .quml-sa .fs-25, quml-sa .fs-25, quml-mcq-solutions .fs-25 {\n font-size: 1.563rem;\n}\n .startpage__instr-desc .fs-26, .quml-mcq .fs-26, .quml-sa .fs-26, quml-sa .fs-26, quml-mcq-solutions .fs-26 {\n font-size: 1.625rem;\n}\n .startpage__instr-desc .fs-27, .quml-mcq .fs-27, .quml-sa .fs-27, quml-sa .fs-27, quml-mcq-solutions .fs-27 {\n font-size: 1.688rem;\n}\n .startpage__instr-desc .fs-28, .quml-mcq .fs-28, .quml-sa .fs-28, quml-sa .fs-28, quml-mcq-solutions .fs-28 {\n font-size: 1.75rem;\n}\n .startpage__instr-desc .fs-29, .quml-mcq .fs-29, .quml-sa .fs-29, quml-sa .fs-29, quml-mcq-solutions .fs-29 {\n font-size: 1.813rem;\n}\n .startpage__instr-desc .fs-30, .quml-mcq .fs-30, .quml-sa .fs-30, quml-sa .fs-30, quml-mcq-solutions .fs-30 {\n font-size: 1.875rem;\n}\n .startpage__instr-desc .fs-36, .quml-mcq .fs-36, .quml-sa .fs-36, quml-sa .fs-36, quml-mcq-solutions .fs-36 {\n font-size: 2.25rem;\n}\n .startpage__instr-desc .text-left, .quml-mcq .text-left, .quml-sa .text-left, quml-sa .text-left, quml-mcq-solutions .text-left {\n text-align: left;\n}\n .startpage__instr-desc .text-center, .quml-mcq .text-center, .quml-sa .text-center, quml-sa .text-center, quml-mcq-solutions .text-center {\n text-align: center;\n}\n .startpage__instr-desc .text-right, .quml-mcq .text-right, .quml-sa .text-right, quml-sa .text-right, quml-mcq-solutions .text-right {\n text-align: right;\n}\n .startpage__instr-desc .image-style-align-right, .quml-mcq .image-style-align-right, .quml-sa .image-style-align-right, quml-sa .image-style-align-right, quml-mcq-solutions .image-style-align-right {\n float: right;\n text-align: right;\n margin-left: 0.5rem;\n}\n .startpage__instr-desc .image-style-align-left, .quml-mcq .image-style-align-left, .quml-sa .image-style-align-left, quml-sa .image-style-align-left, quml-mcq-solutions .image-style-align-left {\n float: left;\n text-align: left;\n margin-right: 0.5rem;\n}\n .startpage__instr-desc .image, .startpage__instr-desc figure.image, .quml-mcq .image, .quml-mcq figure.image, .quml-sa .image, .quml-sa figure.image, quml-sa .image, quml-sa figure.image, quml-mcq-solutions .image, quml-mcq-solutions figure.image {\n display: table;\n clear: both;\n text-align: center;\n margin: 0.5rem auto;\n position: relative;\n}\n .startpage__instr-desc figure.image.resize-original, .startpage__instr-desc figure.image, .quml-mcq figure.image.resize-original, .quml-mcq figure.image, .quml-sa figure.image.resize-original, .quml-sa figure.image, quml-sa figure.image.resize-original, quml-sa figure.image, quml-mcq-solutions figure.image.resize-original, quml-mcq-solutions figure.image {\n width: auto;\n height: auto;\n overflow: visible;\n}\n .startpage__instr-desc figure.image img, .quml-mcq figure.image img, .quml-sa figure.image img, quml-sa figure.image img, quml-mcq-solutions figure.image img {\n width: auto;\n}\n .startpage__instr-desc figure.image.resize-original img, .quml-mcq figure.image.resize-original img, .quml-sa figure.image.resize-original img, quml-sa figure.image.resize-original img, quml-mcq-solutions figure.image.resize-original img {\n width: auto;\n height: auto;\n}\n .startpage__instr-desc .image img, .quml-mcq .image img, .quml-sa .image img, quml-sa .image img, quml-mcq-solutions .image img {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n min-width: 50px;\n}\n .startpage__instr-desc figure.image.resize-25, .quml-mcq figure.image.resize-25, .quml-sa figure.image.resize-25, quml-sa figure.image.resize-25, quml-mcq-solutions figure.image.resize-25 {\n width: 25%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-50, .quml-mcq figure.image.resize-50, .quml-sa figure.image.resize-50, quml-sa figure.image.resize-50, quml-mcq-solutions figure.image.resize-50 {\n width: 50%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-75, .quml-mcq figure.image.resize-75, .quml-sa figure.image.resize-75, quml-sa figure.image.resize-75, quml-mcq-solutions figure.image.resize-75 {\n width: 75%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-100, .quml-mcq figure.image.resize-100, .quml-sa figure.image.resize-100, quml-sa figure.image.resize-100, quml-mcq-solutions figure.image.resize-100 {\n width: 100%;\n height: auto;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n border-right: 0.0625rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table, .startpage__instr-desc figure.table table tr td, .startpage__instr-desc figure.table table tr th, .quml-mcq figure.table table, .quml-mcq figure.table table tr td, .quml-mcq figure.table table tr th, .quml-sa figure.table table, .quml-sa figure.table table tr td, .quml-sa figure.table table tr th, quml-sa figure.table table, quml-sa figure.table table tr td, quml-sa figure.table table tr th, quml-mcq-solutions figure.table table, quml-mcq-solutions figure.table table tr td, quml-mcq-solutions figure.table table tr th {\n border: 0.0625rem solid var(--black);\n border-collapse: collapse;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n width: 100%;\n background: var(--white);\n border: 0.0625rem solid var(--gray-100);\n box-shadow: none;\n border-radius: 0.25rem 0.25rem 0 0;\n text-align: left;\n color: var(--gray);\n border-collapse: separate;\n border-spacing: 0;\n table-layout: fixed;\n}\n .startpage__instr-desc figure.table table thead tr th, .quml-mcq figure.table table thead tr th, .quml-sa figure.table table thead tr th, quml-sa figure.table table thead tr th, quml-mcq-solutions figure.table table thead tr th {\n font-size: 0.875rem;\n padding: 1rem;\n background-color: var(--primary-100);\n position: relative;\n height: 2.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n font-weight: bold;\n color: var(--primary-color);\n text-transform: uppercase;\n}\n .startpage__instr-desc figure.table table thead tr th:first-child, .quml-mcq figure.table table thead tr th:first-child, .quml-sa figure.table table thead tr th:first-child, quml-sa figure.table table thead tr th:first-child, quml-mcq-solutions figure.table table thead tr th:first-child {\n border-top-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table thead tr th:last-child, .quml-mcq figure.table table thead tr th:last-child, .quml-sa figure.table table thead tr th:last-child, quml-sa figure.table table thead tr th:last-child, quml-mcq-solutions figure.table table thead tr th:last-child {\n border-top-right-radius: 0.25rem;\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr:nth-child(2n), .quml-mcq figure.table table tbody tr:nth-child(2n), .quml-sa figure.table table tbody tr:nth-child(2n), quml-sa figure.table table tbody tr:nth-child(2n), quml-mcq-solutions figure.table table tbody tr:nth-child(2n) {\n background-color: var(--gray-0);\n}\n .startpage__instr-desc figure.table table tbody tr:hover, .quml-mcq figure.table table tbody tr:hover, .quml-sa figure.table table tbody tr:hover, quml-sa figure.table table tbody tr:hover, quml-mcq-solutions figure.table table tbody tr:hover {\n background: var(--primary-0);\n color: rgba(var(--rc-rgba-gray), 0.95);\n cursor: pointer;\n}\n .startpage__instr-desc figure.table table tbody tr td, .quml-mcq figure.table table tbody tr td, .quml-sa figure.table table tbody tr td, quml-sa figure.table table tbody tr td, quml-mcq-solutions figure.table table tbody tr td {\n font-size: 0.875rem;\n padding: 1rem;\n color: var(--gray);\n height: 3.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n word-break: break-word;\n line-height: normal;\n}\n .startpage__instr-desc figure.table table tbody tr td:last-child, .quml-mcq figure.table table tbody tr td:last-child, .quml-sa figure.table table tbody tr td:last-child, quml-sa figure.table table tbody tr td:last-child, quml-mcq-solutions figure.table table tbody tr td:last-child {\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr td p, .quml-mcq figure.table table tbody tr td p, .quml-sa figure.table table tbody tr td p, quml-sa figure.table table tbody tr td p, quml-mcq-solutions figure.table table tbody tr td p {\n margin-bottom: 0px !important;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td, .quml-mcq figure.table table tbody tr:last-child td, .quml-sa figure.table table tbody tr:last-child td, quml-sa figure.table table tbody tr:last-child td, quml-mcq-solutions figure.table table tbody tr:last-child td {\n border-bottom: none;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:first-child, .quml-mcq figure.table table tbody tr:last-child td:first-child, .quml-sa figure.table table tbody tr:last-child td:first-child, quml-sa figure.table table tbody tr:last-child td:first-child, quml-mcq-solutions figure.table table tbody tr:last-child td:first-child {\n border-bottom-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:last-child, .quml-mcq figure.table table tbody tr:last-child td:last-child, .quml-sa figure.table table tbody tr:last-child td:last-child, quml-sa figure.table table tbody tr:last-child td:last-child, quml-mcq-solutions figure.table table tbody tr:last-child td:last-child {\n border-bottom-right-radius: 0.25rem;\n}\n .startpage__instr-desc ul, .startpage__instr-desc ol, .quml-mcq ul, .quml-mcq ol, .quml-sa ul, .quml-sa ol, quml-sa ul, quml-sa ol, quml-mcq-solutions ul, quml-mcq-solutions ol {\n margin-top: 0.5rem;\n}\n .startpage__instr-desc ul li, .startpage__instr-desc ol li, .quml-mcq ul li, .quml-mcq ol li, .quml-sa ul li, .quml-sa ol li, quml-sa ul li, quml-sa ol li, quml-mcq-solutions ul li, quml-mcq-solutions ol li {\n margin: 0.5rem;\n font-weight: normal;\n line-height: normal;\n}\n .startpage__instr-desc ul, .quml-mcq ul, .quml-sa ul, quml-sa ul, quml-mcq-solutions ul {\n list-style-type: disc;\n}\n .startpage__instr-desc h1, .startpage__instr-desc h2, .startpage__instr-desc h3, .startpage__instr-desc h4, .startpage__instr-desc h5, .startpage__instr-desc h6, .quml-mcq h1, .quml-mcq h2, .quml-mcq h3, .quml-mcq h4, .quml-mcq h5, .quml-mcq h6, .quml-sa h1, .quml-sa h2, .quml-sa h3, .quml-sa h4, .quml-sa h5, .quml-sa h6, quml-sa h1, quml-sa h2, quml-sa h3, quml-sa h4, quml-sa h5, quml-sa h6, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6 {\n color: var(--primary-color);\n line-height: normal;\n margin-bottom: 1rem;\n}\n .startpage__instr-desc p, .startpage__instr-desc span, .quml-mcq p, .quml-mcq span, .quml-sa p, .quml-sa span, quml-sa p, quml-sa span, quml-mcq-solutions p, quml-mcq-solutions span {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc p strong, .startpage__instr-desc p span strong, .quml-mcq p strong, .quml-mcq p span strong, .quml-sa p strong, .quml-sa p span strong, quml-sa p strong, quml-sa p span strong, quml-mcq-solutions p strong, quml-mcq-solutions p span strong {\n font-weight: bold;\n}\n .startpage__instr-desc p span u, .startpage__instr-desc p u, .quml-mcq p span u, .quml-mcq p u, .quml-sa p span u, .quml-sa p u, quml-sa p span u, quml-sa p u, quml-mcq-solutions p span u, quml-mcq-solutions p u {\n text-decoration: underline;\n}\n .startpage__instr-desc p span i, .startpage__instr-desc p i, .quml-mcq p span i, .quml-mcq p i, .quml-sa p span i, .quml-sa p i, quml-sa p span i, quml-sa p i, quml-mcq-solutions p span i, quml-mcq-solutions p i {\n font-style: italic;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3N0YXJ0cGFnZS9zYi1ja2VkaXRvci1zdHlsZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLDZCQUFBO0FBQ0Y7O0FBVUk7Ozs7O0VBQ0UsZ0NBQUE7QUFITjtBQU1JOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUF3QkUsbUJBQUE7QUE0Rk47QUF6Rkk7Ozs7O0VBQ0UsaUJBQUE7QUErRk47QUE1Rkk7Ozs7O0VBQ0UsbUJBQUE7QUFrR047QUEvRkk7Ozs7O0VBQ0UsbUJBQUE7QUFxR047QUFsR0k7Ozs7O0VBQ0UsbUJBQUE7QUF3R047QUFyR0k7Ozs7O0VBQ0Usa0JBQUE7QUEyR047QUF4R0k7Ozs7O0VBQ0UsbUJBQUE7QUE4R047QUEzR0k7Ozs7O0VBQ0UsbUJBQUE7QUFpSE47QUE5R0k7Ozs7O0VBQ0UsbUJBQUE7QUFvSE47QUFqSEk7Ozs7O0VBQ0UsZUFBQTtBQXVITjtBQXBISTs7Ozs7RUFDRSxtQkFBQTtBQTBITjtBQXZISTs7Ozs7RUFDRSxtQkFBQTtBQTZITjtBQTFISTs7Ozs7RUFDRSxtQkFBQTtBQWdJTjtBQTdISTs7Ozs7RUFDRSxrQkFBQTtBQW1JTjtBQWhJSTs7Ozs7RUFDRSxtQkFBQTtBQXNJTjtBQW5JSTs7Ozs7RUFDRSxtQkFBQTtBQXlJTjtBQXRJSTs7Ozs7RUFDRSxtQkFBQTtBQTRJTjtBQXpJSTs7Ozs7RUFDRSxpQkFBQTtBQStJTjtBQTVJSTs7Ozs7RUFDRSxtQkFBQTtBQWtKTjtBQS9JSTs7Ozs7RUFDRSxtQkFBQTtBQXFKTjtBQWxKSTs7Ozs7RUFDRSxtQkFBQTtBQXdKTjtBQXJKSTs7Ozs7RUFDRSxrQkFBQTtBQTJKTjtBQXhKSTs7Ozs7RUFDRSxtQkFBQTtBQThKTjtBQTNKSTs7Ozs7RUFDRSxtQkFBQTtBQWlLTjtBQTlKSTs7Ozs7RUFDRSxrQkFBQTtBQW9LTjtBQWpLSTs7Ozs7RUFDRSxnQkFBQTtBQXVLTjtBQXBLSTs7Ozs7RUFDRSxrQkFBQTtBQTBLTjtBQXZLSTs7Ozs7RUFDRSxpQkFBQTtBQTZLTjtBQTFLSTs7Ozs7RUFDRSxZQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQWdMTjtBQTdLSTs7Ozs7RUFDRSxXQUFBO0VBQ0EsZ0JBQUE7RUFDQSxvQkFBQTtBQW1MTjtBQWhMSTs7Ozs7Ozs7OztFQUVFLGNBQUE7RUFDQSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0FBMExOO0FBdkxJOzs7Ozs7Ozs7O0VBRUUsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQWlNTjtBQTlMSTs7Ozs7RUFDRSxXQUFBO0FBb01OO0FBak1JOzs7OztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBdU1OO0FBcE1JOzs7OztFQUNFLGNBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7QUEwTU47QUF2TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUE2TU47QUExTUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFnTk47QUE3TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFtTk47QUFoTkk7Ozs7O0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUFzTk47QUFuTkk7Ozs7O0VBQ0UsNkNBQUE7QUF5Tk47QUF0Tkk7Ozs7Ozs7Ozs7Ozs7OztFQUdFLG9DQUFBO0VBQ0EseUJBQUE7QUFvT047QUFqT0k7Ozs7O0VBQ0UsV0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUNBQUE7RUFDQSxnQkFBQTtFQUNBLGtDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtFQUNBLHlCQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQXVPTjtBQW5PVTs7Ozs7RUFVRSxtQkFBQTtFQUNBLGFBQUE7RUFDQSxvQ0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLFdBQUE7RUFDQSw4Q0FBQTtFQUNBLDZDQUFBO0VBQ0EsaUJBQUE7RUFDQSwyQkFBQTtFQUNBLHlCQUFBO0FBZ09aO0FBblBZOzs7OztFQUNFLCtCQUFBO0FBeVBkO0FBdFBZOzs7OztFQUNFLGdDQUFBO0VBQ0Esd0NBQUE7QUE0UGQ7QUF4T1U7Ozs7O0VBQ0UsK0JBQUE7QUE4T1o7QUEzT1U7Ozs7O0VBQ0UsNEJBQUE7RUFDQSxzQ0FBQTtFQUNBLGVBQUE7QUFpUFo7QUE5T1U7Ozs7O0VBQ0UsbUJBQUE7RUFDQSxhQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsV0FBQTtFQUNBLDhDQUFBO0VBQ0EsNkNBQUE7RUFDQSxzQkFBQTtFQUNBLG1CQUFBO0FBb1BaO0FBbFBZOzs7OztFQUNFLHdDQUFBO0FBd1BkO0FBclBZOzs7OztFQUNFLDZCQUFBO0FBMlBkO0FBdFBZOzs7OztFQUNFLG1CQUFBO0FBNFBkO0FBMVBjOzs7OztFQUNFLGtDQUFBO0FBZ1FoQjtBQTdQYzs7Ozs7RUFDRSxtQ0FBQTtBQW1RaEI7QUExUEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQW9RTjtBQWxRTTs7Ozs7Ozs7OztFQUNFLGNBQUE7RUFDQSxtQkFBQTtFQUNBLG1CQUFBO0FBNlFSO0FBelFJOzs7OztFQUNFLHFCQUFBO0FBK1FOO0FBNVFJOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFNRSwyQkFBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7QUFzU047QUFuU0k7Ozs7Ozs7Ozs7RUFFRSxnQ0FBQTtBQTZTTjtBQTFTSTs7Ozs7Ozs7OztFQUVFLGlCQUFBO0FBb1ROO0FBalRJOzs7Ozs7Ozs7O0VBRUUsMEJBQUE7QUEyVE47QUF4VEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQWtVTiIsInNvdXJjZXNDb250ZW50IjpbIjo6bmctZGVlcCA6cm9vdCB7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xufVxuXG5cbjo6bmctZGVlcCB7XG5cbiAgLnN0YXJ0cGFnZV9faW5zdHItZGVzYyxcbiAgLnF1bWwtbWNxLFxuICAucXVtbC1zYSxcbiAgcXVtbC1zYSxcbiAgcXVtbC1tY3Etc29sdXRpb25zIHtcbiAgICAubWNxLXRpdGxlIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIC5mcy04LFxuICAgIC5mcy05LFxuICAgIC5mcy0xMCxcbiAgICAuZnMtMTEsXG4gICAgLmZzLTEyLFxuICAgIC5mcy0xMyxcbiAgICAuZnMtMTQsXG4gICAgLmZzLTE1LFxuICAgIC5mcy0xNixcbiAgICAuZnMtMTcsXG4gICAgLmZzLTE4LFxuICAgIC5mcy0xOSxcbiAgICAuZnMtMjAsXG4gICAgLmZzLTIxLFxuICAgIC5mcy0yMixcbiAgICAuZnMtMjMsXG4gICAgLmZzLTI0LFxuICAgIC5mcy0yNSxcbiAgICAuZnMtMjYsXG4gICAgLmZzLTI3LFxuICAgIC5mcy0yOCxcbiAgICAuZnMtMjksXG4gICAgLmZzLTMwLFxuICAgIC5mcy0zNiB7XG4gICAgICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICAgIH1cblxuICAgIC5mcy04IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41cmVtO1xuICAgIH1cblxuICAgIC5mcy05IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41NjNyZW07XG4gICAgfVxuXG4gICAgLmZzLTEwIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42MjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTExIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42ODhyZW07XG4gICAgfVxuXG4gICAgLmZzLTEyIHtcbiAgICAgIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTMge1xuICAgICAgZm9udC1zaXplOiAwLjgxM3JlbTtcbiAgICB9XG5cbiAgICAuZnMtMTQge1xuICAgICAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTUge1xuICAgICAgZm9udC1zaXplOiAwLjkzOHJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTYge1xuICAgICAgZm9udC1zaXplOiAxcmVtO1xuICAgIH1cblxuICAgIC5mcy0xNyB7XG4gICAgICBmb250LXNpemU6IDEuMDYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0xOCB7XG4gICAgICBmb250LXNpemU6IDEuMTI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0xOSB7XG4gICAgICBmb250LXNpemU6IDEuMTg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yMCB7XG4gICAgICBmb250LXNpemU6IDEuMjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIxIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zMTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTIyIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIzIHtcbiAgICAgIGZvbnQtc2l6ZTogMS40MzhyZW07XG4gICAgfVxuXG4gICAgLmZzLTI0IHtcbiAgICAgIGZvbnQtc2l6ZTogMS41cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNSB7XG4gICAgICBmb250LXNpemU6IDEuNTYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0yNiB7XG4gICAgICBmb250LXNpemU6IDEuNjI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNyB7XG4gICAgICBmb250LXNpemU6IDEuNjg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yOCB7XG4gICAgICBmb250LXNpemU6IDEuNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTI5IHtcbiAgICAgIGZvbnQtc2l6ZTogMS44MTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTMwIHtcbiAgICAgIGZvbnQtc2l6ZTogMS44NzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTM2IHtcbiAgICAgIGZvbnQtc2l6ZTogMi4yNXJlbTtcbiAgICB9XG5cbiAgICAudGV4dC1sZWZ0IHtcbiAgICAgIHRleHQtYWxpZ246IGxlZnQ7XG4gICAgfVxuXG4gICAgLnRleHQtY2VudGVyIHtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB9XG5cbiAgICAudGV4dC1yaWdodCB7XG4gICAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICB9XG5cbiAgICAuaW1hZ2Utc3R5bGUtYWxpZ24tcmlnaHQge1xuICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgICBtYXJnaW4tbGVmdDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZS1zdHlsZS1hbGlnbi1sZWZ0IHtcbiAgICAgIGZsb2F0OiBsZWZ0O1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIG1hcmdpbi1yaWdodDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgZGlzcGxheTogdGFibGU7XG4gICAgICBjbGVhcjogYm90aDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIG1hcmdpbjogMC41cmVtIGF1dG87XG4gICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS1vcmlnaW5hbCxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgICBvdmVyZmxvdzogdmlzaWJsZTtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtb3JpZ2luYWwgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIC5pbWFnZSBpbWcge1xuICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIG1heC13aWR0aDogMTAwJTtcbiAgICAgIG1pbi13aWR0aDogNTBweDtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1IHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS01MCB7XG4gICAgICB3aWR0aDogNTAlO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNzUge1xuICAgICAgd2lkdGg6IDc1JTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCB7XG4gICAgICB3aWR0aDogMTAwJTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUudGFibGUgdGFibGUge1xuICAgICAgYm9yZGVyLXJpZ2h0OiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgIH1cblxuICAgIGZpZ3VyZS50YWJsZSB0YWJsZSxcbiAgICBmaWd1cmUudGFibGUgdGFibGUgdHIgdGQsXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHRyIHRoIHtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLWJsYWNrKTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgfVxuXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHtcbiAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgYm94LXNoYWRvdzogbm9uZTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IC4yNXJlbSAuMjVyZW0gMCAwO1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIGNvbG9yOiB2YXIoLS1ncmF5KTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG4gICAgICBib3JkZXItc3BhY2luZzogMDtcbiAgICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG5cbiAgICAgIHRoZWFkIHtcbiAgICAgICAgdHIge1xuICAgICAgICAgIHRoIHtcbiAgICAgICAgICAgICY6Zmlyc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAmOmxhc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLXJpZ2h0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgZm9udC1zaXplOiAuODc1cmVtO1xuICAgICAgICAgICAgcGFkZGluZzogMXJlbTtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktMTAwKTtcbiAgICAgICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgICAgIGhlaWdodDogMi41cmVtO1xuICAgICAgICAgICAgYm9yZGVyOjBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IC4wNjI1cmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIGJvcmRlci1yaWdodDogLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICB0Ym9keSB7XG4gICAgICAgIHRyIHtcbiAgICAgICAgICAmOm50aC1jaGlsZCgybikge1xuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tZ3JheS0wKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktMCk7XG4gICAgICAgICAgICBjb2xvcjogcmdiYSh2YXIoLS1yYy1yZ2JhLWdyYXkpLCAwLjk1KTtcbiAgICAgICAgICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICBmb250LXNpemU6IC44NzVyZW07XG4gICAgICAgICAgICBwYWRkaW5nOiAxcmVtO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLWdyYXkpO1xuICAgICAgICAgICAgaGVpZ2h0OiAzLjVyZW07XG4gICAgICAgICAgICBib3JkZXI6IDBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICBib3JkZXItcmlnaHQ6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICB3b3JkLWJyZWFrOiBicmVhay13b3JkO1xuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcblxuICAgICAgICAgICAgJjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcCB7XG4gICAgICAgICAgICAgIG1hcmdpbi1ib3R0b206IDBweCAhaW1wb3J0YW50O1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cblxuICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7XG5cbiAgICAgICAgICAgICAgJjpmaXJzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1yaWdodC1yYWRpdXM6IDAuMjVyZW07XG4gICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgIH1cblxuICAgIHVsLFxuICAgIG9sIHtcbiAgICAgIG1hcmdpbi10b3A6IDAuNXJlbTtcblxuICAgICAgbGkge1xuICAgICAgICBtYXJnaW46IDAuNXJlbTtcbiAgICAgICAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlLXR5cGU6IGRpc2M7XG4gICAgfVxuXG4gICAgaDEsXG4gICAgaDIsXG4gICAgaDMsXG4gICAgaDQsXG4gICAgaDUsXG4gICAgaDYge1xuICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIG1hcmdpbi1ib3R0b206IDFyZW07XG4gICAgfVxuXG4gICAgcCxcbiAgICBzcGFuIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIHAgc3Ryb25nLFxuICAgIHAgc3BhbiBzdHJvbmcge1xuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgfVxuXG4gICAgcCBzcGFuIHUsXG4gICAgcCB1IHtcbiAgICAgIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lO1xuICAgIH1cblxuICAgIHAgc3BhbiBpLFxuICAgIHAgaSB7XG4gICAgICBmb250LXN0eWxlOiBpdGFsaWM7XG4gICAgfVxuXG4gIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */"] + dependencies: [_angular_common__WEBPACK_IMPORTED_MODULE_25__.NgClass, _angular_common__WEBPACK_IMPORTED_MODULE_25__.NgForOf, _angular_common__WEBPACK_IMPORTED_MODULE_25__.NgIf, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_26__.SlideComponent, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_26__.CarouselComponent, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_16__.ContenterrorComponent, _mcq_mcq_component__WEBPACK_IMPORTED_MODULE_4__.McqComponent, _header_header_component__WEBPACK_IMPORTED_MODULE_5__.HeaderComponent, _sa_sa_component__WEBPACK_IMPORTED_MODULE_6__.SaComponent, _icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_7__.AnsComponent, _startpage_startpage_component__WEBPACK_IMPORTED_MODULE_8__.StartpageComponent, _alert_alert_component__WEBPACK_IMPORTED_MODULE_9__.AlertComponent, _mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_10__.McqSolutionsComponent, _mtf_mtf_component__WEBPACK_IMPORTED_MODULE_11__.MtfComponent], + styles: ["@charset \"UTF-8\";\n :root {\n --quml-scoreboard-sub-title: #6d7278;\n --quml-scoreboard-skipped: #969696;\n --quml-scoreboard-unattempted: #575757;\n --quml-color-success: #08bc82;\n --quml-color-danger: #f1635d;\n --quml-color-primary-contrast: #333;\n --quml-btn-border: #ccc;\n --quml-heder-text-color: #6250f5;\n --quml-header-bg-color: #c2c2c2;\n --quml-mcq-title-txt: #131415;\n --quml-zoom-btn-txt: #eee;\n --quml-zoom-btn-hover: #f2f2f2;\n --quml-main-bg: #fff;\n --quml-btn-color: #fff;\n --quml-question-bg: #fff;\n}\n\n.quml-header[_ngcontent-%COMP%] {\n background: var(--quml-header-bg-color);\n display: flow-root;\n height: 2.25rem;\n position: fixed;\n}\n\n.quml-container[_ngcontent-%COMP%] {\n overflow: hidden;\n width: 100%;\n height: 100%;\n position: relative;\n}\n\n.quml-landscape[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n\n .carousel {\n outline: none;\n}\n\n.col[_ngcontent-%COMP%] {\n padding-left: 0px;\n padding-right: 0px;\n}\n\n.quml-button[_ngcontent-%COMP%] {\n background-color: var(--primary-color);\n \n\n border: none;\n color: var(--quml-btn-color);\n padding: 0.25rem;\n text-align: center;\n text-decoration: none;\n font-size: 1rem;\n margin: 0.125rem 0.5rem 0.125rem 0.125rem;\n cursor: pointer;\n width: 3rem;\n height: 2.5rem;\n border-radius: 10%;\n}\n\n.landscape-mode[_ngcontent-%COMP%] {\n height: 100%;\n width: 100%;\n position: relative;\n background-color: var(--quml-main-bg);\n}\n\n.landscape-content[_ngcontent-%COMP%] {\n padding: 2.5rem 4rem 0 4rem;\n overflow: auto;\n height: 100%;\n width: 100%;\n}\n@media only screen and (max-width: 480px) {\n .landscape-content[_ngcontent-%COMP%] {\n padding: 5rem 1rem 0 1rem;\n height: calc(100% - 3rem);\n }\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] {\n position: absolute;\n left: 0;\n top: 3.5rem;\n text-align: center;\n z-index: 1;\n width: 4rem;\n}\n\n.lanscape-mode-left[_ngcontent-%COMP%] div[_ngcontent-%COMP%] {\n padding-bottom: 1.5rem;\n}\n\n.landscape-center[_ngcontent-%COMP%] {\n width: 100%;\n}\n\n.lanscape-mode-right[_ngcontent-%COMP%] {\n -ms-overflow-style: none; \n\n scrollbar-width: none; \n\n position: absolute;\n padding: 0 1rem;\n right: 0.5rem;\n color: var(--quml-scoreboard-unattempted);\n font-size: 0.75rem;\n height: calc(100% - 4rem);\n overflow-y: auto;\n top: 3.5rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n margin-top: 0.5rem;\n padding: 0;\n text-align: center;\n position: relative;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 0.0625rem;\n height: 100%;\n position: absolute;\n left: 0;\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 1;\n margin: 0 auto;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n width: 1.25rem;\n height: 1.25rem;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover {\n border: 1px solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul.nonFeedback[_ngcontent-%COMP%] li.att-color[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li[_ngcontent-%COMP%]:focus::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] li.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n display: inline-block;\n transform: rotate(45deg);\n height: 0.6rem;\n width: 0.3rem;\n border-bottom: 0.12rem solid var(--primary-color);\n border-right: 0.12rem solid var(--primary-color);\n position: absolute;\n top: 0.25rem;\n right: -0.7rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n position: absolute;\n top: 0.525rem;\n right: -0.7rem;\n height: 0.375rem;\n width: 0.375rem;\n border-radius: 0.375rem;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%] label[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n color: var(--white) !important;\n background: var(--primary-color);\n border: 0.03125rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 0.25rem;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n border-radius: 50%;\n background: var(--white);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.active[_ngcontent-%COMP%]::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:hover::after, .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%]:focus::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n height: 1.65rem;\n border-radius: 0.25rem;\n position: absolute;\n width: 1.65rem;\n background: var(--quml-question-bg);\n z-index: -1;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] {\n display: none;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n height: 0;\n transform: scaleY(0);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n height: 100%;\n transform-origin: top;\n transition: transform 0.2s ease-out;\n transform: scaleY(1);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ label[_ngcontent-%COMP%] {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n background-color: var(--quml-question-bg);\n border-radius: 50%;\n width: 1.25rem;\n padding: 0.25rem;\n height: 1.25rem;\n display: flex;\n align-items: center;\n justify-content: center;\n border: 0.0625rem solid rgb(204, 204, 204);\n margin-bottom: 2.25rem;\n cursor: pointer;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.requiresSubmit[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.progressBar-border[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] .active[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.att-color[_ngcontent-%COMP%] {\n color: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.info-page[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--primary-color);\n border: 0.0625rem solid var(--primary-color);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%] {\n color: var(--white);\n background: var(--quml-scoreboard-skipped);\n border: 0.0625rem solid var(--quml-scoreboard-skipped);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.skipped[_ngcontent-%COMP%]:hover {\n color: var(--white) !important;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%], .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n color: var(--white);\n border: 0px solid transparent;\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.correct[_ngcontent-%COMP%] {\n --correct-bg: var(--quml-color-success);\n background: var(--correct-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.wrong[_ngcontent-%COMP%] {\n --wrong-bg: var(--quml-color-danger);\n background: var(--wrong-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.partial[_ngcontent-%COMP%] {\n --partial-bg: linear-gradient(\n 180deg,\n rgba(71, 164, 128, 1) 0%,\n rgba(71, 164, 128, 1) 50%,\n rgba(249, 122, 116, 1) 50%,\n rgba(249, 122, 116, 1) 100%\n );\n background: var(--partial-bg);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-unattempted);\n border: 0.03125rem solid var(--quml-scoreboard-unattempted);\n}\n.lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar.unattempted[_ngcontent-%COMP%]:hover {\n border: 0.0625rem solid var(--primary-color);\n color: var(--primary-color);\n}\n\n.current-slide[_ngcontent-%COMP%] {\n color: var(--quml-scoreboard-sub-title);\n font-size: 0.875rem;\n font-weight: 900;\n letter-spacing: 0;\n}\n\n@media only screen and (max-width: 480px) {\n .lanscape-mode-right[_ngcontent-%COMP%] {\n background: var(--white);\n display: flex;\n align-items: center;\n overflow-x: auto;\n overflow-y: hidden;\n width: 90%;\n height: 2.5rem;\n padding: 1rem 0 0;\n margin: auto;\n left: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n list-style: none;\n padding: 0;\n text-align: center;\n position: relative;\n display: flex;\n height: 1.5rem;\n margin-top: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n z-index: 1;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 0px;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] {\n display: flex;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .singleContent[_ngcontent-%COMP%] .showFeedBack-progressBar[_ngcontent-%COMP%]:last-child {\n margin-right: 2.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] {\n top: -1.75rem;\n position: inherit;\n margin: 0.5rem 2.25rem;\n padding-left: 1.25rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n background: transparent;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.attempted[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.8125rem;\n right: auto;\n left: 0.625rem;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.correct[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.wrong[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section.partial[_ngcontent-%COMP%]::after {\n content: \"\";\n top: -0.525rem;\n left: 0.5rem;\n right: auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] .section[_ngcontent-%COMP%] label[_ngcontent-%COMP%] {\n margin-right: 2.25rem;\n margin-bottom: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%]::before {\n content: \"\";\n width: 100%;\n height: 0.0625rem;\n position: absolute;\n left: 0;\n top: 50%;\n transform: translate(0, -50%);\n right: 0;\n background-color: rgba(204, 204, 204, 0.5);\n z-index: 0;\n margin: 0 auto;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%] ~ ul[_ngcontent-%COMP%] {\n width: 0;\n transform: scaleX(0);\n margin: 0;\n }\n .lanscape-mode-right[_ngcontent-%COMP%] ul[_ngcontent-%COMP%] input[type=checkbox][_ngcontent-%COMP%]:checked ~ ul[_ngcontent-%COMP%] {\n width: calc(100% - 4rem);\n transform-origin: left;\n transition: transform 0.2s ease-out;\n transform: scaleX(1);\n margin: -1.25rem 3rem 0 4rem;\n }\n .landscape-center[_ngcontent-%COMP%] {\n margin-top: 2rem;\n }\n .lanscape-mode-left[_ngcontent-%COMP%] {\n display: none;\n }\n .landscape-mode[_ngcontent-%COMP%] {\n grid-template-areas: \"right right right\" \"center center center\" \"left left left\";\n }\n}\n.quml-timer[_ngcontent-%COMP%] {\n padding: 0.5rem;\n}\n\n.quml-header-text[_ngcontent-%COMP%] {\n margin: 0.5rem;\n text-align: center;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n\n.quml-arrow-button[_ngcontent-%COMP%] {\n border-radius: 28%;\n font-size: 0%;\n outline: none;\n background-color: var(--primary-color);\n padding: 0.5rem;\n}\n\n.info-popup[_ngcontent-%COMP%] {\n position: absolute;\n top: 18%;\n right: 10%;\n font-size: 0.875rem;\n box-shadow: 0 0.125rem 0.875rem 0 rgba(0, 0, 0, 0.1);\n padding: 0.75rem;\n}\n\n.quml-menu[_ngcontent-%COMP%] {\n width: 1.5rem;\n height: 1.5rem;\n}\n\n.quml-card[_ngcontent-%COMP%] {\n background-color: var(--white);\n padding: 1.25rem;\n box-shadow: 0 0.25rem 0.5rem 0 rgba(0, 0, 0, 0.2);\n width: 25%;\n position: absolute;\n left: 37%;\n text-align: center;\n top: 25%;\n z-index: 2;\n}\n\n.quml-card-title[_ngcontent-%COMP%] {\n font-size: 1.25rem;\n text-align: center;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .wrong[_ngcontent-%COMP%] {\n color: red;\n}\n\n.quml-card-body[_ngcontent-%COMP%] .right[_ngcontent-%COMP%] {\n color: green;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] button[_ngcontent-%COMP%] {\n color: var(--white);\n background-color: var(--primary-color);\n border-color: var(--primary-color);\n outline: none;\n font-size: 0.875rem;\n padding: 0.25rem 1.5rem;\n}\n\n.quml-card-button-section[_ngcontent-%COMP%] .button-container[_ngcontent-%COMP%] {\n width: 40%;\n display: inline;\n padding-right: 0.75rem;\n}\n\n .carousel.slide a.left.carousel-control.carousel-control-prev, .carousel.slide .carousel-control.carousel-control-next {\n display: none;\n}\n .carousel-item {\n perspective: unset;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] {\n visibility: hidden;\n margin-top: -2.5rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .wrapper[_ngcontent-%COMP%] {\n display: grid;\n grid-template-columns: 1fr 15fr;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-menu[_ngcontent-%COMP%] {\n color: var(--quml-heder-text-color);\n font-size: 1.5rem;\n padding-left: 1.25rem;\n margin-top: 0.25rem;\n}\n\n.potrait-header-top[_ngcontent-%COMP%] .quml-header-text[_ngcontent-%COMP%] {\n font-size: 0.875rem;\n color: var(--quml-heder-text-color);\n}\n\n.row[_ngcontent-%COMP%] {\n margin-right: 0px;\n margin-left: 0px;\n}\n\n.portrait-header[_ngcontent-%COMP%] {\n visibility: hidden;\n}\n\n.image-viewer__overlay[_ngcontent-%COMP%], .image-viewer__container[_ngcontent-%COMP%], .image-viewer__close[_ngcontent-%COMP%], .image-viewer__zoom[_ngcontent-%COMP%] {\n position: absolute;\n}\n.image-viewer__overlay[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n background: var(--quml-color-primary-contrast);\n z-index: 11111;\n}\n.image-viewer__container[_ngcontent-%COMP%] {\n background-color: var(--quml-color-primary-contrast);\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n z-index: 11111;\n width: 80%;\n height: 80%;\n}\n.image-viewer__img[_ngcontent-%COMP%] {\n width: 100%;\n height: 100%;\n}\n.image-viewer__close[_ngcontent-%COMP%] {\n top: 1rem;\n right: 1rem;\n text-align: center;\n cursor: pointer;\n z-index: 999999;\n background: rgba(0, 0, 0, 0.5);\n border-radius: 100%;\n width: 3rem;\n height: 3rem;\n position: inherit;\n}\n.image-viewer__close[_ngcontent-%COMP%]::after {\n content: \"\u2715\";\n color: var(--white);\n font-size: 2rem;\n}\n.image-viewer__close[_ngcontent-%COMP%]:hover {\n background: rgb(0, 0, 0);\n}\n.image-viewer__zoom[_ngcontent-%COMP%] {\n bottom: 1rem;\n right: 1rem;\n width: 2.5rem;\n height: auto;\n border-radius: 0.5rem;\n background: var(--white);\n display: flex;\n flex-direction: column;\n align-items: center;\n overflow: hidden;\n z-index: 99999;\n position: inherit;\n border: 0.0625rem solid var(--quml-zoom-btn-txt);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%], .image-viewer__zoomout[_ngcontent-%COMP%] {\n text-align: center;\n height: 2.5rem;\n position: relative;\n width: 2.5rem;\n cursor: pointer;\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]:hover, .image-viewer__zoomout[_ngcontent-%COMP%]:hover {\n background-color: var(--quml-zoom-btn-hover);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after, .image-viewer__zoomout[_ngcontent-%COMP%]::after {\n font-size: 1.5rem;\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%] {\n border-bottom: 0.0625rem solid var(--quml-btn-border);\n}\n.image-viewer__zoomin[_ngcontent-%COMP%]::after {\n content: \"+\";\n}\n.image-viewer__zoomout[_ngcontent-%COMP%]::after {\n content: \"\u2212\";\n}\n\n\n\n quml-ans {\n cursor: pointer;\n}\n quml-ans svg circle {\n fill: var(--quml-zoom-btn-txt);\n}\n .magnify-icon {\n position: absolute;\n right: 0;\n bottom: 0;\n width: 1.5rem;\n height: 1.5rem;\n border-top-left-radius: 0.5rem;\n cursor: pointer;\n background-color: var(--quml-color-primary-contrast);\n}\n .magnify-icon::after {\n content: \"\";\n position: absolute;\n bottom: 0.125rem;\n right: 0.125rem;\n z-index: 1;\n width: 1rem;\n height: 1rem;\n background-image: url(\"data:image/svg+xml,%3C%3Fxml version='1.0'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.com/svgjs' version='1.1' width='512' height='512' x='0' y='0' viewBox='0 0 37.166 37.166' style='enable-background:new 0 0 512 512' xml:space='preserve' class=''%3E%3Cg%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.829,32.045l-6.833-6.833c-0.513-0.513-1.167-0.788-1.836-0.853c2.06-2.567,3.298-5.819,3.298-9.359 c0-8.271-6.729-15-15-15c-8.271,0-15,6.729-15,15c0,8.271,6.729,15,15,15c3.121,0,6.021-0.96,8.424-2.598 c0.018,0.744,0.305,1.482,0.872,2.052l6.833,6.833c0.585,0.586,1.354,0.879,2.121,0.879s1.536-0.293,2.121-0.879 C37.001,35.116,37.001,33.217,35.829,32.045z M15.458,25c-5.514,0-10-4.484-10-10c0-5.514,4.486-10,10-10c5.514,0,10,4.486,10,10 C25.458,20.516,20.972,25,15.458,25z M22.334,15c0,1.104-0.896,2-2,2h-2.75v2.75c0,1.104-0.896,2-2,2s-2-0.896-2-2V17h-2.75 c-1.104,0-2-0.896-2-2s0.896-2,2-2h2.75v-2.75c0-1.104,0.896-2,2-2s2,0.896,2,2V13h2.75C21.438,13,22.334,13.895,22.334,15z' fill='%23ffffff' data-original='%23000000' style='' class=''/%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3Cg xmlns='http://www.w3.org/2000/svg'%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A\");\n background-size: cover;\n background-repeat: no-repeat;\n background-position: center;\n}\n .solution-options figure.image {\n border: 0.0625rem solid var(--quml-btn-border);\n overflow: hidden;\n border-radius: 0.25rem;\n position: relative;\n}\n .solutions .solution-options figure.image, .image-viewer__overlay .image-viewer__container {\n display: flex;\n align-items: center;\n justify-content: center;\n}\n .solutions .solution-options figure.image .portrait, .image-viewer__overlay .image-viewer__container .portrait {\n width: auto;\n height: 100%;\n}\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: auto;\n height: auto;\n}\n@media only screen and (max-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n width: 100%;\n }\n}\n@media only screen and (min-width: 768px) {\n .solutions .solution-options figure.image .neutral, .image-viewer__overlay .image-viewer__container .neutral {\n height: 100%;\n }\n}\n .solutions .solution-options figure.image .landscape, .image-viewer__overlay .image-viewer__container .landscape {\n height: auto;\n}\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .quml-mcq .mcq-title p, .quml-sa .mcq-title p, quml-sa .mcq-title p, quml-mcq-solutions .mcq-title p {\n word-break: break-word;\n}\n@media only screen and (max-width: 480px) {\n .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n margin-top: 1rem;\n }\n}\n .quml-mcq .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-mcq .quml-mcq--option .quml-mcq-option-card p:last-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, .quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:first-child, quml-sa .quml-mcq--option .quml-mcq-option-card p:last-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:first-child, quml-mcq-solutions .quml-mcq--option .quml-mcq-option-card p:last-child {\n margin-bottom: 0;\n}\n quml-mcq-solutions figure.image, quml-mcq-solutions figure.image.resize-25, quml-mcq-solutions figure.image.resize-50, quml-mcq-solutions figure.image.resize-75, quml-mcq-solutions figure.image.resize-100, quml-mcq-solutions figure.image.resize-original {\n width: 25%;\n height: auto;\n}\n quml-mcq-solutions .solution-options p {\n margin-bottom: 1rem;\n}\n .quml-option .option p {\n word-break: break-word;\n}\n\n.endPage-container-height[_ngcontent-%COMP%] {\n height: 100%;\n}\n\n.scoreboard-sections[_ngcontent-%COMP%] {\n display: contents;\n}\n.scoreboard-sections[_ngcontent-%COMP%] li[_ngcontent-%COMP%] {\n position: relative;\n z-index: 2;\n}\n\n.hover-effect[_ngcontent-%COMP%]:hover::after, .hover-effect[_ngcontent-%COMP%]:focus::after, .hover-effect.progressBar-border[_ngcontent-%COMP%]::after {\n border: 1px solid var(--primary-color);\n content: \"\";\n width: 1.65rem;\n height: 1.65rem;\n border-radius: 50%;\n padding: 0.25rem;\n position: absolute;\n}\n\n.mtf[_ngcontent-%COMP%] {\n margin-top: 2rem;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3NlY3Rpb24tcGxheWVyL3NlY3Rpb24tcGxheWVyLmNvbXBvbmVudC5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGdCQUFnQjtBQUVoQjtFQUNFLG9DQUFBO0VBQ0Esa0NBQUE7RUFDQSxzQ0FBQTtFQUNBLDZCQUFBO0VBQ0EsNEJBQUE7RUFDQSxtQ0FBQTtFQUNBLHVCQUFBO0VBQ0EsZ0NBQUE7RUFDQSwrQkFBQTtFQUNBLDZCQUFBO0VBQ0EseUJBQUE7RUFDQSw4QkFBQTtFQUNBLG9CQUFBO0VBQ0Esc0JBQUE7RUFDQSx3QkFBQTtBQUFGOztBQUdBO0VBQ0UsdUNBQUE7RUFDQSxrQkFBQTtFQUNBLGVBQUE7RUFDQSxlQUFBO0FBQUY7O0FBR0E7RUFDRSxnQkFBQTtFQUNBLFdBQUE7RUFDQSxZQUFBO0VBQ0Esa0JBQUE7QUFBRjs7QUFHQTtFQUNFLFdBQUE7RUFDQSxZQUFBO0FBQUY7O0FBR0E7RUFDRSxhQUFBO0FBQUY7O0FBR0E7RUFDRSxpQkFBQTtFQUNBLGtCQUFBO0FBQUY7O0FBR0E7RUFDRSxzQ0FBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsNEJBQUE7RUFDQSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EscUJBQUE7RUFDQSxlQUFBO0VBQ0EseUNBQUE7RUFDQSxlQUFBO0VBQ0EsV0FBQTtFQUNBLGNBQUE7RUFDQSxrQkFBQTtBQUFGOztBQUdBO0VBQ0UsWUFBQTtFQUNBLFdBQUE7RUFDQSxrQkFBQTtFQUNBLHFDQUFBO0FBQUY7O0FBR0E7RUFDRSwyQkFBQTtFQUNBLGNBQUE7RUFDQSxZQUFBO0VBQ0EsV0FBQTtBQUFGO0FBRUU7RUFORjtJQU9JLHlCQUFBO0lBQ0EseUJBQUE7RUFDRjtBQUNGOztBQUVBO0VBQ0Usa0JBQUE7RUFDQSxPQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLFdBQUE7QUFDRjs7QUFFQTtFQUNFLHNCQUFBO0FBQ0Y7O0FBRUE7RUFDRSxXQUFBO0FBQ0Y7O0FBRUE7RUFDRSx3QkFBQSxFQUFBLGdCQUFBO0VBQ0EscUJBQUEsRUFBQSxZQUFBO0VBQ0Esa0JBQUE7RUFDQSxlQUFBO0VBQ0EsYUFBQTtFQUNBLHlDQUFBO0VBQ0Esa0JBQUE7RUFDQSx5QkFBQTtFQUNBLGdCQUFBO0VBQ0EsV0FBQTtBQUNGO0FBQ0U7RUFDRSxnQkFBQTtFQUNBLGtCQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0Esa0JBQUE7QUFDSjtBQUNJO0VBQ0UsV0FBQTtFQUNBLGdCQUFBO0VBQ0EsWUFBQTtFQUNBLGtCQUFBO0VBQ0EsT0FBQTtFQUNBLFFBQUE7RUFDQSwwQ0FBQTtFQUNBLFVBQUE7RUFDQSxjQUFBO0FBQ047QUFDSTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQUNOO0FBQ007RUFDRSx5Q0FBQTtFQUNBLDJEQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLHdCQUFBO0FBQ1I7QUFBUTtFQUNFLDRDQUFBO0FBRVY7QUFHTTtFQUNFLHNDQUFBO0VBQ0EsMkJBQUE7QUFEUjtBQUdNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtBQURSO0FBT1U7RUFDRSxzQ0FBQTtFQUNBLDJCQUFBO0FBTFo7QUFPVTtFQUNFLG1CQUFBO0VBQ0EsZ0NBQUE7QUFMWjtBQVlZO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsY0FBQTtFQUNBLGVBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0Esa0JBQUE7QUFWZDtBQWlCUTtFQUNFLFdBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsY0FBQTtFQUNBLGFBQUE7RUFDQSxpREFBQTtFQUNBLGdEQUFBO0VBQ0Esa0JBQUE7RUFDQSxZQUFBO0VBQ0EsY0FBQTtBQWZWO0FBa0JNO0VBR0UsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSxnQkFBQTtFQUNBLGVBQUE7RUFDQSx1QkFBQTtBQWxCUjtBQXFCUTtFQUNFLHVDQUFBO0VBQ0EsNkJBQUE7QUFuQlY7QUF1QlE7RUFDRSxvQ0FBQTtFQUNBLDJCQUFBO0FBckJWO0FBeUJRO0VBQ0U7Ozs7OztHQUFBO0VBT0EsNkJBQUE7QUF2QlY7QUE0QlE7RUFDRSw4QkFBQTtFQUNBLGdDQUFBO0VBQ0EsNkNBQUE7QUExQlY7QUE4Qkk7RUFDRSx5Q0FBQTtFQUNBLHNCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EseUNBQUE7RUFDQSwyREFBQTtFQUNBLHNCQUFBO0VBQ0EsZUFBQTtBQTVCTjtBQThCTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7RUFDQSxrQkFBQTtFQUNBLHdCQUFBO0FBNUJSO0FBNkJRO0VBQ0UsNENBQUE7QUEzQlY7QUE4Qk07RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBOUJSO0FBK0JRO0VBQ0Usc0NBQUE7RUFDQSxXQUFBO0VBQ0EsZUFBQTtFQUNBLHNCQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsbUNBQUE7RUFDQSxXQUFBO0FBN0JWO0FBZ0NNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBOUJSO0FBZ0NNO0VBQ0UseUNBQUE7RUFDQSwyREFBQTtBQTlCUjtBQStCUTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUE3QlY7QUFpQ0k7RUFDRSxhQUFBO0FBL0JOO0FBaUNJO0VBQ0UsU0FBQTtFQUNBLG9CQUFBO0FBL0JOO0FBaUNJO0VBQ0UsWUFBQTtFQUNBLHFCQUFBO0VBQ0EsbUNBQUE7RUFDQSxvQkFBQTtBQS9CTjtBQWtDTTtFQUNFLDRDQUFBO0VBQ0EsMkJBQUE7QUFoQ1I7QUFtQ0k7RUFDRSx5Q0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0VBQ0EsMENBQUE7RUFDQSxzQkFBQTtFQUNBLGVBQUE7QUFqQ047QUFtQ1E7RUFDRSw0Q0FBQTtBQWpDVjtBQXFDTTs7RUFHRSwyQkFBQTtFQUNBLDRDQUFBO0FBcENSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSxnQ0FBQTtFQUNBLDRDQUFBO0FBckNSO0FBdUNNO0VBQ0UsbUJBQUE7RUFDQSwwQ0FBQTtFQUNBLHNEQUFBO0FBckNSO0FBc0NRO0VBQ0UsOEJBQUE7QUFwQ1Y7QUF1Q007RUFHRSxtQkFBQTtFQUNBLDZCQUFBO0FBdkNSO0FBeUNNO0VBQ0UsdUNBQUE7RUFDQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLG9DQUFBO0VBQ0EsMkJBQUE7QUF2Q1I7QUF5Q007RUFDRTs7Ozs7O0dBQUE7RUFPQSw2QkFBQTtBQXZDUjtBQXlDTTtFQUNFLHlDQUFBO0VBQ0EsMkRBQUE7QUF2Q1I7QUF3Q1E7RUFDRSw0Q0FBQTtFQUNBLDJCQUFBO0FBdENWOztBQTZDQTtFQUNFLHVDQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGlCQUFBO0FBMUNGOztBQTZDQTtFQUNFO0lBQ0Usd0JBQUE7SUFDQSxhQUFBO0lBQ0EsbUJBQUE7SUFDQSxnQkFBQTtJQUNBLGtCQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7SUFDQSxpQkFBQTtJQUNBLFlBQUE7SUFDQSxPQUFBO0VBMUNGO0VBMkNFO0lBQ0UsZ0JBQUE7SUFDQSxVQUFBO0lBQ0Esa0JBQUE7SUFDQSxrQkFBQTtJQUNBLGFBQUE7SUFDQSxjQUFBO0lBQ0EsYUFBQTtFQXpDSjtFQTBDSTtJQUNFLHFCQUFBO0lBQ0EsVUFBQTtFQXhDTjtFQTBDTTtJQUNFLGlCQUFBO0VBeENSO0VBMkNJO0lBQ0UsYUFBQTtFQXpDTjtFQTBDTTtJQUNFLHFCQUFBO0VBeENSO0VBNENNO0lBQ0UsYUFBQTtJQUNBLGlCQUFBO0lBQ0Esc0JBQUE7SUFDQSxxQkFBQTtFQTFDUjtFQTJDUTtJQUNFLHVCQUFBO0VBekNWO0VBNkNRO0lBQ0UsV0FBQTtJQUNBLGVBQUE7SUFDQSxXQUFBO0lBQ0EsY0FBQTtFQTNDVjtFQStDUTtJQUNFLFdBQUE7SUFDQSxjQUFBO0lBQ0EsWUFBQTtJQUNBLFdBQUE7RUE3Q1Y7RUFpRFE7SUFDRSxXQUFBO0lBQ0EsY0FBQTtJQUNBLFlBQUE7SUFDQSxXQUFBO0VBL0NWO0VBbURRO0lBQ0UsV0FBQTtJQUNBLGNBQUE7SUFDQSxZQUFBO0lBQ0EsV0FBQTtFQWpEVjtFQXFESTtJQUNFLHFCQUFBO0lBQ0EsZ0JBQUE7RUFuRE47RUFxREk7SUFDRSxXQUFBO0lBQ0EsV0FBQTtJQUNBLGlCQUFBO0lBQ0Esa0JBQUE7SUFDQSxPQUFBO0lBQ0EsUUFBQTtJQUNBLDZCQUFBO0lBQ0EsUUFBQTtJQUNBLDBDQUFBO0lBQ0EsVUFBQTtJQUNBLGNBQUE7RUFuRE47RUF1REE7SUFDRSxRQUFBO0lBQ0Esb0JBQUE7SUFDQSxTQUFBO0VBckRGO0VBdURBO0lBQ0Usd0JBQUE7SUFDQSxzQkFBQTtJQUNBLG1DQUFBO0lBQ0Esb0JBQUE7SUFDQSw0QkFBQTtFQXJERjtFQXVEQTtJQUNFLGdCQUFBO0VBckRGO0VBd0RBO0lBQ0UsYUFBQTtFQXRERjtFQXlEQTtJQUNFLGdGQUNFO0VBeERKO0FBQ0Y7QUE2REE7RUFDRSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGNBQUE7RUFDQSxrQkFBQTtFQUNBLHVCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxtQkFBQTtBQTNERjs7QUE4REE7RUFDRSxrQkFBQTtFQUNBLGFBQUE7RUFDQSxhQUFBO0VBQ0Esc0NBQUE7RUFDQSxlQUFBO0FBM0RGOztBQThEQTtFQUNFLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7RUFDQSxtQkFBQTtFQUVBLG9EQUFBO0VBQ0EsZ0JBQUE7QUE1REY7O0FBK0RBO0VBQ0UsYUFBQTtFQUNBLGNBQUE7QUE1REY7O0FBK0RBO0VBQ0UsOEJBQUE7RUFDQSxnQkFBQTtFQUNBLGlEQUFBO0VBQ0EsVUFBQTtFQUNBLGtCQUFBO0VBQ0EsU0FBQTtFQUNBLGtCQUFBO0VBQ0EsUUFBQTtFQUNBLFVBQUE7QUE1REY7O0FBK0RBO0VBQ0Usa0JBQUE7RUFDQSxrQkFBQTtBQTVERjs7QUErREE7RUFDRSxVQUFBO0FBNURGOztBQStEQTtFQUNFLFlBQUE7QUE1REY7O0FBK0RBO0VBQ0UsbUJBQUE7RUFDQSxzQ0FBQTtFQUNBLGtDQUFBO0VBQ0EsYUFBQTtFQUNBLG1CQUFBO0VBQ0EsdUJBQUE7QUE1REY7O0FBK0RBO0VBQ0UsVUFBQTtFQUNBLGVBQUE7RUFDQSxzQkFBQTtBQTVERjs7QUFpRUk7O0VBRUUsYUFBQTtBQTlETjtBQWtFRTtFQUNFLGtCQUFBO0FBaEVKOztBQW9FQTtFQUNFLGtCQUFBO0VBQ0EsbUJBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsYUFBQTtFQUNBLCtCQUFBO0FBakVGOztBQW9FQTtFQUNFLG1DQUFBO0VBQ0EsaUJBQUE7RUFDQSxxQkFBQTtFQUNBLG1CQUFBO0FBakVGOztBQW9FQTtFQUNFLG1CQUFBO0VBQ0EsbUNBQUE7QUFqRUY7O0FBb0VBO0VBQ0UsaUJBQUE7RUFDQSxnQkFBQTtBQWpFRjs7QUFvRUE7RUFDRSxrQkFBQTtBQWpFRjs7QUFxRUU7RUFJRSxrQkFBQTtBQXJFSjtBQXdFRTtFQUNFLFdBQUE7RUFDQSxZQUFBO0VBQ0EsOENBQUE7RUFDQSxjQUFBO0FBdEVKO0FBeUVFO0VBQ0Usb0RBQUE7RUFDQSxRQUFBO0VBQ0EsU0FBQTtFQUNBLGdDQUFBO0VBQ0EsY0FBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0FBdkVKO0FBMEVFO0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUF4RUo7QUEyRUU7RUFDRSxTQUFBO0VBQ0EsV0FBQTtFQUNBLGtCQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7RUFDQSw4QkFBQTtFQUNBLG1CQUFBO0VBQ0EsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQXpFSjtBQTJFSTtFQUNFLFlBQUE7RUFDQSxtQkFBQTtFQUNBLGVBQUE7QUF6RU47QUE0RUk7RUFDRSx3QkFBQTtBQTFFTjtBQThFRTtFQUNFLFlBQUE7RUFDQSxXQUFBO0VBQ0EsYUFBQTtFQUNBLFlBQUE7RUFDQSxxQkFBQTtFQUNBLHdCQUFBO0VBQ0EsYUFBQTtFQUNBLHNCQUFBO0VBQ0EsbUJBQUE7RUFDQSxnQkFBQTtFQUNBLGNBQUE7RUFDQSxpQkFBQTtFQUNBLGdEQUFBO0FBNUVKO0FBK0VFO0VBRUUsa0JBQUE7RUFDQSxjQUFBO0VBQ0Esa0JBQUE7RUFDQSxhQUFBO0VBQ0EsZUFBQTtBQTlFSjtBQWdGSTtFQUNFLDRDQUFBO0FBOUVOO0FBaUZJO0VBQ0UsaUJBQUE7RUFDQSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsZ0NBQUE7QUEvRU47QUFtRkU7RUFDRSxxREFBQTtBQWpGSjtBQW1GSTtFQUNFLFlBQUE7QUFqRk47QUFzRkk7RUFDRSxZQUFBO0FBcEZOOztBQXlGQSxlQUFBO0FBRUU7RUFDRSxlQUFBO0FBdkZKO0FBd0ZJO0VBQ0UsOEJBQUE7QUF0Rk47QUEwRkU7RUFDRSxrQkFBQTtFQUNBLFFBQUE7RUFDQSxTQUFBO0VBQ0EsYUFBQTtFQUNBLGNBQUE7RUFDQSw4QkFBQTtFQUNBLGVBQUE7RUFDQSxvREFBQTtBQXhGSjtBQTJGRTtFQUNFLFdBQUE7RUFDQSxrQkFBQTtFQUNBLGdCQUFBO0VBQ0EsZUFBQTtFQUNBLFVBQUE7RUFDQSxXQUFBO0VBQ0EsWUFBQTtFQUNBLHc0REFBQTtFQUNBLHNCQUFBO0VBQ0EsNEJBQUE7RUFDQSwyQkFBQTtBQXpGSjtBQTRGRTtFQUNFLDhDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxzQkFBQTtFQUNBLGtCQUFBO0FBMUZKO0FBK0ZFOztFQUVFLGFBQUE7RUFDQSxtQkFBQTtFQUNBLHVCQUFBO0FBN0ZKO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBK0ZJOztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBNUZOO0FBOEZNO0VBSkY7O0lBS0ksV0FBQTtFQTFGTjtBQUNGO0FBNEZNO0VBUkY7O0lBU0ksWUFBQTtFQXhGTjtBQUNGO0FBMkZJOztFQUNFLFlBQUE7QUF4Rk47QUFnR0k7Ozs7RUFDRSxnQ0FBQTtBQTNGTjtBQTZGTTs7OztFQUNFLHNCQUFBO0FBeEZSO0FBMEZNO0VBTkY7Ozs7SUFPSSxnQkFBQTtFQXBGTjtBQUNGO0FBOEZNOzs7Ozs7OztFQUVFLGdCQUFBO0FBdEZSO0FBMkZJOzs7Ozs7RUFNRSxVQUFBO0VBQ0EsWUFBQTtBQXpGTjtBQTRGSTtFQUNFLG1CQUFBO0FBMUZOO0FBOEZFO0VBQ0Usc0JBQUE7QUE1Rko7O0FBZ0dBO0VBQ0UsWUFBQTtBQTdGRjs7QUErRkE7RUFDRSxpQkFBQTtBQTVGRjtBQTZGRTtFQUNFLGtCQUFBO0VBQ0EsVUFBQTtBQTNGSjs7QUFrR0k7RUFDRSxzQ0FBQTtFQUNBLFdBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGtCQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtBQS9GTjs7QUFvR0E7RUFDRSxnQkFBQTtBQWpHRiIsInNvdXJjZXNDb250ZW50IjpbIkBpbXBvcnQgXCIuLi8uLi8uLi8uLi8uLi9ub2RlX21vZHVsZXMvQHByb2plY3Qtc3VuYmlyZC9zYi1zdHlsZXMvYXNzZXRzL21peGlucy9taXhpbnNcIjtcblxuOjpuZy1kZWVwIDpyb290IHtcbiAgLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlOiAjNmQ3Mjc4O1xuICAtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkOiAjOTY5Njk2O1xuICAtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZDogIzU3NTc1NztcbiAgLS1xdW1sLWNvbG9yLXN1Y2Nlc3M6ICMwOGJjODI7XG4gIC0tcXVtbC1jb2xvci1kYW5nZXI6ICNmMTYzNWQ7XG4gIC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0OiAjMzMzO1xuICAtLXF1bWwtYnRuLWJvcmRlcjogI2NjYztcbiAgLS1xdW1sLWhlZGVyLXRleHQtY29sb3I6ICM2MjUwZjU7XG4gIC0tcXVtbC1oZWFkZXItYmctY29sb3I6ICNjMmMyYzI7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xuICAtLXF1bWwtem9vbS1idG4tdHh0OiAjZWVlO1xuICAtLXF1bWwtem9vbS1idG4taG92ZXI6ICNmMmYyZjI7XG4gIC0tcXVtbC1tYWluLWJnOiAjZmZmO1xuICAtLXF1bWwtYnRuLWNvbG9yOiAjZmZmO1xuICAtLXF1bWwtcXVlc3Rpb24tYmc6ICNmZmY7XG59XG5cbi5xdW1sLWhlYWRlciB7XG4gIGJhY2tncm91bmQ6IHZhcigtLXF1bWwtaGVhZGVyLWJnLWNvbG9yKTtcbiAgZGlzcGxheTogZmxvdy1yb290O1xuICBoZWlnaHQ6IDIuMjVyZW07XG4gIHBvc2l0aW9uOiBmaXhlZDtcbn1cblxuLnF1bWwtY29udGFpbmVyIHtcbiAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgd2lkdGg6IDEwMCU7XG4gIGhlaWdodDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xufVxuXG4ucXVtbC1sYW5kc2NhcGUge1xuICB3aWR0aDogMTAwJTtcbiAgaGVpZ2h0OiAxMDAlO1xufVxuXG46Om5nLWRlZXAgLmNhcm91c2VsIHtcbiAgb3V0bGluZTogbm9uZTtcbn1cblxuLmNvbCB7XG4gIHBhZGRpbmctbGVmdDogMHB4O1xuICBwYWRkaW5nLXJpZ2h0OiAwcHg7XG59XG5cbi5xdW1sLWJ1dHRvbiB7XG4gIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAvKiBOYXZ5IEJsdWUgKi9cbiAgYm9yZGVyOiBub25lO1xuICBjb2xvcjogdmFyKC0tcXVtbC1idG4tY29sb3IpO1xuICBwYWRkaW5nOiAwLjI1cmVtO1xuICB0ZXh0LWFsaWduOiBjZW50ZXI7XG4gIHRleHQtZGVjb3JhdGlvbjogbm9uZTtcbiAgZm9udC1zaXplOiAxcmVtO1xuICBtYXJnaW46IDAuMTI1cmVtIDAuNXJlbSAwLjEyNXJlbSAwLjEyNXJlbTtcbiAgY3Vyc29yOiBwb2ludGVyO1xuICB3aWR0aDogM3JlbTtcbiAgaGVpZ2h0OiAyLjVyZW07XG4gIGJvcmRlci1yYWRpdXM6IDEwJTtcbn1cblxuLmxhbmRzY2FwZS1tb2RlIHtcbiAgaGVpZ2h0OiAxMDAlO1xuICB3aWR0aDogMTAwJTtcbiAgcG9zaXRpb246IHJlbGF0aXZlO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLW1haW4tYmcpO1xufVxuXG4ubGFuZHNjYXBlLWNvbnRlbnQge1xuICBwYWRkaW5nOiAyLjVyZW0gNHJlbSAwIDRyZW07XG4gIG92ZXJmbG93OiBhdXRvO1xuICBoZWlnaHQ6IDEwMCU7XG4gIHdpZHRoOiAxMDAlO1xuXG4gIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgICBwYWRkaW5nOiA1cmVtIDFyZW0gMCAxcmVtO1xuICAgIGhlaWdodDogY2FsYygxMDAlIC0gM3JlbSk7XG4gIH1cbn1cblxuLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgbGVmdDogMDtcbiAgdG9wOiAzLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgei1pbmRleDogMTtcbiAgd2lkdGg6IDRyZW07XG59XG5cbi5sYW5zY2FwZS1tb2RlLWxlZnQgZGl2IHtcbiAgcGFkZGluZy1ib3R0b206IDEuNXJlbTtcbn1cblxuLmxhbmRzY2FwZS1jZW50ZXIge1xuICB3aWR0aDogMTAwJTtcbn1cblxuLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAtbXMtb3ZlcmZsb3ctc3R5bGU6IG5vbmU7IC8qIElFIGFuZCBFZGdlICovXG4gIHNjcm9sbGJhci13aWR0aDogbm9uZTsgLyogRmlyZWZveCAqL1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHBhZGRpbmc6IDAgMXJlbTtcbiAgcmlnaHQ6IDAuNXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgaGVpZ2h0OiBjYWxjKDEwMCUgLSA0cmVtKTtcbiAgb3ZlcmZsb3cteTogYXV0bztcbiAgdG9wOiAzLjVyZW07XG5cbiAgdWwge1xuICAgIGxpc3Qtc3R5bGU6IG5vbmU7XG4gICAgbWFyZ2luLXRvcDogMC41cmVtO1xuICAgIHBhZGRpbmc6IDA7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcblxuICAgICY6OmJlZm9yZSB7XG4gICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgd2lkdGg6IDAuMDYyNXJlbTtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgIGxlZnQ6IDA7XG4gICAgICByaWdodDogMDtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHJnYmEoMjA0LCAyMDQsIDIwNCwgMC41KTtcbiAgICAgIHotaW5kZXg6IDE7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICB9XG4gICAgbGkge1xuICAgICAgcG9zaXRpb246IHJlbGF0aXZlO1xuICAgICAgei1pbmRleDogMjtcblxuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgfVxuICAgIC5zaW5nbGVDb250ZW50Lm5vbkZlZWRiYWNrIHtcbiAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cbiAgICAgIGxpLmF0dC1jb2xvciB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS13aGl0ZSk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiB7XG4gICAgICB1bCB7XG4gICAgICAgICYubm9uRmVlZGJhY2sge1xuICAgICAgICAgIGxpOmhvdmVyIHtcbiAgICAgICAgICAgIGJvcmRlcjogMXB4IHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgICBsaS5hdHQtY29sb3Ige1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICBsaSB7XG4gICAgICAgICAgJjpob3ZlcixcbiAgICAgICAgICAmOmZvY3VzLFxuICAgICAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgICAgYm9yZGVyOiAxcHggc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICAgIHdpZHRoOiAxLjY1cmVtO1xuICAgICAgICAgICAgICBoZWlnaHQ6IDEuNjVyZW07XG4gICAgICAgICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgICAgICAgcGFkZGluZzogMC4yNXJlbTtcbiAgICAgICAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGRpc3BsYXk6IGlubGluZS1ibG9jaztcbiAgICAgICAgICB0cmFuc2Zvcm06IHJvdGF0ZSg0NWRlZyk7XG4gICAgICAgICAgaGVpZ2h0OiAwLjZyZW07XG4gICAgICAgICAgd2lkdGg6IDAuM3JlbTtcbiAgICAgICAgICBib3JkZXItYm90dG9tOiAwLjEycmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlci1yaWdodDogMC4xMnJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICAgICAgdG9wOiAwLjI1cmVtO1xuICAgICAgICAgIHJpZ2h0OiAtMC43cmVtO1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Q6OmFmdGVyLFxuICAgICAgJi53cm9uZzo6YWZ0ZXIsXG4gICAgICAmLnBhcnRpYWw6OmFmdGVyIHtcbiAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgICAgICB0b3A6IDAuNTI1cmVtO1xuICAgICAgICByaWdodDogLTAuN3JlbTtcbiAgICAgICAgaGVpZ2h0OiAwLjM3NXJlbTtcbiAgICAgICAgd2lkdGg6IDAuMzc1cmVtO1xuICAgICAgICBib3JkZXItcmFkaXVzOiAwLjM3NXJlbTtcbiAgICAgIH1cbiAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tY29ycmVjdC1iZyk7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgICYud3Jvbmcge1xuICAgICAgICAmOjphZnRlciB7XG4gICAgICAgICAgLS13cm9uZy1iZzogdmFyKC0tcXVtbC1jb2xvci1kYW5nZXIpO1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXdyb25nLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgIC0tcGFydGlhbC1iZzogbGluZWFyLWdyYWRpZW50KFxuICAgICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDAlLFxuICAgICAgICAgICAgcmdiYSg3MSwgMTY0LCAxMjgsIDEpIDUwJSxcbiAgICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgICAgcmdiYSgyNDksIDEyMiwgMTE2LCAxKSAxMDAlXG4gICAgICAgICAgKTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hdHRlbXB0ZWQsXG4gICAgICAmLnBhcnRpYWwge1xuICAgICAgICBsYWJlbCB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgICAuc2VjdGlvbiBsYWJlbCB7XG4gICAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDAuMjVyZW07XG4gICAgICB3aWR0aDogMS4yNXJlbTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBoZWlnaHQ6IDEuMjVyZW07XG4gICAgICBkaXNwbGF5OiBmbGV4O1xuICAgICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICAgIGp1c3RpZnktY29udGVudDogY2VudGVyO1xuICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICBib3JkZXI6IDAuMDMxMjVyZW0gc29saWQgdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgIG1hcmdpbi1ib3R0b206IDIuMjVyZW07XG4gICAgICBjdXJzb3I6IHBvaW50ZXI7XG5cbiAgICAgICYucmVxdWlyZXNTdWJtaXQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5hY3RpdmUsXG4gICAgICAmOmhvdmVyLFxuICAgICAgJjpmb2N1cyB7XG4gICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgICAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXF1ZXN0aW9uLWJnKTtcbiAgICAgICAgICB6LWluZGV4OiAtMTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgJi5za2lwcGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXNraXBwZWQpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICB9XG4gICAgICAmLnVuYXR0ZW1wdGVkIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wMzEyNXJlbSBzb2xpZCB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtdW5hdHRlbXB0ZWQpO1xuICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICB9XG4gICAgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIHtcbiAgICAgIGRpc3BsYXk6IG5vbmU7XG4gICAgfVxuICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXSB+IHVsIHtcbiAgICAgIGhlaWdodDogMDtcbiAgICAgIHRyYW5zZm9ybTogc2NhbGVZKDApO1xuICAgIH1cbiAgICBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICAgIGhlaWdodDogMTAwJTtcbiAgICAgIHRyYW5zZm9ybS1vcmlnaW46IHRvcDtcbiAgICAgIHRyYW5zaXRpb246IHRyYW5zZm9ybSAwLjJzIGVhc2Utb3V0O1xuICAgICAgdHJhbnNmb3JtOiBzY2FsZVkoMSk7XG4gICAgfVxuICAgIC5zZWN0aW9uIHtcbiAgICAgIGlucHV0W3R5cGU9XCJjaGVja2JveFwiXTpjaGVja2VkIH4gbGFiZWwge1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgfVxuICAgIH1cbiAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXF1bWwtcXVlc3Rpb24tYmcpO1xuICAgICAgYm9yZGVyLXJhZGl1czogNTAlO1xuICAgICAgd2lkdGg6IDEuMjVyZW07XG4gICAgICBwYWRkaW5nOiAwLjI1cmVtO1xuICAgICAgaGVpZ2h0OiAxLjI1cmVtO1xuICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgICBqdXN0aWZ5LWNvbnRlbnQ6IGNlbnRlcjtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHJnYmEoMjA0LCAyMDQsIDIwNCwgMSk7XG4gICAgICBtYXJnaW4tYm90dG9tOiAyLjI1cmVtO1xuICAgICAgY3Vyc29yOiBwb2ludGVyO1xuICAgICAgJi5yZXF1aXJlc1N1Ym1pdCB7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICB9XG4gICAgICB9XG5cbiAgICAgICYucHJvZ3Jlc3NCYXItYm9yZGVyLFxuICAgICAgLmFjdGl2ZSxcbiAgICAgICYuYXR0LWNvbG9yIHtcbiAgICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICBib3JkZXI6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIH1cblxuICAgICAgJi5pbmZvLXBhZ2Uge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICB9XG4gICAgICAmLnNraXBwZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc2tpcHBlZCk7XG4gICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC1za2lwcGVkKTtcbiAgICAgICAgJjpob3ZlciB7XG4gICAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKSAhaW1wb3J0YW50O1xuICAgICAgICB9XG4gICAgICB9XG4gICAgICAmLnBhcnRpYWwsXG4gICAgICAmLndyb25nLFxuICAgICAgJi5jb3JyZWN0IHtcbiAgICAgICAgY29sb3I6IHZhcigtLXdoaXRlKTtcbiAgICAgICAgYm9yZGVyOiAwcHggc29saWQgdHJhbnNwYXJlbnQ7XG4gICAgICB9XG4gICAgICAmLmNvcnJlY3Qge1xuICAgICAgICAtLWNvcnJlY3QtYmc6IHZhcigtLXF1bWwtY29sb3Itc3VjY2Vzcyk7XG4gICAgICAgIGJhY2tncm91bmQ6IHZhcigtLWNvcnJlY3QtYmcpO1xuICAgICAgfVxuICAgICAgJi53cm9uZyB7XG4gICAgICAgIC0td3JvbmctYmc6IHZhcigtLXF1bWwtY29sb3ItZGFuZ2VyKTtcbiAgICAgICAgYmFja2dyb3VuZDogdmFyKC0td3JvbmctYmcpO1xuICAgICAgfVxuICAgICAgJi5wYXJ0aWFsIHtcbiAgICAgICAgLS1wYXJ0aWFsLWJnOiBsaW5lYXItZ3JhZGllbnQoXG4gICAgICAgICAgMTgwZGVnLFxuICAgICAgICAgIHJnYmEoNzEsIDE2NCwgMTI4LCAxKSAwJSxcbiAgICAgICAgICByZ2JhKDcxLCAxNjQsIDEyOCwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgNTAlLFxuICAgICAgICAgIHJnYmEoMjQ5LCAxMjIsIDExNiwgMSkgMTAwJVxuICAgICAgICApO1xuICAgICAgICBiYWNrZ3JvdW5kOiB2YXIoLS1wYXJ0aWFsLWJnKTtcbiAgICAgIH1cbiAgICAgICYudW5hdHRlbXB0ZWQge1xuICAgICAgICBjb2xvcjogdmFyKC0tcXVtbC1zY29yZWJvYXJkLXVuYXR0ZW1wdGVkKTtcbiAgICAgICAgYm9yZGVyOiAwLjAzMTI1cmVtIHNvbGlkIHZhcigtLXF1bWwtc2NvcmVib2FyZC11bmF0dGVtcHRlZCk7XG4gICAgICAgICY6aG92ZXIge1xuICAgICAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgICAgIGNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgICAgfVxuICAgICAgfVxuICAgIH1cbiAgfVxufVxuXG4uY3VycmVudC1zbGlkZSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLXNjb3JlYm9hcmQtc3ViLXRpdGxlKTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgZm9udC13ZWlnaHQ6IDkwMDtcbiAgbGV0dGVyLXNwYWNpbmc6IDA7XG59XG5cbkBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNDgwcHgpIHtcbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQge1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAgb3ZlcmZsb3cteDogYXV0bztcbiAgICBvdmVyZmxvdy15OiBoaWRkZW47XG4gICAgd2lkdGg6IDkwJTtcbiAgICBoZWlnaHQ6IDIuNXJlbTtcbiAgICBwYWRkaW5nOiAxcmVtIDAgMDtcbiAgICBtYXJnaW46IGF1dG87XG4gICAgbGVmdDogMDtcbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlOiBub25lO1xuICAgICAgcGFkZGluZzogMDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgIGRpc3BsYXk6IGZsZXg7XG4gICAgICBoZWlnaHQ6IDEuNXJlbTtcbiAgICAgIG1hcmdpbi10b3A6IDA7XG4gICAgICAuc2hvd0ZlZWRCYWNrLXByb2dyZXNzQmFyIHtcbiAgICAgICAgbWFyZ2luLXJpZ2h0OiAyLjI1cmVtO1xuICAgICAgICB6LWluZGV4OiAxO1xuXG4gICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgbWFyZ2luLXJpZ2h0OiAwcHg7XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zaW5nbGVDb250ZW50IHtcbiAgICAgICAgZGlzcGxheTogZmxleDtcbiAgICAgICAgLnNob3dGZWVkQmFjay1wcm9ncmVzc0JhcjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIH1cbiAgICAgIH1cbiAgICAgIC5zZWN0aW9uIHtcbiAgICAgICAgdWwge1xuICAgICAgICAgIHRvcDogLTEuNzVyZW07XG4gICAgICAgICAgcG9zaXRpb246IGluaGVyaXQ7XG4gICAgICAgICAgbWFyZ2luOiAwLjVyZW0gMi4yNXJlbTtcbiAgICAgICAgICBwYWRkaW5nLWxlZnQ6IDEuMjVyZW07XG4gICAgICAgICAgJjo6YmVmb3JlIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHRyYW5zcGFyZW50O1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLmF0dGVtcHRlZCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuODEyNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgICAgbGVmdDogMC42MjVyZW07XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYuY29ycmVjdCB7XG4gICAgICAgICAgJjo6YWZ0ZXIge1xuICAgICAgICAgICAgY29udGVudDogXCJcIjtcbiAgICAgICAgICAgIHRvcDogLTAuNTI1cmVtO1xuICAgICAgICAgICAgbGVmdDogMC41cmVtO1xuICAgICAgICAgICAgcmlnaHQ6IGF1dG87XG4gICAgICAgICAgfVxuICAgICAgICB9XG4gICAgICAgICYud3Jvbmcge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgICAmLnBhcnRpYWwge1xuICAgICAgICAgICY6OmFmdGVyIHtcbiAgICAgICAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICAgICAgICB0b3A6IC0wLjUyNXJlbTtcbiAgICAgICAgICAgIGxlZnQ6IDAuNXJlbTtcbiAgICAgICAgICAgIHJpZ2h0OiBhdXRvO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuICAgICAgLnNlY3Rpb24gbGFiZWwge1xuICAgICAgICBtYXJnaW4tcmlnaHQ6IDIuMjVyZW07XG4gICAgICAgIG1hcmdpbi1ib3R0b206IDA7XG4gICAgICB9XG4gICAgICAmOjpiZWZvcmUge1xuICAgICAgICBjb250ZW50OiBcIlwiO1xuICAgICAgICB3aWR0aDogMTAwJTtcbiAgICAgICAgaGVpZ2h0OiAwLjA2MjVyZW07XG4gICAgICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICAgICAgbGVmdDogMDtcbiAgICAgICAgdG9wOiA1MCU7XG4gICAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKDAsIC01MCUpO1xuICAgICAgICByaWdodDogMDtcbiAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogcmdiYSgyMDQsIDIwNCwgMjA0LCAwLjUpO1xuICAgICAgICB6LWluZGV4OiAwO1xuICAgICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIH1cbiAgICB9XG4gIH1cbiAgLmxhbnNjYXBlLW1vZGUtcmlnaHQgdWwgaW5wdXRbdHlwZT1cImNoZWNrYm94XCJdIH4gdWwge1xuICAgIHdpZHRoOiAwO1xuICAgIHRyYW5zZm9ybTogc2NhbGVYKDApO1xuICAgIG1hcmdpbjogMDtcbiAgfVxuICAubGFuc2NhcGUtbW9kZS1yaWdodCB1bCBpbnB1dFt0eXBlPVwiY2hlY2tib3hcIl06Y2hlY2tlZCB+IHVsIHtcbiAgICB3aWR0aDogY2FsYygxMDAlIC0gNHJlbSk7XG4gICAgdHJhbnNmb3JtLW9yaWdpbjogbGVmdDtcbiAgICB0cmFuc2l0aW9uOiB0cmFuc2Zvcm0gMC4ycyBlYXNlLW91dDtcbiAgICB0cmFuc2Zvcm06IHNjYWxlWCgxKTtcbiAgICBtYXJnaW46IC0xLjI1cmVtIDNyZW0gMCA0cmVtO1xuICB9XG4gIC5sYW5kc2NhcGUtY2VudGVyIHtcbiAgICBtYXJnaW4tdG9wOiAycmVtO1xuICB9XG5cbiAgLmxhbnNjYXBlLW1vZGUtbGVmdCB7XG4gICAgZGlzcGxheTogbm9uZTtcbiAgfVxuXG4gIC5sYW5kc2NhcGUtbW9kZSB7XG4gICAgZ3JpZC10ZW1wbGF0ZS1hcmVhczpcbiAgICAgIFwicmlnaHQgcmlnaHQgcmlnaHRcIlxuICAgICAgXCJjZW50ZXIgY2VudGVyIGNlbnRlclwiXG4gICAgICBcImxlZnQgbGVmdCBsZWZ0XCI7XG4gIH1cbn1cblxuLnF1bWwtdGltZXIge1xuICBwYWRkaW5nOiAwLjVyZW07XG59XG5cbi5xdW1sLWhlYWRlci10ZXh0IHtcbiAgbWFyZ2luOiAwLjVyZW07XG4gIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgdGV4dC1vdmVyZmxvdzogZWxsaXBzaXM7XG4gIG92ZXJmbG93OiBoaWRkZW47XG4gIHdoaXRlLXNwYWNlOiBub3dyYXA7XG59XG5cbi5xdW1sLWFycm93LWJ1dHRvbiB7XG4gIGJvcmRlci1yYWRpdXM6IDI4JTtcbiAgZm9udC1zaXplOiAwJTtcbiAgb3V0bGluZTogbm9uZTtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gIHBhZGRpbmc6IDAuNXJlbTtcbn1cblxuLmluZm8tcG9wdXAge1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIHRvcDogMTglO1xuICByaWdodDogMTAlO1xuICBmb250LXNpemU6IDAuODc1cmVtO1xuICAvLyBmb250LWZhbWlseTogbm90by1zYW5zOyAvL05PU09OQVJcbiAgYm94LXNoYWRvdzogMCAwLjEyNXJlbSAwLjg3NXJlbSAwIHJnYmEoMCwgMCwgMCwgMC4xKTtcbiAgcGFkZGluZzogMC43NXJlbTtcbn1cblxuLnF1bWwtbWVudSB7XG4gIHdpZHRoOiAxLjVyZW07XG4gIGhlaWdodDogMS41cmVtO1xufVxuXG4ucXVtbC1jYXJkIHtcbiAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0td2hpdGUpO1xuICBwYWRkaW5nOiAxLjI1cmVtO1xuICBib3gtc2hhZG93OiAwIDAuMjVyZW0gMC41cmVtIDAgcmdiYSgwLCAwLCAwLCAwLjIpO1xuICB3aWR0aDogMjUlO1xuICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gIGxlZnQ6IDM3JTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xuICB0b3A6IDI1JTtcbiAgei1pbmRleDogMjtcbn1cblxuLnF1bWwtY2FyZC10aXRsZSB7XG4gIGZvbnQtc2l6ZTogMS4yNXJlbTtcbiAgdGV4dC1hbGlnbjogY2VudGVyO1xufVxuXG4ucXVtbC1jYXJkLWJvZHkgLndyb25nIHtcbiAgY29sb3I6IHJlZDtcbn1cblxuLnF1bWwtY2FyZC1ib2R5IC5yaWdodCB7XG4gIGNvbG9yOiBncmVlbjtcbn1cblxuLnF1bWwtY2FyZC1idXR0b24tc2VjdGlvbiAuYnV0dG9uLWNvbnRhaW5lciBidXR0b24ge1xuICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgYm9yZGVyLWNvbG9yOiB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgb3V0bGluZTogbm9uZTtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgcGFkZGluZzogMC4yNXJlbSAxLjVyZW07XG59XG5cbi5xdW1sLWNhcmQtYnV0dG9uLXNlY3Rpb24gLmJ1dHRvbi1jb250YWluZXIge1xuICB3aWR0aDogNDAlO1xuICBkaXNwbGF5OiBpbmxpbmU7XG4gIHBhZGRpbmctcmlnaHQ6IDAuNzVyZW07XG59XG5cbjo6bmctZGVlcCB7XG4gIC5jYXJvdXNlbC5zbGlkZSB7XG4gICAgYS5sZWZ0LmNhcm91c2VsLWNvbnRyb2wuY2Fyb3VzZWwtY29udHJvbC1wcmV2LFxuICAgIC5jYXJvdXNlbC1jb250cm9sLmNhcm91c2VsLWNvbnRyb2wtbmV4dCB7XG4gICAgICBkaXNwbGF5OiBub25lO1xuICAgIH1cbiAgfVxuXG4gIC5jYXJvdXNlbC1pdGVtIHtcbiAgICBwZXJzcGVjdGl2ZTogdW5zZXQ7XG4gIH1cbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbiAgbWFyZ2luLXRvcDogLTIuNXJlbTtcbn1cblxuLnBvdHJhaXQtaGVhZGVyLXRvcCAud3JhcHBlciB7XG4gIGRpc3BsYXk6IGdyaWQ7XG4gIGdyaWQtdGVtcGxhdGUtY29sdW1uczogMWZyIDE1ZnI7XG59XG5cbi5wb3RyYWl0LWhlYWRlci10b3AgLnF1bWwtbWVudSB7XG4gIGNvbG9yOiB2YXIoLS1xdW1sLWhlZGVyLXRleHQtY29sb3IpO1xuICBmb250LXNpemU6IDEuNXJlbTtcbiAgcGFkZGluZy1sZWZ0OiAxLjI1cmVtO1xuICBtYXJnaW4tdG9wOiAwLjI1cmVtO1xufVxuXG4ucG90cmFpdC1oZWFkZXItdG9wIC5xdW1sLWhlYWRlci10ZXh0IHtcbiAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgY29sb3I6IHZhcigtLXF1bWwtaGVkZXItdGV4dC1jb2xvcik7XG59XG5cbi5yb3cge1xuICBtYXJnaW4tcmlnaHQ6IDBweDtcbiAgbWFyZ2luLWxlZnQ6IDBweDtcbn1cblxuLnBvcnRyYWl0LWhlYWRlciB7XG4gIHZpc2liaWxpdHk6IGhpZGRlbjtcbn1cblxuLmltYWdlLXZpZXdlciB7XG4gICZfX292ZXJsYXksXG4gICZfX2NvbnRhaW5lcixcbiAgJl9fY2xvc2UsXG4gICZfX3pvb20ge1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgfVxuXG4gICZfX292ZXJsYXkge1xuICAgIHdpZHRoOiAxMDAlO1xuICAgIGhlaWdodDogMTAwJTtcbiAgICBiYWNrZ3JvdW5kOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHotaW5kZXg6IDExMTExO1xuICB9XG5cbiAgJl9fY29udGFpbmVyIHtcbiAgICBiYWNrZ3JvdW5kLWNvbG9yOiB2YXIoLS1xdW1sLWNvbG9yLXByaW1hcnktY29udHJhc3QpO1xuICAgIHRvcDogNTAlO1xuICAgIGxlZnQ6IDUwJTtcbiAgICB0cmFuc2Zvcm06IHRyYW5zbGF0ZSgtNTAlLCAtNTAlKTtcbiAgICB6LWluZGV4OiAxMTExMTtcbiAgICB3aWR0aDogODAlO1xuICAgIGhlaWdodDogODAlO1xuICB9XG5cbiAgJl9faW1nIHtcbiAgICB3aWR0aDogMTAwJTtcbiAgICBoZWlnaHQ6IDEwMCU7XG4gIH1cblxuICAmX19jbG9zZSB7XG4gICAgdG9wOiAxcmVtO1xuICAgIHJpZ2h0OiAxcmVtO1xuICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgei1pbmRleDogOTk5OTk5O1xuICAgIGJhY2tncm91bmQ6IHJnYmEoMCwgMCwgMCwgMC41KTtcbiAgICBib3JkZXItcmFkaXVzOiAxMDAlO1xuICAgIHdpZHRoOiAzcmVtO1xuICAgIGhlaWdodDogM3JlbTtcbiAgICBwb3NpdGlvbjogaW5oZXJpdDtcblxuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyNzE1XCI7XG4gICAgICBjb2xvcjogdmFyKC0td2hpdGUpO1xuICAgICAgZm9udC1zaXplOiAycmVtO1xuICAgIH1cblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZDogcmdiYSgwLCAwLCAwLCAxKTtcbiAgICB9XG4gIH1cblxuICAmX196b29tIHtcbiAgICBib3R0b206IDFyZW07XG4gICAgcmlnaHQ6IDFyZW07XG4gICAgd2lkdGg6IDIuNXJlbTtcbiAgICBoZWlnaHQ6IGF1dG87XG4gICAgYm9yZGVyLXJhZGl1czogMC41cmVtO1xuICAgIGJhY2tncm91bmQ6IHZhcigtLXdoaXRlKTtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGZsZXgtZGlyZWN0aW9uOiBjb2x1bW47XG4gICAgYWxpZ24taXRlbXM6IGNlbnRlcjtcbiAgICBvdmVyZmxvdzogaGlkZGVuO1xuICAgIHotaW5kZXg6IDk5OTk5O1xuICAgIHBvc2l0aW9uOiBpbmhlcml0O1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtem9vbS1idG4tdHh0KTtcbiAgfVxuXG4gICZfX3pvb21pbixcbiAgJl9fem9vbW91dCB7XG4gICAgdGV4dC1hbGlnbjogY2VudGVyO1xuICAgIGhlaWdodDogMi41cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICB3aWR0aDogMi41cmVtO1xuICAgIGN1cnNvcjogcG9pbnRlcjtcblxuICAgICY6aG92ZXIge1xuICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC16b29tLWJ0bi1ob3Zlcik7XG4gICAgfVxuXG4gICAgJjo6YWZ0ZXIge1xuICAgICAgZm9udC1zaXplOiAxLjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgICB0b3A6IDUwJTtcbiAgICAgIGxlZnQ6IDUwJTtcbiAgICAgIHRyYW5zZm9ybTogdHJhbnNsYXRlKC01MCUsIC01MCUpO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21pbiB7XG4gICAgYm9yZGVyLWJvdHRvbTogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG5cbiAgICAmOjphZnRlciB7XG4gICAgICBjb250ZW50OiBcIlxcMDAyQlwiO1xuICAgIH1cbiAgfVxuXG4gICZfX3pvb21vdXQge1xuICAgICY6OmFmdGVyIHtcbiAgICAgIGNvbnRlbnQ6IFwiXFwyMjEyXCI7XG4gICAgfVxuICB9XG59XG5cbi8qIGVkaXRvciBjc3MgKi9cbjo6bmctZGVlcCB7XG4gIHF1bWwtYW5zIHtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgc3ZnIGNpcmNsZSB7XG4gICAgICBmaWxsOiB2YXIoLS1xdW1sLXpvb20tYnRuLXR4dCk7XG4gICAgfVxuICB9XG5cbiAgLm1hZ25pZnktaWNvbiB7XG4gICAgcG9zaXRpb246IGFic29sdXRlO1xuICAgIHJpZ2h0OiAwO1xuICAgIGJvdHRvbTogMDtcbiAgICB3aWR0aDogMS41cmVtO1xuICAgIGhlaWdodDogMS41cmVtO1xuICAgIGJvcmRlci10b3AtbGVmdC1yYWRpdXM6IDAuNXJlbTtcbiAgICBjdXJzb3I6IHBvaW50ZXI7XG4gICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tcXVtbC1jb2xvci1wcmltYXJ5LWNvbnRyYXN0KTtcbiAgfVxuXG4gIC5tYWduaWZ5LWljb246OmFmdGVyIHtcbiAgICBjb250ZW50OiBcIlwiO1xuICAgIHBvc2l0aW9uOiBhYnNvbHV0ZTtcbiAgICBib3R0b206IDAuMTI1cmVtO1xuICAgIHJpZ2h0OiAwLjEyNXJlbTtcbiAgICB6LWluZGV4OiAxO1xuICAgIHdpZHRoOiAxcmVtO1xuICAgIGhlaWdodDogMXJlbTtcbiAgICBiYWNrZ3JvdW5kLWltYWdlOiB1cmwoXCJkYXRhOmltYWdlL3N2Zyt4bWwsJTNDJTNGeG1sIHZlcnNpb249JzEuMCclM0YlM0UlM0NzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB4bWxuczp4bGluaz0naHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluaycgeG1sbnM6c3ZnanM9J2h0dHA6Ly9zdmdqcy5jb20vc3ZnanMnIHZlcnNpb249JzEuMScgd2lkdGg9JzUxMicgaGVpZ2h0PSc1MTInIHg9JzAnIHk9JzAnIHZpZXdCb3g9JzAgMCAzNy4xNjYgMzcuMTY2JyBzdHlsZT0nZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MTIgNTEyJyB4bWw6c3BhY2U9J3ByZXNlcnZlJyBjbGFzcz0nJyUzRSUzQ2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0NwYXRoIGQ9J00zNS44MjksMzIuMDQ1bC02LjgzMy02LjgzM2MtMC41MTMtMC41MTMtMS4xNjctMC43ODgtMS44MzYtMC44NTNjMi4wNi0yLjU2NywzLjI5OC01LjgxOSwzLjI5OC05LjM1OSBjMC04LjI3MS02LjcyOS0xNS0xNS0xNWMtOC4yNzEsMC0xNSw2LjcyOS0xNSwxNWMwLDguMjcxLDYuNzI5LDE1LDE1LDE1YzMuMTIxLDAsNi4wMjEtMC45Niw4LjQyNC0yLjU5OCBjMC4wMTgsMC43NDQsMC4zMDUsMS40ODIsMC44NzIsMi4wNTJsNi44MzMsNi44MzNjMC41ODUsMC41ODYsMS4zNTQsMC44NzksMi4xMjEsMC44NzlzMS41MzYtMC4yOTMsMi4xMjEtMC44NzkgQzM3LjAwMSwzNS4xMTYsMzcuMDAxLDMzLjIxNywzNS44MjksMzIuMDQ1eiBNMTUuNDU4LDI1Yy01LjUxNCwwLTEwLTQuNDg0LTEwLTEwYzAtNS41MTQsNC40ODYtMTAsMTAtMTBjNS41MTQsMCwxMCw0LjQ4NiwxMCwxMCBDMjUuNDU4LDIwLjUxNiwyMC45NzIsMjUsMTUuNDU4LDI1eiBNMjIuMzM0LDE1YzAsMS4xMDQtMC44OTYsMi0yLDJoLTIuNzV2Mi43NWMwLDEuMTA0LTAuODk2LDItMiwycy0yLTAuODk2LTItMlYxN2gtMi43NSBjLTEuMTA0LDAtMi0wLjg5Ni0yLTJzMC44OTYtMiwyLTJoMi43NXYtMi43NWMwLTEuMTA0LDAuODk2LTIsMi0yczIsMC44OTYsMiwyVjEzaDIuNzVDMjEuNDM4LDEzLDIyLjMzNCwxMy44OTUsMjIuMzM0LDE1eicgZmlsbD0nJTIzZmZmZmZmJyBkYXRhLW9yaWdpbmFsPSclMjMwMDAwMDAnIHN0eWxlPScnIGNsYXNzPScnLyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnJTNFJTNDL2clM0UlM0NnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyclM0UlM0MvZyUzRSUzQ2cgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyUzRSUzQy9nJTNFJTNDL2clM0UlM0Mvc3ZnJTNFJTBBXCIpO1xuICAgIGJhY2tncm91bmQtc2l6ZTogY292ZXI7XG4gICAgYmFja2dyb3VuZC1yZXBlYXQ6IG5vLXJlcGVhdDtcbiAgICBiYWNrZ3JvdW5kLXBvc2l0aW9uOiBjZW50ZXI7XG4gIH1cblxuICAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2Uge1xuICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLXF1bWwtYnRuLWJvcmRlcik7XG4gICAgb3ZlcmZsb3c6IGhpZGRlbjtcbiAgICBib3JkZXItcmFkaXVzOiAwLjI1cmVtO1xuICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAvLyB3aWR0aDogNy41cmVtO1xuICAgIC8vIGhlaWdodDogNy41cmVtO1xuICB9XG5cbiAgLnNvbHV0aW9ucyAuc29sdXRpb24tb3B0aW9ucyBmaWd1cmUuaW1hZ2UsXG4gIC5pbWFnZS12aWV3ZXJfX292ZXJsYXkgLmltYWdlLXZpZXdlcl9fY29udGFpbmVyIHtcbiAgICBkaXNwbGF5OiBmbGV4O1xuICAgIGFsaWduLWl0ZW1zOiBjZW50ZXI7XG4gICAganVzdGlmeS1jb250ZW50OiBjZW50ZXI7XG5cbiAgICAucG9ydHJhaXQge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IDEwMCU7XG4gICAgfVxuXG4gICAgLm5ldXRyYWwge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1heC13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgd2lkdGg6IDEwMCU7XG4gICAgICB9XG5cbiAgICAgIEBtZWRpYSBvbmx5IHNjcmVlbiBhbmQgKG1pbi13aWR0aDogNzY4cHgpIHtcbiAgICAgICAgaGVpZ2h0OiAxMDAlO1xuICAgICAgfVxuICAgIH1cblxuICAgIC5sYW5kc2NhcGUge1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW1jcSxcbiAgLnF1bWwtc2EsXG4gIHF1bWwtc2EsXG4gIHF1bWwtbWNxLXNvbHV0aW9ucyB7XG4gICAgLm1jcS10aXRsZSB7XG4gICAgICBjb2xvcjogdmFyKC0tcXVtbC1tY3EtdGl0bGUtdHh0KTtcblxuICAgICAgcCB7XG4gICAgICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gICAgICB9XG4gICAgICBAbWVkaWEgb25seSBzY3JlZW4gYW5kIChtYXgtd2lkdGg6IDQ4MHB4KSB7XG4gICAgICAgIG1hcmdpbi10b3A6IDFyZW07XG4gICAgICB9XG4gICAgfVxuXG4gICAgLnF1bWwtbWNxLS1xdWVzdGlvbiB7XG4gICAgICBwIHtcbiAgICAgICAgLy8gbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICAucXVtbC1tY3EtLW9wdGlvbiB7XG4gICAgICAucXVtbC1tY3Etb3B0aW9uLWNhcmQgcDpmaXJzdC1jaGlsZCxcbiAgICAgIC5xdW1sLW1jcS1vcHRpb24tY2FyZCBwOmxhc3QtY2hpbGQge1xuICAgICAgICBtYXJnaW4tYm90dG9tOiAwO1xuICAgICAgfVxuICAgIH1cbiAgfVxuICBxdW1sLW1jcS1zb2x1dGlvbnMge1xuICAgIGZpZ3VyZS5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1LFxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNTAsXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS03NSxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCxcbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLW9yaWdpbmFsIHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgLnNvbHV0aW9uLW9wdGlvbnMgcCB7XG4gICAgICBtYXJnaW4tYm90dG9tOiAxcmVtO1xuICAgIH1cbiAgfVxuXG4gIC5xdW1sLW9wdGlvbiAub3B0aW9uIHAge1xuICAgIHdvcmQtYnJlYWs6IGJyZWFrLXdvcmQ7XG4gIH1cbn1cblxuLmVuZFBhZ2UtY29udGFpbmVyLWhlaWdodCB7XG4gIGhlaWdodDogMTAwJTtcbn1cbi5zY29yZWJvYXJkLXNlY3Rpb25zIHtcbiAgZGlzcGxheTogY29udGVudHM7XG4gIGxpIHtcbiAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgei1pbmRleDogMjtcbiAgfVxufVxuLmhvdmVyLWVmZmVjdCB7XG4gICY6aG92ZXIsXG4gICY6Zm9jdXMsXG4gICYucHJvZ3Jlc3NCYXItYm9yZGVyIHtcbiAgICAmOjphZnRlciB7XG4gICAgICBib3JkZXI6IDFweCBzb2xpZCB2YXIoLS1wcmltYXJ5LWNvbG9yKTtcbiAgICAgIGNvbnRlbnQ6IFwiXCI7XG4gICAgICB3aWR0aDogMS42NXJlbTtcbiAgICAgIGhlaWdodDogMS42NXJlbTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IDUwJTtcbiAgICAgIHBhZGRpbmc6IDAuMjVyZW07XG4gICAgICBwb3NpdGlvbjogYWJzb2x1dGU7XG4gICAgfVxuICB9XG59XG5cbi5tdGYge1xuICBtYXJnaW4tdG9wOiAycmVtO1xufSJdLCJzb3VyY2VSb290IjoiIn0= */", ":root {\n --quml-mcq-title-txt: #131415;\n}\n\n .startpage__instr-desc .mcq-title, .quml-mcq .mcq-title, .quml-sa .mcq-title, quml-sa .mcq-title, quml-mcq-solutions .mcq-title {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc .fs-8, .startpage__instr-desc .fs-9, .startpage__instr-desc .fs-10, .startpage__instr-desc .fs-11, .startpage__instr-desc .fs-12, .startpage__instr-desc .fs-13, .startpage__instr-desc .fs-14, .startpage__instr-desc .fs-15, .startpage__instr-desc .fs-16, .startpage__instr-desc .fs-17, .startpage__instr-desc .fs-18, .startpage__instr-desc .fs-19, .startpage__instr-desc .fs-20, .startpage__instr-desc .fs-21, .startpage__instr-desc .fs-22, .startpage__instr-desc .fs-23, .startpage__instr-desc .fs-24, .startpage__instr-desc .fs-25, .startpage__instr-desc .fs-26, .startpage__instr-desc .fs-27, .startpage__instr-desc .fs-28, .startpage__instr-desc .fs-29, .startpage__instr-desc .fs-30, .startpage__instr-desc .fs-36, .quml-mcq .fs-8, .quml-mcq .fs-9, .quml-mcq .fs-10, .quml-mcq .fs-11, .quml-mcq .fs-12, .quml-mcq .fs-13, .quml-mcq .fs-14, .quml-mcq .fs-15, .quml-mcq .fs-16, .quml-mcq .fs-17, .quml-mcq .fs-18, .quml-mcq .fs-19, .quml-mcq .fs-20, .quml-mcq .fs-21, .quml-mcq .fs-22, .quml-mcq .fs-23, .quml-mcq .fs-24, .quml-mcq .fs-25, .quml-mcq .fs-26, .quml-mcq .fs-27, .quml-mcq .fs-28, .quml-mcq .fs-29, .quml-mcq .fs-30, .quml-mcq .fs-36, .quml-sa .fs-8, .quml-sa .fs-9, .quml-sa .fs-10, .quml-sa .fs-11, .quml-sa .fs-12, .quml-sa .fs-13, .quml-sa .fs-14, .quml-sa .fs-15, .quml-sa .fs-16, .quml-sa .fs-17, .quml-sa .fs-18, .quml-sa .fs-19, .quml-sa .fs-20, .quml-sa .fs-21, .quml-sa .fs-22, .quml-sa .fs-23, .quml-sa .fs-24, .quml-sa .fs-25, .quml-sa .fs-26, .quml-sa .fs-27, .quml-sa .fs-28, .quml-sa .fs-29, .quml-sa .fs-30, .quml-sa .fs-36, quml-sa .fs-8, quml-sa .fs-9, quml-sa .fs-10, quml-sa .fs-11, quml-sa .fs-12, quml-sa .fs-13, quml-sa .fs-14, quml-sa .fs-15, quml-sa .fs-16, quml-sa .fs-17, quml-sa .fs-18, quml-sa .fs-19, quml-sa .fs-20, quml-sa .fs-21, quml-sa .fs-22, quml-sa .fs-23, quml-sa .fs-24, quml-sa .fs-25, quml-sa .fs-26, quml-sa .fs-27, quml-sa .fs-28, quml-sa .fs-29, quml-sa .fs-30, quml-sa .fs-36, quml-mcq-solutions .fs-8, quml-mcq-solutions .fs-9, quml-mcq-solutions .fs-10, quml-mcq-solutions .fs-11, quml-mcq-solutions .fs-12, quml-mcq-solutions .fs-13, quml-mcq-solutions .fs-14, quml-mcq-solutions .fs-15, quml-mcq-solutions .fs-16, quml-mcq-solutions .fs-17, quml-mcq-solutions .fs-18, quml-mcq-solutions .fs-19, quml-mcq-solutions .fs-20, quml-mcq-solutions .fs-21, quml-mcq-solutions .fs-22, quml-mcq-solutions .fs-23, quml-mcq-solutions .fs-24, quml-mcq-solutions .fs-25, quml-mcq-solutions .fs-26, quml-mcq-solutions .fs-27, quml-mcq-solutions .fs-28, quml-mcq-solutions .fs-29, quml-mcq-solutions .fs-30, quml-mcq-solutions .fs-36 {\n line-height: normal;\n}\n .startpage__instr-desc .fs-8, .quml-mcq .fs-8, .quml-sa .fs-8, quml-sa .fs-8, quml-mcq-solutions .fs-8 {\n font-size: 0.5rem;\n}\n .startpage__instr-desc .fs-9, .quml-mcq .fs-9, .quml-sa .fs-9, quml-sa .fs-9, quml-mcq-solutions .fs-9 {\n font-size: 0.563rem;\n}\n .startpage__instr-desc .fs-10, .quml-mcq .fs-10, .quml-sa .fs-10, quml-sa .fs-10, quml-mcq-solutions .fs-10 {\n font-size: 0.625rem;\n}\n .startpage__instr-desc .fs-11, .quml-mcq .fs-11, .quml-sa .fs-11, quml-sa .fs-11, quml-mcq-solutions .fs-11 {\n font-size: 0.688rem;\n}\n .startpage__instr-desc .fs-12, .quml-mcq .fs-12, .quml-sa .fs-12, quml-sa .fs-12, quml-mcq-solutions .fs-12 {\n font-size: 0.75rem;\n}\n .startpage__instr-desc .fs-13, .quml-mcq .fs-13, .quml-sa .fs-13, quml-sa .fs-13, quml-mcq-solutions .fs-13 {\n font-size: 0.813rem;\n}\n .startpage__instr-desc .fs-14, .quml-mcq .fs-14, .quml-sa .fs-14, quml-sa .fs-14, quml-mcq-solutions .fs-14 {\n font-size: 0.875rem;\n}\n .startpage__instr-desc .fs-15, .quml-mcq .fs-15, .quml-sa .fs-15, quml-sa .fs-15, quml-mcq-solutions .fs-15 {\n font-size: 0.938rem;\n}\n .startpage__instr-desc .fs-16, .quml-mcq .fs-16, .quml-sa .fs-16, quml-sa .fs-16, quml-mcq-solutions .fs-16 {\n font-size: 1rem;\n}\n .startpage__instr-desc .fs-17, .quml-mcq .fs-17, .quml-sa .fs-17, quml-sa .fs-17, quml-mcq-solutions .fs-17 {\n font-size: 1.063rem;\n}\n .startpage__instr-desc .fs-18, .quml-mcq .fs-18, .quml-sa .fs-18, quml-sa .fs-18, quml-mcq-solutions .fs-18 {\n font-size: 1.125rem;\n}\n .startpage__instr-desc .fs-19, .quml-mcq .fs-19, .quml-sa .fs-19, quml-sa .fs-19, quml-mcq-solutions .fs-19 {\n font-size: 1.188rem;\n}\n .startpage__instr-desc .fs-20, .quml-mcq .fs-20, .quml-sa .fs-20, quml-sa .fs-20, quml-mcq-solutions .fs-20 {\n font-size: 1.25rem;\n}\n .startpage__instr-desc .fs-21, .quml-mcq .fs-21, .quml-sa .fs-21, quml-sa .fs-21, quml-mcq-solutions .fs-21 {\n font-size: 1.313rem;\n}\n .startpage__instr-desc .fs-22, .quml-mcq .fs-22, .quml-sa .fs-22, quml-sa .fs-22, quml-mcq-solutions .fs-22 {\n font-size: 1.375rem;\n}\n .startpage__instr-desc .fs-23, .quml-mcq .fs-23, .quml-sa .fs-23, quml-sa .fs-23, quml-mcq-solutions .fs-23 {\n font-size: 1.438rem;\n}\n .startpage__instr-desc .fs-24, .quml-mcq .fs-24, .quml-sa .fs-24, quml-sa .fs-24, quml-mcq-solutions .fs-24 {\n font-size: 1.5rem;\n}\n .startpage__instr-desc .fs-25, .quml-mcq .fs-25, .quml-sa .fs-25, quml-sa .fs-25, quml-mcq-solutions .fs-25 {\n font-size: 1.563rem;\n}\n .startpage__instr-desc .fs-26, .quml-mcq .fs-26, .quml-sa .fs-26, quml-sa .fs-26, quml-mcq-solutions .fs-26 {\n font-size: 1.625rem;\n}\n .startpage__instr-desc .fs-27, .quml-mcq .fs-27, .quml-sa .fs-27, quml-sa .fs-27, quml-mcq-solutions .fs-27 {\n font-size: 1.688rem;\n}\n .startpage__instr-desc .fs-28, .quml-mcq .fs-28, .quml-sa .fs-28, quml-sa .fs-28, quml-mcq-solutions .fs-28 {\n font-size: 1.75rem;\n}\n .startpage__instr-desc .fs-29, .quml-mcq .fs-29, .quml-sa .fs-29, quml-sa .fs-29, quml-mcq-solutions .fs-29 {\n font-size: 1.813rem;\n}\n .startpage__instr-desc .fs-30, .quml-mcq .fs-30, .quml-sa .fs-30, quml-sa .fs-30, quml-mcq-solutions .fs-30 {\n font-size: 1.875rem;\n}\n .startpage__instr-desc .fs-36, .quml-mcq .fs-36, .quml-sa .fs-36, quml-sa .fs-36, quml-mcq-solutions .fs-36 {\n font-size: 2.25rem;\n}\n .startpage__instr-desc .text-left, .quml-mcq .text-left, .quml-sa .text-left, quml-sa .text-left, quml-mcq-solutions .text-left {\n text-align: left;\n}\n .startpage__instr-desc .text-center, .quml-mcq .text-center, .quml-sa .text-center, quml-sa .text-center, quml-mcq-solutions .text-center {\n text-align: center;\n}\n .startpage__instr-desc .text-right, .quml-mcq .text-right, .quml-sa .text-right, quml-sa .text-right, quml-mcq-solutions .text-right {\n text-align: right;\n}\n .startpage__instr-desc .image-style-align-right, .quml-mcq .image-style-align-right, .quml-sa .image-style-align-right, quml-sa .image-style-align-right, quml-mcq-solutions .image-style-align-right {\n float: right;\n text-align: right;\n margin-left: 0.5rem;\n}\n .startpage__instr-desc .image-style-align-left, .quml-mcq .image-style-align-left, .quml-sa .image-style-align-left, quml-sa .image-style-align-left, quml-mcq-solutions .image-style-align-left {\n float: left;\n text-align: left;\n margin-right: 0.5rem;\n}\n .startpage__instr-desc .image, .startpage__instr-desc figure.image, .quml-mcq .image, .quml-mcq figure.image, .quml-sa .image, .quml-sa figure.image, quml-sa .image, quml-sa figure.image, quml-mcq-solutions .image, quml-mcq-solutions figure.image {\n display: table;\n clear: both;\n text-align: center;\n margin: 0.5rem auto;\n position: relative;\n}\n .startpage__instr-desc figure.image.resize-original, .startpage__instr-desc figure.image, .quml-mcq figure.image.resize-original, .quml-mcq figure.image, .quml-sa figure.image.resize-original, .quml-sa figure.image, quml-sa figure.image.resize-original, quml-sa figure.image, quml-mcq-solutions figure.image.resize-original, quml-mcq-solutions figure.image {\n width: auto;\n height: auto;\n overflow: visible;\n}\n .startpage__instr-desc figure.image img, .quml-mcq figure.image img, .quml-sa figure.image img, quml-sa figure.image img, quml-mcq-solutions figure.image img {\n width: auto;\n}\n .startpage__instr-desc figure.image.resize-original img, .quml-mcq figure.image.resize-original img, .quml-sa figure.image.resize-original img, quml-sa figure.image.resize-original img, quml-mcq-solutions figure.image.resize-original img {\n width: auto;\n height: auto;\n}\n .startpage__instr-desc .image img, .quml-mcq .image img, .quml-sa .image img, quml-sa .image img, quml-mcq-solutions .image img {\n display: block;\n margin: 0 auto;\n max-width: 100%;\n min-width: 50px;\n}\n .startpage__instr-desc figure.image.resize-25, .quml-mcq figure.image.resize-25, .quml-sa figure.image.resize-25, quml-sa figure.image.resize-25, quml-mcq-solutions figure.image.resize-25 {\n width: 25%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-50, .quml-mcq figure.image.resize-50, .quml-sa figure.image.resize-50, quml-sa figure.image.resize-50, quml-mcq-solutions figure.image.resize-50 {\n width: 50%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-75, .quml-mcq figure.image.resize-75, .quml-sa figure.image.resize-75, quml-sa figure.image.resize-75, quml-mcq-solutions figure.image.resize-75 {\n width: 75%;\n height: auto;\n}\n .startpage__instr-desc figure.image.resize-100, .quml-mcq figure.image.resize-100, .quml-sa figure.image.resize-100, quml-sa figure.image.resize-100, quml-mcq-solutions figure.image.resize-100 {\n width: 100%;\n height: auto;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n border-right: 0.0625rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table, .startpage__instr-desc figure.table table tr td, .startpage__instr-desc figure.table table tr th, .quml-mcq figure.table table, .quml-mcq figure.table table tr td, .quml-mcq figure.table table tr th, .quml-sa figure.table table, .quml-sa figure.table table tr td, .quml-sa figure.table table tr th, quml-sa figure.table table, quml-sa figure.table table tr td, quml-sa figure.table table tr th, quml-mcq-solutions figure.table table, quml-mcq-solutions figure.table table tr td, quml-mcq-solutions figure.table table tr th {\n border: 0.0625rem solid var(--black);\n border-collapse: collapse;\n}\n .startpage__instr-desc figure.table table, .quml-mcq figure.table table, .quml-sa figure.table table, quml-sa figure.table table, quml-mcq-solutions figure.table table {\n width: 100%;\n background: var(--white);\n border: 0.0625rem solid var(--gray-100);\n box-shadow: none;\n border-radius: 0.25rem 0.25rem 0 0;\n text-align: left;\n color: var(--gray);\n border-collapse: separate;\n border-spacing: 0;\n table-layout: fixed;\n}\n .startpage__instr-desc figure.table table thead tr th, .quml-mcq figure.table table thead tr th, .quml-sa figure.table table thead tr th, quml-sa figure.table table thead tr th, quml-mcq-solutions figure.table table thead tr th {\n font-size: 0.875rem;\n padding: 1rem;\n background-color: var(--primary-100);\n position: relative;\n height: 2.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n font-weight: bold;\n color: var(--primary-color);\n text-transform: uppercase;\n}\n .startpage__instr-desc figure.table table thead tr th:first-child, .quml-mcq figure.table table thead tr th:first-child, .quml-sa figure.table table thead tr th:first-child, quml-sa figure.table table thead tr th:first-child, quml-mcq-solutions figure.table table thead tr th:first-child {\n border-top-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table thead tr th:last-child, .quml-mcq figure.table table thead tr th:last-child, .quml-sa figure.table table thead tr th:last-child, quml-sa figure.table table thead tr th:last-child, quml-mcq-solutions figure.table table thead tr th:last-child {\n border-top-right-radius: 0.25rem;\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr:nth-child(2n), .quml-mcq figure.table table tbody tr:nth-child(2n), .quml-sa figure.table table tbody tr:nth-child(2n), quml-sa figure.table table tbody tr:nth-child(2n), quml-mcq-solutions figure.table table tbody tr:nth-child(2n) {\n background-color: var(--gray-0);\n}\n .startpage__instr-desc figure.table table tbody tr:hover, .quml-mcq figure.table table tbody tr:hover, .quml-sa figure.table table tbody tr:hover, quml-sa figure.table table tbody tr:hover, quml-mcq-solutions figure.table table tbody tr:hover {\n background: var(--primary-0);\n color: rgba(var(--rc-rgba-gray), 0.95);\n cursor: pointer;\n}\n .startpage__instr-desc figure.table table tbody tr td, .quml-mcq figure.table table tbody tr td, .quml-sa figure.table table tbody tr td, quml-sa figure.table table tbody tr td, quml-mcq-solutions figure.table table tbody tr td {\n font-size: 0.875rem;\n padding: 1rem;\n color: var(--gray);\n height: 3.5rem;\n border: 0px;\n border-bottom: 0.0625rem solid var(--gray-100);\n border-right: 0.0625rem solid var(--gray-100);\n word-break: break-word;\n line-height: normal;\n}\n .startpage__instr-desc figure.table table tbody tr td:last-child, .quml-mcq figure.table table tbody tr td:last-child, .quml-sa figure.table table tbody tr td:last-child, quml-sa figure.table table tbody tr td:last-child, quml-mcq-solutions figure.table table tbody tr td:last-child {\n border-right: 0rem solid var(--gray-100);\n}\n .startpage__instr-desc figure.table table tbody tr td p, .quml-mcq figure.table table tbody tr td p, .quml-sa figure.table table tbody tr td p, quml-sa figure.table table tbody tr td p, quml-mcq-solutions figure.table table tbody tr td p {\n margin-bottom: 0px !important;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td, .quml-mcq figure.table table tbody tr:last-child td, .quml-sa figure.table table tbody tr:last-child td, quml-sa figure.table table tbody tr:last-child td, quml-mcq-solutions figure.table table tbody tr:last-child td {\n border-bottom: none;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:first-child, .quml-mcq figure.table table tbody tr:last-child td:first-child, .quml-sa figure.table table tbody tr:last-child td:first-child, quml-sa figure.table table tbody tr:last-child td:first-child, quml-mcq-solutions figure.table table tbody tr:last-child td:first-child {\n border-bottom-left-radius: 0.25rem;\n}\n .startpage__instr-desc figure.table table tbody tr:last-child td:last-child, .quml-mcq figure.table table tbody tr:last-child td:last-child, .quml-sa figure.table table tbody tr:last-child td:last-child, quml-sa figure.table table tbody tr:last-child td:last-child, quml-mcq-solutions figure.table table tbody tr:last-child td:last-child {\n border-bottom-right-radius: 0.25rem;\n}\n .startpage__instr-desc ul, .startpage__instr-desc ol, .quml-mcq ul, .quml-mcq ol, .quml-sa ul, .quml-sa ol, quml-sa ul, quml-sa ol, quml-mcq-solutions ul, quml-mcq-solutions ol {\n margin-top: 0.5rem;\n}\n .startpage__instr-desc ul li, .startpage__instr-desc ol li, .quml-mcq ul li, .quml-mcq ol li, .quml-sa ul li, .quml-sa ol li, quml-sa ul li, quml-sa ol li, quml-mcq-solutions ul li, quml-mcq-solutions ol li {\n margin: 0.5rem;\n font-weight: normal;\n line-height: normal;\n}\n .startpage__instr-desc ul, .quml-mcq ul, .quml-sa ul, quml-sa ul, quml-mcq-solutions ul {\n list-style-type: disc;\n}\n .startpage__instr-desc h1, .startpage__instr-desc h2, .startpage__instr-desc h3, .startpage__instr-desc h4, .startpage__instr-desc h5, .startpage__instr-desc h6, .quml-mcq h1, .quml-mcq h2, .quml-mcq h3, .quml-mcq h4, .quml-mcq h5, .quml-mcq h6, .quml-sa h1, .quml-sa h2, .quml-sa h3, .quml-sa h4, .quml-sa h5, .quml-sa h6, quml-sa h1, quml-sa h2, quml-sa h3, quml-sa h4, quml-sa h5, quml-sa h6, quml-mcq-solutions h1, quml-mcq-solutions h2, quml-mcq-solutions h3, quml-mcq-solutions h4, quml-mcq-solutions h5, quml-mcq-solutions h6 {\n color: var(--primary-color);\n line-height: normal;\n margin-bottom: 1rem;\n}\n .startpage__instr-desc p, .startpage__instr-desc span, .quml-mcq p, .quml-mcq span, .quml-sa p, .quml-sa span, quml-sa p, quml-sa span, quml-mcq-solutions p, quml-mcq-solutions span {\n color: var(--quml-mcq-title-txt);\n}\n .startpage__instr-desc p strong, .startpage__instr-desc p span strong, .quml-mcq p strong, .quml-mcq p span strong, .quml-sa p strong, .quml-sa p span strong, quml-sa p strong, quml-sa p span strong, quml-mcq-solutions p strong, quml-mcq-solutions p span strong {\n font-weight: bold;\n}\n .startpage__instr-desc p span u, .startpage__instr-desc p u, .quml-mcq p span u, .quml-mcq p u, .quml-sa p span u, .quml-sa p u, quml-sa p span u, quml-sa p u, quml-mcq-solutions p span u, quml-mcq-solutions p u {\n text-decoration: underline;\n}\n .startpage__instr-desc p span i, .startpage__instr-desc p i, .quml-mcq p span i, .quml-mcq p i, .quml-sa p span i, .quml-sa p i, quml-sa p span i, quml-sa p i, quml-mcq-solutions p span i, quml-mcq-solutions p i {\n font-style: italic;\n}\n/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly8uL3Byb2plY3RzL3F1bWwtbGlicmFyeS9zcmMvbGliL3N0YXJ0cGFnZS9zYi1ja2VkaXRvci1zdHlsZXMuc2NzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTtFQUNFLDZCQUFBO0FBQ0Y7O0FBVUk7Ozs7O0VBQ0UsZ0NBQUE7QUFITjtBQU1JOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUF3QkUsbUJBQUE7QUE0Rk47QUF6Rkk7Ozs7O0VBQ0UsaUJBQUE7QUErRk47QUE1Rkk7Ozs7O0VBQ0UsbUJBQUE7QUFrR047QUEvRkk7Ozs7O0VBQ0UsbUJBQUE7QUFxR047QUFsR0k7Ozs7O0VBQ0UsbUJBQUE7QUF3R047QUFyR0k7Ozs7O0VBQ0Usa0JBQUE7QUEyR047QUF4R0k7Ozs7O0VBQ0UsbUJBQUE7QUE4R047QUEzR0k7Ozs7O0VBQ0UsbUJBQUE7QUFpSE47QUE5R0k7Ozs7O0VBQ0UsbUJBQUE7QUFvSE47QUFqSEk7Ozs7O0VBQ0UsZUFBQTtBQXVITjtBQXBISTs7Ozs7RUFDRSxtQkFBQTtBQTBITjtBQXZISTs7Ozs7RUFDRSxtQkFBQTtBQTZITjtBQTFISTs7Ozs7RUFDRSxtQkFBQTtBQWdJTjtBQTdISTs7Ozs7RUFDRSxrQkFBQTtBQW1JTjtBQWhJSTs7Ozs7RUFDRSxtQkFBQTtBQXNJTjtBQW5JSTs7Ozs7RUFDRSxtQkFBQTtBQXlJTjtBQXRJSTs7Ozs7RUFDRSxtQkFBQTtBQTRJTjtBQXpJSTs7Ozs7RUFDRSxpQkFBQTtBQStJTjtBQTVJSTs7Ozs7RUFDRSxtQkFBQTtBQWtKTjtBQS9JSTs7Ozs7RUFDRSxtQkFBQTtBQXFKTjtBQWxKSTs7Ozs7RUFDRSxtQkFBQTtBQXdKTjtBQXJKSTs7Ozs7RUFDRSxrQkFBQTtBQTJKTjtBQXhKSTs7Ozs7RUFDRSxtQkFBQTtBQThKTjtBQTNKSTs7Ozs7RUFDRSxtQkFBQTtBQWlLTjtBQTlKSTs7Ozs7RUFDRSxrQkFBQTtBQW9LTjtBQWpLSTs7Ozs7RUFDRSxnQkFBQTtBQXVLTjtBQXBLSTs7Ozs7RUFDRSxrQkFBQTtBQTBLTjtBQXZLSTs7Ozs7RUFDRSxpQkFBQTtBQTZLTjtBQTFLSTs7Ozs7RUFDRSxZQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQWdMTjtBQTdLSTs7Ozs7RUFDRSxXQUFBO0VBQ0EsZ0JBQUE7RUFDQSxvQkFBQTtBQW1MTjtBQWhMSTs7Ozs7Ozs7OztFQUVFLGNBQUE7RUFDQSxXQUFBO0VBQ0Esa0JBQUE7RUFDQSxtQkFBQTtFQUNBLGtCQUFBO0FBMExOO0FBdkxJOzs7Ozs7Ozs7O0VBRUUsV0FBQTtFQUNBLFlBQUE7RUFDQSxpQkFBQTtBQWlNTjtBQTlMSTs7Ozs7RUFDRSxXQUFBO0FBb01OO0FBak1JOzs7OztFQUNFLFdBQUE7RUFDQSxZQUFBO0FBdU1OO0FBcE1JOzs7OztFQUNFLGNBQUE7RUFDQSxjQUFBO0VBQ0EsZUFBQTtFQUNBLGVBQUE7QUEwTU47QUF2TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUE2TU47QUExTUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFnTk47QUE3TUk7Ozs7O0VBQ0UsVUFBQTtFQUNBLFlBQUE7QUFtTk47QUFoTkk7Ozs7O0VBQ0UsV0FBQTtFQUNBLFlBQUE7QUFzTk47QUFuTkk7Ozs7O0VBQ0UsNkNBQUE7QUF5Tk47QUF0Tkk7Ozs7Ozs7Ozs7Ozs7OztFQUdFLG9DQUFBO0VBQ0EseUJBQUE7QUFvT047QUFqT0k7Ozs7O0VBQ0UsV0FBQTtFQUNBLHdCQUFBO0VBQ0EsdUNBQUE7RUFDQSxnQkFBQTtFQUNBLGtDQUFBO0VBQ0EsZ0JBQUE7RUFDQSxrQkFBQTtFQUNBLHlCQUFBO0VBQ0EsaUJBQUE7RUFDQSxtQkFBQTtBQXVPTjtBQW5PVTs7Ozs7RUFVRSxtQkFBQTtFQUNBLGFBQUE7RUFDQSxvQ0FBQTtFQUNBLGtCQUFBO0VBQ0EsY0FBQTtFQUNBLFdBQUE7RUFDQSw4Q0FBQTtFQUNBLDZDQUFBO0VBQ0EsaUJBQUE7RUFDQSwyQkFBQTtFQUNBLHlCQUFBO0FBZ09aO0FBblBZOzs7OztFQUNFLCtCQUFBO0FBeVBkO0FBdFBZOzs7OztFQUNFLGdDQUFBO0VBQ0Esd0NBQUE7QUE0UGQ7QUF4T1U7Ozs7O0VBQ0UsK0JBQUE7QUE4T1o7QUEzT1U7Ozs7O0VBQ0UsNEJBQUE7RUFDQSxzQ0FBQTtFQUNBLGVBQUE7QUFpUFo7QUE5T1U7Ozs7O0VBQ0UsbUJBQUE7RUFDQSxhQUFBO0VBQ0Esa0JBQUE7RUFDQSxjQUFBO0VBQ0EsV0FBQTtFQUNBLDhDQUFBO0VBQ0EsNkNBQUE7RUFDQSxzQkFBQTtFQUNBLG1CQUFBO0FBb1BaO0FBbFBZOzs7OztFQUNFLHdDQUFBO0FBd1BkO0FBclBZOzs7OztFQUNFLDZCQUFBO0FBMlBkO0FBdFBZOzs7OztFQUNFLG1CQUFBO0FBNFBkO0FBMVBjOzs7OztFQUNFLGtDQUFBO0FBZ1FoQjtBQTdQYzs7Ozs7RUFDRSxtQ0FBQTtBQW1RaEI7QUExUEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQW9RTjtBQWxRTTs7Ozs7Ozs7OztFQUNFLGNBQUE7RUFDQSxtQkFBQTtFQUNBLG1CQUFBO0FBNlFSO0FBelFJOzs7OztFQUNFLHFCQUFBO0FBK1FOO0FBNVFJOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7RUFNRSwyQkFBQTtFQUNBLG1CQUFBO0VBQ0EsbUJBQUE7QUFzU047QUFuU0k7Ozs7Ozs7Ozs7RUFFRSxnQ0FBQTtBQTZTTjtBQTFTSTs7Ozs7Ozs7OztFQUVFLGlCQUFBO0FBb1ROO0FBalRJOzs7Ozs7Ozs7O0VBRUUsMEJBQUE7QUEyVE47QUF4VEk7Ozs7Ozs7Ozs7RUFFRSxrQkFBQTtBQWtVTiIsInNvdXJjZXNDb250ZW50IjpbIjo6bmctZGVlcCA6cm9vdCB7XG4gIC0tcXVtbC1tY3EtdGl0bGUtdHh0OiAjMTMxNDE1O1xufVxuXG5cbjo6bmctZGVlcCB7XG5cbiAgLnN0YXJ0cGFnZV9faW5zdHItZGVzYyxcbiAgLnF1bWwtbWNxLFxuICAucXVtbC1zYSxcbiAgcXVtbC1zYSxcbiAgcXVtbC1tY3Etc29sdXRpb25zIHtcbiAgICAubWNxLXRpdGxlIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIC5mcy04LFxuICAgIC5mcy05LFxuICAgIC5mcy0xMCxcbiAgICAuZnMtMTEsXG4gICAgLmZzLTEyLFxuICAgIC5mcy0xMyxcbiAgICAuZnMtMTQsXG4gICAgLmZzLTE1LFxuICAgIC5mcy0xNixcbiAgICAuZnMtMTcsXG4gICAgLmZzLTE4LFxuICAgIC5mcy0xOSxcbiAgICAuZnMtMjAsXG4gICAgLmZzLTIxLFxuICAgIC5mcy0yMixcbiAgICAuZnMtMjMsXG4gICAgLmZzLTI0LFxuICAgIC5mcy0yNSxcbiAgICAuZnMtMjYsXG4gICAgLmZzLTI3LFxuICAgIC5mcy0yOCxcbiAgICAuZnMtMjksXG4gICAgLmZzLTMwLFxuICAgIC5mcy0zNiB7XG4gICAgICBsaW5lLWhlaWdodDogbm9ybWFsO1xuICAgIH1cblxuICAgIC5mcy04IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41cmVtO1xuICAgIH1cblxuICAgIC5mcy05IHtcbiAgICAgIGZvbnQtc2l6ZTogMC41NjNyZW07XG4gICAgfVxuXG4gICAgLmZzLTEwIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42MjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTExIHtcbiAgICAgIGZvbnQtc2l6ZTogMC42ODhyZW07XG4gICAgfVxuXG4gICAgLmZzLTEyIHtcbiAgICAgIGZvbnQtc2l6ZTogMC43NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTMge1xuICAgICAgZm9udC1zaXplOiAwLjgxM3JlbTtcbiAgICB9XG5cbiAgICAuZnMtMTQge1xuICAgICAgZm9udC1zaXplOiAwLjg3NXJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTUge1xuICAgICAgZm9udC1zaXplOiAwLjkzOHJlbTtcbiAgICB9XG5cbiAgICAuZnMtMTYge1xuICAgICAgZm9udC1zaXplOiAxcmVtO1xuICAgIH1cblxuICAgIC5mcy0xNyB7XG4gICAgICBmb250LXNpemU6IDEuMDYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0xOCB7XG4gICAgICBmb250LXNpemU6IDEuMTI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0xOSB7XG4gICAgICBmb250LXNpemU6IDEuMTg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yMCB7XG4gICAgICBmb250LXNpemU6IDEuMjVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIxIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zMTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTIyIHtcbiAgICAgIGZvbnQtc2l6ZTogMS4zNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTIzIHtcbiAgICAgIGZvbnQtc2l6ZTogMS40MzhyZW07XG4gICAgfVxuXG4gICAgLmZzLTI0IHtcbiAgICAgIGZvbnQtc2l6ZTogMS41cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNSB7XG4gICAgICBmb250LXNpemU6IDEuNTYzcmVtO1xuICAgIH1cblxuICAgIC5mcy0yNiB7XG4gICAgICBmb250LXNpemU6IDEuNjI1cmVtO1xuICAgIH1cblxuICAgIC5mcy0yNyB7XG4gICAgICBmb250LXNpemU6IDEuNjg4cmVtO1xuICAgIH1cblxuICAgIC5mcy0yOCB7XG4gICAgICBmb250LXNpemU6IDEuNzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTI5IHtcbiAgICAgIGZvbnQtc2l6ZTogMS44MTNyZW07XG4gICAgfVxuXG4gICAgLmZzLTMwIHtcbiAgICAgIGZvbnQtc2l6ZTogMS44NzVyZW07XG4gICAgfVxuXG4gICAgLmZzLTM2IHtcbiAgICAgIGZvbnQtc2l6ZTogMi4yNXJlbTtcbiAgICB9XG5cbiAgICAudGV4dC1sZWZ0IHtcbiAgICAgIHRleHQtYWxpZ246IGxlZnQ7XG4gICAgfVxuXG4gICAgLnRleHQtY2VudGVyIHtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICB9XG5cbiAgICAudGV4dC1yaWdodCB7XG4gICAgICB0ZXh0LWFsaWduOiByaWdodDtcbiAgICB9XG5cbiAgICAuaW1hZ2Utc3R5bGUtYWxpZ24tcmlnaHQge1xuICAgICAgZmxvYXQ6IHJpZ2h0O1xuICAgICAgdGV4dC1hbGlnbjogcmlnaHQ7XG4gICAgICBtYXJnaW4tbGVmdDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZS1zdHlsZS1hbGlnbi1sZWZ0IHtcbiAgICAgIGZsb2F0OiBsZWZ0O1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIG1hcmdpbi1yaWdodDogMC41cmVtO1xuICAgIH1cblxuICAgIC5pbWFnZSxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgZGlzcGxheTogdGFibGU7XG4gICAgICBjbGVhcjogYm90aDtcbiAgICAgIHRleHQtYWxpZ246IGNlbnRlcjtcbiAgICAgIG1hcmdpbjogMC41cmVtIGF1dG87XG4gICAgICBwb3NpdGlvbjogcmVsYXRpdmU7XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS1vcmlnaW5hbCxcbiAgICBmaWd1cmUuaW1hZ2Uge1xuICAgICAgd2lkdGg6IGF1dG87XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgICBvdmVyZmxvdzogdmlzaWJsZTtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtb3JpZ2luYWwgaW1nIHtcbiAgICAgIHdpZHRoOiBhdXRvO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIC5pbWFnZSBpbWcge1xuICAgICAgZGlzcGxheTogYmxvY2s7XG4gICAgICBtYXJnaW46IDAgYXV0bztcbiAgICAgIG1heC13aWR0aDogMTAwJTtcbiAgICAgIG1pbi13aWR0aDogNTBweDtcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTI1IHtcbiAgICAgIHdpZHRoOiAyNSU7XG4gICAgICBoZWlnaHQ6IGF1dG87XG4gICAgfVxuXG4gICAgZmlndXJlLmltYWdlLnJlc2l6ZS01MCB7XG4gICAgICB3aWR0aDogNTAlO1xuICAgICAgaGVpZ2h0OiBhdXRvO1xuICAgIH1cblxuICAgIGZpZ3VyZS5pbWFnZS5yZXNpemUtNzUge1xuICAgICAgd2lkdGg6IDc1JTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUuaW1hZ2UucmVzaXplLTEwMCB7XG4gICAgICB3aWR0aDogMTAwJTtcbiAgICAgIGhlaWdodDogYXV0bztcbiAgICB9XG5cbiAgICBmaWd1cmUudGFibGUgdGFibGUge1xuICAgICAgYm9yZGVyLXJpZ2h0OiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgIH1cblxuICAgIGZpZ3VyZS50YWJsZSB0YWJsZSxcbiAgICBmaWd1cmUudGFibGUgdGFibGUgdHIgdGQsXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHRyIHRoIHtcbiAgICAgIGJvcmRlcjogMC4wNjI1cmVtIHNvbGlkIHZhcigtLWJsYWNrKTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogY29sbGFwc2U7XG4gICAgfVxuXG4gICAgZmlndXJlLnRhYmxlIHRhYmxlIHtcbiAgICAgIHdpZHRoOiAxMDAlO1xuICAgICAgYmFja2dyb3VuZDogdmFyKC0td2hpdGUpO1xuICAgICAgYm9yZGVyOiAwLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgYm94LXNoYWRvdzogbm9uZTtcbiAgICAgIGJvcmRlci1yYWRpdXM6IC4yNXJlbSAuMjVyZW0gMCAwO1xuICAgICAgdGV4dC1hbGlnbjogbGVmdDtcbiAgICAgIGNvbG9yOiB2YXIoLS1ncmF5KTtcbiAgICAgIGJvcmRlci1jb2xsYXBzZTogc2VwYXJhdGU7XG4gICAgICBib3JkZXItc3BhY2luZzogMDtcbiAgICAgIHRhYmxlLWxheW91dDogZml4ZWQ7XG5cbiAgICAgIHRoZWFkIHtcbiAgICAgICAgdHIge1xuICAgICAgICAgIHRoIHtcbiAgICAgICAgICAgICY6Zmlyc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLWxlZnQtcmFkaXVzOiAwLjI1cmVtO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAmOmxhc3QtY2hpbGQge1xuICAgICAgICAgICAgICBib3JkZXItdG9wLXJpZ2h0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgZm9udC1zaXplOiAuODc1cmVtO1xuICAgICAgICAgICAgcGFkZGluZzogMXJlbTtcbiAgICAgICAgICAgIGJhY2tncm91bmQtY29sb3I6IHZhcigtLXByaW1hcnktMTAwKTtcbiAgICAgICAgICAgIHBvc2l0aW9uOiByZWxhdGl2ZTtcbiAgICAgICAgICAgIGhlaWdodDogMi41cmVtO1xuICAgICAgICAgICAgYm9yZGVyOjBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IC4wNjI1cmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIGJvcmRlci1yaWdodDogLjA2MjVyZW0gc29saWQgdmFyKC0tZ3JheS0xMDApO1xuICAgICAgICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgICAgICAgICBjb2xvcjogdmFyKC0tcHJpbWFyeS1jb2xvcik7XG4gICAgICAgICAgICB0ZXh0LXRyYW5zZm9ybTogdXBwZXJjYXNlO1xuICAgICAgICAgIH1cbiAgICAgICAgfVxuICAgICAgfVxuXG4gICAgICB0Ym9keSB7XG4gICAgICAgIHRyIHtcbiAgICAgICAgICAmOm50aC1jaGlsZCgybikge1xuICAgICAgICAgICAgYmFja2dyb3VuZC1jb2xvcjogdmFyKC0tZ3JheS0wKTtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICAmOmhvdmVyIHtcbiAgICAgICAgICAgIGJhY2tncm91bmQ6IHZhcigtLXByaW1hcnktMCk7XG4gICAgICAgICAgICBjb2xvcjogcmdiYSh2YXIoLS1yYy1yZ2JhLWdyYXkpLCAwLjk1KTtcbiAgICAgICAgICAgIGN1cnNvcjogcG9pbnRlcjtcbiAgICAgICAgICB9XG5cbiAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICBmb250LXNpemU6IC44NzVyZW07XG4gICAgICAgICAgICBwYWRkaW5nOiAxcmVtO1xuICAgICAgICAgICAgY29sb3I6IHZhcigtLWdyYXkpO1xuICAgICAgICAgICAgaGVpZ2h0OiAzLjVyZW07XG4gICAgICAgICAgICBib3JkZXI6IDBweDtcbiAgICAgICAgICAgIGJvcmRlci1ib3R0b206IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICBib3JkZXItcmlnaHQ6IDAuMDYyNXJlbSBzb2xpZCB2YXIoLS1ncmF5LTEwMCk7XG4gICAgICAgICAgICB3b3JkLWJyZWFrOiBicmVhay13b3JkO1xuICAgICAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcblxuICAgICAgICAgICAgJjpsYXN0LWNoaWxkIHtcbiAgICAgICAgICAgICAgYm9yZGVyLXJpZ2h0OiAwcmVtIHNvbGlkIHZhcigtLWdyYXktMTAwKTtcbiAgICAgICAgICAgIH1cblxuICAgICAgICAgICAgcCB7XG4gICAgICAgICAgICAgIG1hcmdpbi1ib3R0b206IDBweCAhaW1wb3J0YW50O1xuICAgICAgICAgICAgfVxuICAgICAgICAgIH1cblxuICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICB0ZCB7XG4gICAgICAgICAgICAgIGJvcmRlci1ib3R0b206IG5vbmU7XG5cbiAgICAgICAgICAgICAgJjpmaXJzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1sZWZ0LXJhZGl1czogMC4yNXJlbTtcbiAgICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICAgICY6bGFzdC1jaGlsZCB7XG4gICAgICAgICAgICAgICAgYm9yZGVyLWJvdHRvbS1yaWdodC1yYWRpdXM6IDAuMjVyZW07XG4gICAgICAgICAgICAgIH1cbiAgICAgICAgICAgIH1cbiAgICAgICAgICB9XG4gICAgICAgIH1cbiAgICAgIH1cblxuICAgIH1cblxuICAgIHVsLFxuICAgIG9sIHtcbiAgICAgIG1hcmdpbi10b3A6IDAuNXJlbTtcblxuICAgICAgbGkge1xuICAgICAgICBtYXJnaW46IDAuNXJlbTtcbiAgICAgICAgZm9udC13ZWlnaHQ6IG5vcm1hbDtcbiAgICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIH1cbiAgICB9XG5cbiAgICB1bCB7XG4gICAgICBsaXN0LXN0eWxlLXR5cGU6IGRpc2M7XG4gICAgfVxuXG4gICAgaDEsXG4gICAgaDIsXG4gICAgaDMsXG4gICAgaDQsXG4gICAgaDUsXG4gICAgaDYge1xuICAgICAgY29sb3I6IHZhcigtLXByaW1hcnktY29sb3IpO1xuICAgICAgbGluZS1oZWlnaHQ6IG5vcm1hbDtcbiAgICAgIG1hcmdpbi1ib3R0b206IDFyZW07XG4gICAgfVxuXG4gICAgcCxcbiAgICBzcGFuIHtcbiAgICAgIGNvbG9yOiB2YXIoLS1xdW1sLW1jcS10aXRsZS10eHQpO1xuICAgIH1cblxuICAgIHAgc3Ryb25nLFxuICAgIHAgc3BhbiBzdHJvbmcge1xuICAgICAgZm9udC13ZWlnaHQ6IGJvbGQ7XG4gICAgfVxuXG4gICAgcCBzcGFuIHUsXG4gICAgcCB1IHtcbiAgICAgIHRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5lO1xuICAgIH1cblxuICAgIHAgc3BhbiBpLFxuICAgIHAgaSB7XG4gICAgICBmb250LXN0eWxlOiBpdGFsaWM7XG4gICAgfVxuXG4gIH1cbn0iXSwic291cmNlUm9vdCI6IiJ9 */"] }); } @@ -92530,26 +104356,26 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ TransformationService: () => (/* binding */ TransformationService) /* harmony export */ }); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash-es */ 6705); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 6687); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 9412); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 4509); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 7570); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 9362); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! lodash-es */ 7861); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 4164); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 5751); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 6328); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 5935); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 7386); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 4011); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! lodash-es */ 5509); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 1745); -/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! uuid */ 4289); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash-es */ 86705); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 26687); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 39412); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 14509); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 17570); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 39362); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! lodash-es */ 37861); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! lodash-es */ 5509); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 24164); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 55751); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 66328); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! lodash-es */ 45935); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 87386); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 94011); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! lodash-es */ 61745); +/* harmony import */ var uuid__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! uuid */ 94289); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! @angular/core */ 61699); @@ -92648,7 +104474,7 @@ class TransformationService { getTransformedQuestionMetadata(data) { if (lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](data, 'questions')) { lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](data.questions, question => { - if (!lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](question, 'qumlVersion') || question.qumlVersion != 1.1) { + if ((!lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](question, 'qumlVersion') || question.qumlVersion != 1.1) && lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](['MCQ', 'MMCQ', 'SA'], question.qType)) { question = this.processResponseDeclaration(question); question = this.processInteractions(question); question = this.processSolutions(question); @@ -92667,7 +104493,7 @@ class TransformationService { } processResponseDeclaration(data) { let outcomeDeclaration = {}; - if (lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](data.primaryCategory), 'subjective question')) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](data.primaryCategory), 'subjective question')) { data = this.processSubjectiveResponseDeclaration(data); } else { let responseDeclaration = data.responseDeclaration; @@ -92683,7 +104509,7 @@ class TransformationService { outcomeDeclaration['maxScore'] = maxScore; const correctResp = responseData.correctResponse || {}; delete correctResp.outcomes; - if (lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'type')) === 'integer' && lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'cardinality')) === 'single') { + if (lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'type')) === 'integer' && lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](responseData, 'cardinality')) === 'single') { const correctKey = correctResp.value; correctResp.value = parseInt(correctKey, 10); } @@ -92745,8 +104571,8 @@ class TransformationService { } processSolutions(data) { const solutions = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'solutions', []); - if (!lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](solutions) && lodash_es__WEBPACK_IMPORTED_MODULE_12__["default"](solutions)) { - const updatedSolutions = lodash_es__WEBPACK_IMPORTED_MODULE_13__["default"](solutions, (result, solution) => { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](solutions) && lodash_es__WEBPACK_IMPORTED_MODULE_13__["default"](solutions)) { + const updatedSolutions = lodash_es__WEBPACK_IMPORTED_MODULE_14__["default"](solutions, (result, solution) => { result[lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](solution, 'id')] = this.getSolutionString(solution, lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'media', [])); return result; }, {}); @@ -92765,7 +104591,7 @@ class TransformationService { case 'video': { const value = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'value', ''); - const mediaData = lodash_es__WEBPACK_IMPORTED_MODULE_14__["default"](media, item => lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](value, lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](item, 'id', ''))); + const mediaData = lodash_es__WEBPACK_IMPORTED_MODULE_15__["default"](media, item => lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](value, lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](item, 'id', ''))); if (mediaData) { const src = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mediaData, 'src', ''); const thumbnail = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mediaData, 'thumbnail', ''); @@ -92790,8 +104616,8 @@ class TransformationService { let updatedHints = {}; if (!lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](hints)) { lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](hints, hint => { - lodash_es__WEBPACK_IMPORTED_MODULE_15__["default"](updatedHints, { - [(0,uuid__WEBPACK_IMPORTED_MODULE_16__["default"])()]: hint + lodash_es__WEBPACK_IMPORTED_MODULE_16__["default"](updatedHints, { + [(0,uuid__WEBPACK_IMPORTED_MODULE_17__["default"])()]: hint }); }); lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](data, 'hints', updatedHints); @@ -92800,7 +104626,7 @@ class TransformationService { } getAnswer(data) { const interactions = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'interactions', {}); - if (!lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'primaryCategory'), 'Subjective Question') && !lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](interactions)) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_11__["default"](lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'primaryCategory'), 'Subjective Question') && !lodash_es__WEBPACK_IMPORTED_MODULE_0__["default"](interactions)) { const responseData = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](data, 'responseDeclaration.response1', {}); const options = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](interactions, 'response1.options', {}); let formatedAnswer = ''; @@ -92814,7 +104640,7 @@ class TransformationService { let singleAns = '
answer_html
'; const answerList = []; lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](options, option => { - if (lodash_es__WEBPACK_IMPORTED_MODULE_17__["default"](correctResp, option.value)) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_10__["default"](correctResp, option.value)) { const replAns = lodash_es__WEBPACK_IMPORTED_MODULE_18__["default"](singleAns, 'answer_html', lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](option, 'label')); answerList.push(replAns); } @@ -92838,7 +104664,7 @@ class TransformationService { /***/ }), -/***/ 3464: +/***/ 23464: /*!*********************************************************************************!*\ !*** ./projects/quml-library/src/lib/services/viewer-service/viewer-service.ts ***! \*********************************************************************************/ @@ -92848,21 +104674,21 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ ViewerService: () => (/* binding */ ViewerService) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../telemetry-constants */ 1679); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 8717); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 4373); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 2984); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 5772); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 7386); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../telemetry-constants */ 71679); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 48717); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 34373); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! lodash-es */ 32984); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! lodash-es */ 25772); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! lodash-es */ 87386); /* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! lodash-es */ 5509); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs */ 2130); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 6520); -/* harmony import */ var _quml_library_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../quml-library.service */ 1073); -/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../util-service */ 4384); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! rxjs */ 92130); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! rxjs/operators */ 36520); +/* harmony import */ var _quml_library_service__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../quml-library.service */ 81073); +/* harmony import */ var _util_service__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../util-service */ 54384); /* harmony import */ var _quml_question_cursor_service__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../quml-question-cursor.service */ 5336); /* harmony import */ var _transformation_service_transformation_service__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../transformation-service/transformation.service */ 8396); @@ -93196,7 +105022,7 @@ class ViewerService { /***/ }), -/***/ 444: +/***/ 60444: /*!************************************************************************!*\ !*** ./projects/quml-library/src/lib/startpage/startpage.component.ts ***! \************************************************************************/ @@ -93206,12 +105032,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ StartpageComponent: () => (/* binding */ StartpageComponent) /* harmony export */ }); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../icon/timer/timer.component */ 2162); -/* harmony import */ var _icon_content_content_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/content/content.component */ 5019); -/* harmony import */ var _icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../icon/startpagestaricon/startpagestaricon.component */ 2205); -/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 5989); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../icon/timer/timer.component */ 52162); +/* harmony import */ var _icon_content_content_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../icon/content/content.component */ 85019); +/* harmony import */ var _icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../icon/startpagestaricon/startpagestaricon.component */ 72205); +/* harmony import */ var _pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../pipes/safe-html/safe-html.pipe */ 75989); @@ -93333,7 +105159,7 @@ class StartpageComponent { /***/ }), -/***/ 1679: +/***/ 71679: /*!**************************************************************!*\ !*** ./projects/quml-library/src/lib/telemetry-constants.ts ***! \**************************************************************/ @@ -93382,6 +105208,7 @@ var eventName; eventName["deviceRotationClicked"] = "DEVICE_ROTATION_CLICKED"; eventName["progressIndicatorPopupClosed"] = "PROGRESS_INDICATOR_POPUP_CLOSED"; eventName["progressIndicatorPopupOpened"] = "PROGRESS_INDICATOR_POPUP_OPENED"; + eventName["optionsReordered"] = "OPTIONS_REORDERED"; })(eventName || (eventName = {})); var TelemetryType; (function (TelemetryType) { @@ -93400,12 +105227,14 @@ var Cardinality; var QuestionType; (function (QuestionType) { QuestionType["mcq"] = "MCQ"; + QuestionType["mmcq"] = "MMCQ"; QuestionType["sa"] = "SA"; + QuestionType["mtf"] = "MTF"; })(QuestionType || (QuestionType = {})); /***/ }), -/***/ 4384: +/***/ 54384: /*!*******************************************************!*\ !*** ./projects/quml-library/src/lib/util-service.ts ***! \*******************************************************/ @@ -93415,15 +105244,17 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ UtilService: () => (/* binding */ UtilService) /* harmony export */ }); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! lodash-es */ 2502); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 913); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 6687); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 4164); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 5509); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 9990); -/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 1855); -/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./player-constants */ 8831); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! lodash-es */ 42502); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! lodash-es */ 40913); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! lodash-es */ 26687); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! lodash-es */ 24164); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! lodash-es */ 5509); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! lodash-es */ 39990); +/* harmony import */ var lodash_es__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! lodash-es */ 41855); +/* harmony import */ var _player_constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./player-constants */ 28831); +/* harmony import */ var _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./telemetry-constants */ 71679); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! @angular/core */ 61699); + @@ -93449,6 +105280,19 @@ class UtilService { }); return key; } + getSingleSelectScore(option, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { + let key = this.getKeyValue(Object.keys(responseDeclaration)); + const correctOptionValue = Number(responseDeclaration[key].correctResponse.value); + const selectedOptionValue = option?.value; + if (selectedOptionValue === correctOptionValue) { + if (isShuffleQuestions) { + return _player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE; + } + return outcomeDeclaration.maxScore.defaultValue ? outcomeDeclaration.maxScore.defaultValue : _player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE; + } else { + return 0; + } + } getMultiselectScore(options, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { let key = this.getKeyValue(Object.keys(responseDeclaration)); const selectedOptionValue = options.map(option => option.value); @@ -93456,32 +105300,80 @@ class UtilService { let mapping = responseDeclaration[key]['mapping']; if (isShuffleQuestions) { score = _player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE; - const scoreForEachMapping = lodash_es__WEBPACK_IMPORTED_MODULE_1__["default"](1 / mapping.length, 2); - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](mapping, map => { + const scoreForEachMapping = lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](_player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE / mapping.length, 2); + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mapping, map => { map.score = scoreForEachMapping; }); } else { - score = lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](outcomeDeclaration, 'maxScore.defaultValue'); + score = lodash_es__WEBPACK_IMPORTED_MODULE_4__["default"](outcomeDeclaration, 'maxScore.defaultValue'); } let correctValues = responseDeclaration[key].correctResponse.value.map(ele => Number(ele)); - if (lodash_es__WEBPACK_IMPORTED_MODULE_4__["default"](correctValues.sort(), selectedOptionValue.sort())) { + if (lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](correctValues.sort(), selectedOptionValue.sort())) { return score; - } else if (!lodash_es__WEBPACK_IMPORTED_MODULE_4__["default"](correctValues.sort(), selectedOptionValue.sort())) { + } else if (!lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](correctValues.sort(), selectedOptionValue.sort())) { let sum = 0; - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](mapping, (map, index) => { - if (lodash_es__WEBPACK_IMPORTED_MODULE_5__["default"](selectedOptionValue, map.value)) { + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mapping, (map, index) => { + if (lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](selectedOptionValue, map.value)) { sum += map?.score ? map.score : 0; } }); return sum; } } + getMTFScore(rearrangedOptions, responseDeclaration, isShuffleQuestions, outcomeDeclaration) { + let key = this.getKeyValue(Object.keys(responseDeclaration)); + const correctResponse = responseDeclaration[key]['correctResponse']['value']; + const mapping = responseDeclaration[key]['mapping']; + if (isShuffleQuestions) { + const scoreForEachMapping = lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](_player_constants__WEBPACK_IMPORTED_MODULE_0__.DEFAULT_SCORE / mapping.length, 2); + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](mapping, map => { + map.score = scoreForEachMapping; + }); + } + const currentResponse = rearrangedOptions.right.map(rightItem => { + const leftIndex = rearrangedOptions.left.findIndex(leftItem => leftItem.value === rightItem.value); + return { + left: leftIndex, + right: rearrangedOptions.right.indexOf(rightItem) + }; + }); + let totalScore = 0; + currentResponse.forEach(currentPair => { + const correctPair = correctResponse.find(correct => correct.left === currentPair.left && correct.right.includes(currentPair.right)); + if (correctPair) { + const scoreMapping = mapping.find(map => map.value.left === currentPair.left && map.value.right === currentPair.right); + if (scoreMapping) { + totalScore += scoreMapping?.score ? scoreMapping?.score : 0; + } + } + }); + return totalScore; + } hasDuplicates(selectedOptions, option) { let duplicate = selectedOptions.find(o => { return o.value === option.value; }); return duplicate; } + getEDataItem(questionData, key) { + const getParams = questionData => { + const questionType = questionData.qType.toUpperCase(); + if ((questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__.QuestionType.mcq || questionType === _telemetry_constants__WEBPACK_IMPORTED_MODULE_1__.QuestionType.mtf) && questionData?.interactions[key]?.options) { + return questionData?.interactions[key].options; + } else { + return []; + } + }; + const edataItem = { + 'id': questionData.identifier, + 'title': questionData.name, + 'desc': questionData.description, + 'type': questionData.qType.toLowerCase(), + 'maxscore': key.length === 0 ? 0 : questionData.outcomeDeclaration.maxScore.defaultValue || 0, + 'params': getParams(questionData) + }; + return edataItem; + } getQuestionType(questions, currentIndex) { let index = currentIndex - 1 === -1 ? 0 : currentIndex - 1; return questions[index]['qType']; @@ -93514,19 +105406,19 @@ class UtilService { // fetches the element using its tag video and sets the value of the “src” attribute of source element and poster attribute. updateSourceOfVideoElement(baseUrl, media, identifier) { const elements = Array.from(document.getElementsByTagName('video')); - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](elements, element => { + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](elements, element => { const videoId = element.getAttribute('data-asset-variable'); if (!videoId) { return; } - const asset = lodash_es__WEBPACK_IMPORTED_MODULE_6__["default"](media, ['id', videoId]); + const asset = lodash_es__WEBPACK_IMPORTED_MODULE_7__["default"](media, ['id', videoId]); const posterSrc = element.getAttribute('poster'); - if (!lodash_es__WEBPACK_IMPORTED_MODULE_7__["default"](asset) && posterSrc) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_8__["default"](asset) && posterSrc) { element['poster'] = baseUrl ? `${baseUrl}/${identifier}/${posterSrc}` : asset[0].baseUrl + posterSrc; } - if (!lodash_es__WEBPACK_IMPORTED_MODULE_7__["default"](asset)) { + if (!lodash_es__WEBPACK_IMPORTED_MODULE_8__["default"](asset)) { const sourceElement = Array.from(element.getElementsByTagName('source')); - lodash_es__WEBPACK_IMPORTED_MODULE_2__["default"](sourceElement, element => { + lodash_es__WEBPACK_IMPORTED_MODULE_3__["default"](sourceElement, element => { const sourceSrc = element.getAttribute('src'); element['src'] = baseUrl ? `${baseUrl}/${identifier}/${sourceSrc}` : asset[0].baseUrl + sourceSrc; }); @@ -93536,7 +105428,7 @@ class UtilService { static #_ = this.ɵfac = function UtilService_Factory(t) { return new (t || UtilService)(); }; - static #_2 = this.ɵprov = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_8__["ɵɵdefineInjectable"]({ + static #_2 = this.ɵprov = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_9__["ɵɵdefineInjectable"]({ token: UtilService, factory: UtilService.ɵfac, providedIn: 'root' @@ -93545,7 +105437,7 @@ class UtilService { /***/ }), -/***/ 8849: +/***/ 88849: /*!*******************************************************!*\ !*** ./projects/quml-player-wc/src/app/app.module.ts ***! \*******************************************************/ @@ -93555,50 +105447,58 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ __webpack_require__.d(__webpack_exports__, { /* harmony export */ AppModule: () => (/* binding */ AppModule) /* harmony export */ }); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _angular_elements__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! @angular/elements */ 7164); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 3873); -/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 2459); -/* harmony import */ var _quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../quml-library/src/lib/main-player/main-player.component */ 2306); -/* harmony import */ var _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-library.component */ 2792); -/* harmony import */ var _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq/mcq.component */ 6633); -/* harmony import */ var _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../quml-library/src/lib/header/header.component */ 3893); -/* harmony import */ var _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../quml-library/src/lib/sa/sa.component */ 5502); -/* harmony import */ var _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-question/mcq-question.component */ 4443); -/* harmony import */ var _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-option/mcq-option.component */ 1879); -/* harmony import */ var _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-popup/quml-popup.component */ 7921); -/* harmony import */ var _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-image-option/mcq-image-option.component */ 305); -/* harmony import */ var _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/zoom-in/zoom-in.component */ 9736); -/* harmony import */ var _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/star/star.component */ 413); -/* harmony import */ var _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous/previous.component */ 664); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_elements__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! @angular/elements */ 17164); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! @project-sunbird/sunbird-player-sdk-v9 */ 83873); +/* harmony import */ var ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ngx-bootstrap/carousel */ 42459); +/* harmony import */ var _quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../quml-library/src/lib/main-player/main-player.component */ 72306); +/* harmony import */ var _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-library.component */ 92792); +/* harmony import */ var _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq/mcq.component */ 16633); +/* harmony import */ var _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../quml-library/src/lib/header/header.component */ 23893); +/* harmony import */ var _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../../quml-library/src/lib/sa/sa.component */ 45502); +/* harmony import */ var _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-question/mcq-question.component */ 64443); +/* harmony import */ var _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-option/mcq-option.component */ 51879); +/* harmony import */ var _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-popup/quml-popup.component */ 77921); +/* harmony import */ var _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-image-option/mcq-image-option.component */ 50305); +/* harmony import */ var _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/zoom-in/zoom-in.component */ 99736); +/* harmony import */ var _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/star/star.component */ 40413); +/* harmony import */ var _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous/previous.component */ 50664); /* harmony import */ var _quml_library_src_lib_icon_next_next_component__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/next/next.component */ 5269); -/* harmony import */ var _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous-active/previous-active.component */ 9178); -/* harmony import */ var _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/bookmark/bookmark.component */ 467); -/* harmony import */ var _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/hint/hint.component */ 4696); +/* harmony import */ var _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/previous-active/previous-active.component */ 49178); +/* harmony import */ var _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/bookmark/bookmark.component */ 90467); +/* harmony import */ var _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/hint/hint.component */ 64696); /* harmony import */ var _quml_library_src_lib_icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/ans/ans.component */ 8188); -/* harmony import */ var _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/share/share.component */ 4819); -/* harmony import */ var _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/correct/correct.component */ 189); -/* harmony import */ var _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../../quml-library/src/lib/scoreboard/scoreboard.component */ 9186); -/* harmony import */ var _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../../../quml-library/src/lib/startpage/startpage.component */ 444); -/* harmony import */ var _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/timer/timer.component */ 2162); -/* harmony import */ var _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/content/content.component */ 5019); -/* harmony import */ var _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/startpagestaricon/startpagestaricon.component */ 2205); -/* harmony import */ var _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/next-active/next-active.component */ 3651); -/* harmony import */ var _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../../../quml-library/src/lib/alert/alert.component */ 7207); -/* harmony import */ var _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/close/close.component */ 5922); +/* harmony import */ var _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/share/share.component */ 34819); +/* harmony import */ var _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/correct/correct.component */ 30189); +/* harmony import */ var _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ../../../quml-library/src/lib/scoreboard/scoreboard.component */ 19186); +/* harmony import */ var _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ../../../quml-library/src/lib/startpage/startpage.component */ 60444); +/* harmony import */ var _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/timer/timer.component */ 52162); +/* harmony import */ var _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/content/content.component */ 85019); +/* harmony import */ var _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/startpagestaricon/startpagestaricon.component */ 72205); +/* harmony import */ var _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/next-active/next-active.component */ 33651); +/* harmony import */ var _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../../../quml-library/src/lib/alert/alert.component */ 57207); +/* harmony import */ var _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/close/close.component */ 55922); /* harmony import */ var _quml_library_src_lib_mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ../../../quml-library/src/lib/mcq-solutions/mcq-solutions.component */ 3506); -/* harmony import */ var _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/durationtimer/durationtimer.component */ 9905); -/* harmony import */ var _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/audio/audio.component */ 1228); +/* harmony import */ var _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/durationtimer/durationtimer.component */ 29905); +/* harmony import */ var _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/audio/audio.component */ 11228); /* harmony import */ var _quml_library_src_lib_icon_wrong_wrong_component__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/wrong/wrong.component */ 8905); -/* harmony import */ var _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/menu/menu.component */ 2075); -/* harmony import */ var _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../../../quml-library/src/lib/pipes/safe-html/safe-html.pipe */ 5989); -/* harmony import */ var _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../../../quml-library/src/lib/section-player/section-player.component */ 4970); +/* harmony import */ var _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ../../../quml-library/src/lib/icon/menu/menu.component */ 82075); +/* harmony import */ var _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ../../../quml-library/src/lib/pipes/safe-html/safe-html.pipe */ 75989); +/* harmony import */ var _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ../../../quml-library/src/lib/section-player/section-player.component */ 14970); /* harmony import */ var _quml_library_src_lib_quml_question_cursor_service__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ../../../quml-library/src/lib/quml-question-cursor.service */ 5336); -/* harmony import */ var _question_cursor_implementation_service__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./question-cursor-implementation.service */ 1952); -/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! @angular/common/http */ 4860); -/* harmony import */ var _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../../../quml-library/src/lib/progress-indicators/progress-indicators.component */ 1267); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! @angular/core */ 1699); +/* harmony import */ var _question_cursor_implementation_service__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./question-cursor-implementation.service */ 21952); +/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! @angular/common/http */ 54860); +/* harmony import */ var _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ../../../quml-library/src/lib/progress-indicators/progress-indicators.component */ 51267); +/* harmony import */ var _quml_library_src_lib_mtf_mtf_component__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ../../../quml-library/src/lib/mtf/mtf.component */ 30960); +/* harmony import */ var _quml_library_src_lib_mtf_mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ../../../quml-library/src/lib/mtf/mtf-options/mtf-options.component */ 71568); +/* harmony import */ var _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! @angular/cdk/drag-drop */ 17792); +/* harmony import */ var _quml_library_src_lib_mtf_check_figure_directive__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ../../../quml-library/src/lib/mtf/check-figure.directive */ 88921); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! @angular/core */ 61699); + + + + @@ -93649,40 +105549,40 @@ class AppModule { this.injector = injector; } ngDoBootstrap() { - const customElement = (0,_angular_elements__WEBPACK_IMPORTED_MODULE_37__.createCustomElement)(_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, { + const customElement = (0,_angular_elements__WEBPACK_IMPORTED_MODULE_40__.createCustomElement)(_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, { injector: this.injector }); customElements.define('sunbird-quml-player', customElement); } static #_ = this.ɵfac = function AppModule_Factory(t) { - return new (t || AppModule)(_angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_38__.Injector)); + return new (t || AppModule)(_angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵinject"](_angular_core__WEBPACK_IMPORTED_MODULE_41__.Injector)); }; - static #_2 = this.ɵmod = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵdefineNgModule"]({ + static #_2 = this.ɵmod = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵdefineNgModule"]({ type: AppModule }); - static #_3 = this.ɵinj = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵdefineInjector"]({ + static #_3 = this.ɵinj = /*@__PURE__*/_angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵdefineInjector"]({ providers: [{ provide: _quml_library_src_lib_quml_question_cursor_service__WEBPACK_IMPORTED_MODULE_34__.QuestionCursor, useClass: _question_cursor_implementation_service__WEBPACK_IMPORTED_MODULE_35__.QuestionCursorImplementationService }, { - provide: _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__.PLAYER_CONFIG, + provide: _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__.PLAYER_CONFIG, useValue: { contentCompatibilityLevel: 6 } }], - imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_40__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_41__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_42__.CarouselModule.forRoot(), _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_43__.HttpClientModule] + imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_43__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_44__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_45__.CarouselModule.forRoot(), _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_46__.HttpClientModule, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_47__.DragDropModule] }); } (function () { - (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_38__["ɵɵsetNgModuleScope"](AppModule, { - declarations: [_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__.QumlLibraryComponent, _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__.McqComponent, _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__.HeaderComponent, _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__.SaComponent, _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__.McqQuestionComponent, _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__.McqOptionComponent, _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__.QumlPopupComponent, _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__.McqImageOptionComponent, _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__.ZoomInComponent, _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__.StarComponent, _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__.PreviousComponent, _quml_library_src_lib_icon_next_next_component__WEBPACK_IMPORTED_MODULE_12__.NextComponent, _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__.PreviousActiveComponent, _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__.BookmarkComponent, _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__.HintComponent, _quml_library_src_lib_icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_16__.AnsComponent, _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__.ShareComponent, _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__.CorrectComponent, _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__.ScoreboardComponent, _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__.StartpageComponent, _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__.TimerComponent, _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__.ContentComponent, _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__.StartpagestariconComponent, _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__.NextActiveComponent, _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__.AlertComponent, _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__.CloseComponent, _quml_library_src_lib_mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_27__.McqSolutionsComponent, _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__.DurationtimerComponent, _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__.AudioComponent, _quml_library_src_lib_icon_wrong_wrong_component__WEBPACK_IMPORTED_MODULE_30__.WrongComponent, _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__.MenuComponent, _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__.SafeHtmlPipe, _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__.SectionPlayerComponent, _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__.ProgressIndicatorsComponent], - imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_40__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_41__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_42__.CarouselModule, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_39__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_43__.HttpClientModule] + (typeof ngJitMode === "undefined" || ngJitMode) && _angular_core__WEBPACK_IMPORTED_MODULE_41__["ɵɵsetNgModuleScope"](AppModule, { + declarations: [_quml_library_src_lib_main_player_main_player_component__WEBPACK_IMPORTED_MODULE_0__.MainPlayerComponent, _quml_library_src_lib_quml_library_component__WEBPACK_IMPORTED_MODULE_1__.QumlLibraryComponent, _quml_library_src_lib_mcq_mcq_component__WEBPACK_IMPORTED_MODULE_2__.McqComponent, _quml_library_src_lib_header_header_component__WEBPACK_IMPORTED_MODULE_3__.HeaderComponent, _quml_library_src_lib_sa_sa_component__WEBPACK_IMPORTED_MODULE_4__.SaComponent, _quml_library_src_lib_mcq_question_mcq_question_component__WEBPACK_IMPORTED_MODULE_5__.McqQuestionComponent, _quml_library_src_lib_mcq_option_mcq_option_component__WEBPACK_IMPORTED_MODULE_6__.McqOptionComponent, _quml_library_src_lib_quml_popup_quml_popup_component__WEBPACK_IMPORTED_MODULE_7__.QumlPopupComponent, _quml_library_src_lib_mcq_image_option_mcq_image_option_component__WEBPACK_IMPORTED_MODULE_8__.McqImageOptionComponent, _quml_library_src_lib_icon_zoom_in_zoom_in_component__WEBPACK_IMPORTED_MODULE_9__.ZoomInComponent, _quml_library_src_lib_icon_star_star_component__WEBPACK_IMPORTED_MODULE_10__.StarComponent, _quml_library_src_lib_icon_previous_previous_component__WEBPACK_IMPORTED_MODULE_11__.PreviousComponent, _quml_library_src_lib_icon_next_next_component__WEBPACK_IMPORTED_MODULE_12__.NextComponent, _quml_library_src_lib_icon_previous_active_previous_active_component__WEBPACK_IMPORTED_MODULE_13__.PreviousActiveComponent, _quml_library_src_lib_icon_bookmark_bookmark_component__WEBPACK_IMPORTED_MODULE_14__.BookmarkComponent, _quml_library_src_lib_icon_hint_hint_component__WEBPACK_IMPORTED_MODULE_15__.HintComponent, _quml_library_src_lib_icon_ans_ans_component__WEBPACK_IMPORTED_MODULE_16__.AnsComponent, _quml_library_src_lib_icon_share_share_component__WEBPACK_IMPORTED_MODULE_17__.ShareComponent, _quml_library_src_lib_icon_correct_correct_component__WEBPACK_IMPORTED_MODULE_18__.CorrectComponent, _quml_library_src_lib_scoreboard_scoreboard_component__WEBPACK_IMPORTED_MODULE_19__.ScoreboardComponent, _quml_library_src_lib_startpage_startpage_component__WEBPACK_IMPORTED_MODULE_20__.StartpageComponent, _quml_library_src_lib_icon_timer_timer_component__WEBPACK_IMPORTED_MODULE_21__.TimerComponent, _quml_library_src_lib_icon_content_content_component__WEBPACK_IMPORTED_MODULE_22__.ContentComponent, _quml_library_src_lib_icon_startpagestaricon_startpagestaricon_component__WEBPACK_IMPORTED_MODULE_23__.StartpagestariconComponent, _quml_library_src_lib_icon_next_active_next_active_component__WEBPACK_IMPORTED_MODULE_24__.NextActiveComponent, _quml_library_src_lib_alert_alert_component__WEBPACK_IMPORTED_MODULE_25__.AlertComponent, _quml_library_src_lib_icon_close_close_component__WEBPACK_IMPORTED_MODULE_26__.CloseComponent, _quml_library_src_lib_mcq_solutions_mcq_solutions_component__WEBPACK_IMPORTED_MODULE_27__.McqSolutionsComponent, _quml_library_src_lib_icon_durationtimer_durationtimer_component__WEBPACK_IMPORTED_MODULE_28__.DurationtimerComponent, _quml_library_src_lib_icon_audio_audio_component__WEBPACK_IMPORTED_MODULE_29__.AudioComponent, _quml_library_src_lib_icon_wrong_wrong_component__WEBPACK_IMPORTED_MODULE_30__.WrongComponent, _quml_library_src_lib_icon_menu_menu_component__WEBPACK_IMPORTED_MODULE_31__.MenuComponent, _quml_library_src_lib_pipes_safe_html_safe_html_pipe__WEBPACK_IMPORTED_MODULE_32__.SafeHtmlPipe, _quml_library_src_lib_section_player_section_player_component__WEBPACK_IMPORTED_MODULE_33__.SectionPlayerComponent, _quml_library_src_lib_progress_indicators_progress_indicators_component__WEBPACK_IMPORTED_MODULE_36__.ProgressIndicatorsComponent, _quml_library_src_lib_mtf_mtf_component__WEBPACK_IMPORTED_MODULE_37__.MtfComponent, _quml_library_src_lib_mtf_mtf_options_mtf_options_component__WEBPACK_IMPORTED_MODULE_38__.MtfOptionsComponent, _quml_library_src_lib_mtf_check_figure_directive__WEBPACK_IMPORTED_MODULE_39__.CheckFigureDirective], + imports: [_angular_platform_browser__WEBPACK_IMPORTED_MODULE_43__.BrowserModule, _angular_common__WEBPACK_IMPORTED_MODULE_44__.CommonModule, ngx_bootstrap_carousel__WEBPACK_IMPORTED_MODULE_45__.CarouselModule, _project_sunbird_sunbird_player_sdk_v9__WEBPACK_IMPORTED_MODULE_42__.SunbirdPlayerSdkModule, _angular_common_http__WEBPACK_IMPORTED_MODULE_46__.HttpClientModule, _angular_cdk_drag_drop__WEBPACK_IMPORTED_MODULE_47__.DragDropModule] }); })(); /***/ }), -/***/ 1952: +/***/ 21952: /*!***********************************************************************************!*\ !*** ./projects/quml-player-wc/src/app/question-cursor-implementation.service.ts ***! \***********************************************************************************/ @@ -93693,12 +105593,12 @@ __webpack_require__.r(__webpack_exports__); /* harmony export */ QuestionCursorImplementationService: () => (/* binding */ QuestionCursorImplementationService) /* harmony export */ }); /* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! rxjs */ 9681); -/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 3994); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs/operators */ 7422); -/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 7965); -/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 6575); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common/http */ 4860); +/* harmony import */ var rxjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! rxjs */ 33994); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! rxjs/operators */ 47422); +/* harmony import */ var rxjs_operators__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! rxjs/operators */ 87965); +/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @angular/common */ 26575); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _angular_common_http__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! @angular/common/http */ 54860); @@ -93790,7 +105690,7 @@ class QuestionCursorImplementationService { /***/ }), -/***/ 1950: +/***/ 51950: /*!*****************************************************************!*\ !*** ./projects/quml-player-wc/src/environments/environment.ts ***! \*****************************************************************/ @@ -93824,11 +105724,11 @@ const environment = { /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { __webpack_require__.r(__webpack_exports__); -/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 6480); -/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 1699); -/* harmony import */ var _app_app_module__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./app/app.module */ 8849); -/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./environments/environment */ 1950); -/* harmony import */ var reflect_metadata__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reflect-metadata */ 7550); +/* harmony import */ var _angular_platform_browser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! @angular/platform-browser */ 36480); +/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @angular/core */ 61699); +/* harmony import */ var _app_app_module__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./app/app.module */ 88849); +/* harmony import */ var _environments_environment__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./environments/environment */ 51950); +/* harmony import */ var reflect_metadata__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! reflect-metadata */ 87550); /* harmony import */ var reflect_metadata__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(reflect_metadata__WEBPACK_IMPORTED_MODULE_2__);