-
{{val.createdon}}
+
+
{{val.createdon | date:'dd-MM-yy h:mm:ss a'}}
-
+
{{val.applicant_id}}
-
{{val.abbr}}
+ {{val.abbr}} | {{val.status}}
-
No Records Found
+ No Records Found
diff --git a/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.scss b/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.scss
index 1829624..9678fc0 100755
--- a/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.scss
+++ b/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.scss
@@ -79,7 +79,10 @@ page-sales-p-dlist {
margin: 0px;
}
.item-md h4 {
- font-size: 1.7rem;
+ font-size: 10px;
+ }
+ .item-md p{
+ font-size: 12px;
}
.item-md ion-icon[item-start] + .item-inner{
margin-left: 0px;
@@ -98,9 +101,26 @@ page-sales-p-dlist {
// flex: 1 0 100px;
// }
// }
- // .applicant_name{
- // overflow: hidden;
- // text-overflow: ellipsis;
- // }
-
+ .applicant_name{
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
+
}
+.action-sheet-md .action-sheet-group:first-child {
+ padding-top: 0.8rem;
+ border-radius: 15px 15px 0 0;
+}
+.action-sheet-container {
+ padding: 0 3% 0 3%;
+ font-weight:bold
+}
+
+.action-sheet-md .action-sheet-button {
+// font-weight: 500;
+border-top:1px solid lightgray;
+}
+.action-sheet-md .action-sheet-icon {
+ margin: 0 10px 0 0;
+}
+
diff --git a/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.ts b/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.ts
index fdfa4fc..57b6f78 100755
--- a/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.ts
+++ b/src/pages/sales_pd/pages/sales-p-dlist/sales-p-dlist.ts
@@ -1,9 +1,10 @@
import { Component } from '@angular/core';
-import { IonicPage, NavController, NavParams, ActionSheetController } from 'ionic-angular';
+import { IonicPage, NavController, NavParams, ActionSheetController, ModalController } from 'ionic-angular';
import { SalesPdProvider } from '../../providers/sales-pd/sales-pd';
import { HomePage, Section1 } from '../home/home';
import { ToastProvider } from '../../../../providers/common-provider/toast';
import { LoadingProvider } from '../../../../providers/common-provider/loading';
+import { ReportViewer } from '../report-pdf-viewer/pdf-modal';
/**
* Generated class for the SalesPDlistPage page.
@@ -20,8 +21,9 @@ import { LoadingProvider } from '../../../../providers/common-provider/loading';
export class SalesPDlistPage {
sales_displayValue: any=[];
loader_access:any=true
+ reportSrc: any;
- constructor(public actionSheetCtrl: ActionSheetController,public navCtrl: NavController, public navParams: NavParams,private salesPDService:SalesPdProvider,private toastProvider:ToastProvider,private loaderProvider:LoadingProvider) {
+ constructor(public actionSheetCtrl: ActionSheetController,public navCtrl: NavController, public navParams: NavParams,private salesPDService:SalesPdProvider,private toastProvider:ToastProvider,private loaderProvider:LoadingProvider,private modalCtrl:ModalController) {
}
ionViewDidLoad() {
@@ -48,18 +50,28 @@ export class SalesPDlistPage {
})
}
newForm(){
- this.salesPDService.getData_fromLocal('sec1').then(result=>{
- console.log("image",result);
- if(result){
- this.alertDecision()
- }
- else{
- this.navCtrl.push(HomePage)
- }
- });
+ // this.salesPDService.getData_fromLocal('sec1').then(result=>{
+ // console.log("image",result);
+ // if(result){
+ // this.alertDecision()
+ // }
+ // else{
+ // this.navCtrl.push(HomePage)
+ // }
+ // });
+ this.salesPDService.clearLocalData()
+ localStorage.removeItem('product_id_salesPD')
+ this.navCtrl.push(HomePage)
}
+ editForm(value_obj){
+ // let product= localStorage.getItem('product_id_salesPD')
+ this.salesPDService.insertData_Replace('sales_pd_id_PRIMARYKEY',value_obj.sales_pd_id).then(()=>{
+ localStorage.setItem('product_id_salesPD',value_obj.product_id)
+ this.navCtrl.push(Section1,{product_id:value_obj.product_id})
+ })
+ }
salesPDpdf(pdfdetail){
this.loaderProvider.pdloader("Processing..")
this.salesPDService.getSalesPdpdf(pdfdetail)
@@ -68,7 +80,11 @@ export class SalesPDlistPage {
if (data.status == 200) {
// window.open(data.records);
// window.location.href=data.records;
- window.open(data.records, '_blank');
+ // window.open(data.records, '_blank');
+ // this.reportSrc=data.records
+ let profileModal = this.modalCtrl.create(ReportViewer,{'report_link':data.records});
+ profileModal.present();
+
}
this.loaderProvider.dismissLoader();
},err=>{
@@ -96,21 +112,32 @@ export class SalesPDlistPage {
}
- presentActionSheet(pdfdownlond) {
+ presentActionSheet(value_obj) {
let actionSheet = this.actionSheetCtrl.create({
title: 'Select Option',
buttons: [
{
- text: 'PDF Download',
+ text: 'Edit',
+ icon:'create',
role: 'destructive',
handler: () => {
- this.salesPDpdf(pdfdownlond);
+ this.editForm(value_obj);
+ // console.log('pdf check',this.salesPDpdf);
+ }
+ },
+ {
+ text: 'View Report',
+ icon:'eye',
+ role: 'destructive',
+ handler: () => {
+ this.salesPDpdf(value_obj.sales_pd_id);
// console.log('pdf check',this.salesPDpdf);
}
},
{
text: 'Cancel',
role: 'cancel',
+ icon:'arrow-round-back',
handler: () => {
console.log('Cancel clicked');
}
diff --git a/src/pages/sales_pd/providers/camera/camera.ts b/src/pages/sales_pd/providers/camera/camera.ts
index 6745522..1ed4208 100755
--- a/src/pages/sales_pd/providers/camera/camera.ts
+++ b/src/pages/sales_pd/providers/camera/camera.ts
@@ -6,6 +6,7 @@ import {Geolocation} from '@ionic-native/geolocation'
import { DatePipe } from '@angular/common';
import * as watermark from 'watermarkjs'
import { LocationAccuracy } from '@ionic-native/location-accuracy';
+import { AndroidPermissions } from '@ionic-native/android-permissions';
/*
Generated class for the CameraProvider provider.
@@ -18,7 +19,7 @@ export class CameraProvider {
geoCords: any;
pipe: DatePipe;
- constructor(public http: HttpClient,private camera:Camera,private geo:Geolocation,private locationAccuracy:LocationAccuracy) {
+ constructor(public http: HttpClient,private camera:Camera,private geo:Geolocation,private locationAccuracy:LocationAccuracy,private androidPermissions:AndroidPermissions) {
console.log('Hello CameraProvider Provider');
this.pipe=new DatePipe('en-US')
}
@@ -55,7 +56,7 @@ export class CameraProvider {
const options = {
quality: 75,
destinationType: this.camera.DestinationType.DATA_URL,
- targetWidth: 500,
+ targetWidth: 600,
targetHeight: 600,
correctOrientation: true,
encodingType: this.camera.EncodingType.PNG,
@@ -150,5 +151,56 @@ export class CameraProvider {
return curr_pos
}).catch(err=>console.log("error in getGeoTag",err))
}
+ //Check if application having GPS access permission
+ checkGPSPermission() {
+ return this.androidPermissions.checkPermission(this.androidPermissions.PERMISSION.ACCESS_COARSE_LOCATION).then(
+ result => {
+ if (result.hasPermission) {
+
+ //If having permission show 'Turn On GPS' dialogue
+ return this.askToTurnOnGPS();
+ } else {
+
+ //If not having permission ask for permission
+ return this.requestGPSPermission();
+ }
+ },
+ err => {
+ alert(err);
+ }
+ );
+ }
+ requestGPSPermission() {
+ return this.locationAccuracy.canRequest().then((canRequest: boolean) => {
+ if (canRequest) {
+ console.log("4");
+ } else {
+ //Show 'GPS Permission Request' dialogue
+ this.androidPermissions.requestPermission(this.androidPermissions.PERMISSION.ACCESS_COARSE_LOCATION)
+ .then(
+ () => {
+ // call method to turn on GPS
+ return this.askToTurnOnGPS();
+ },
+ error => {
+ //Show alert if user click on 'No Thanks'
+ alert('requestPermission Error requesting location permissions ' + error)
+ }
+ );
+ }
+ });
+ }
+ askToTurnOnGPS() {
+ return this.locationAccuracy.request(this.locationAccuracy.REQUEST_PRIORITY_HIGH_ACCURACY).then(
+ () => {
+ // When GPS Turned ON call method to get Accurate location coordinates
+ return this.getGeoTag().then(geoCords=>{
+ return geoCords
+ })
+ },
+ error => alert('Error requesting location permissions ' + JSON.stringify(error))
+ );
+ }
+
}
diff --git a/src/pages/sales_pd/providers/sales-pd/sales-pd.ts b/src/pages/sales_pd/providers/sales-pd/sales-pd.ts
index 1e1f5d1..89ece15 100755
--- a/src/pages/sales_pd/providers/sales-pd/sales-pd.ts
+++ b/src/pages/sales_pd/providers/sales-pd/sales-pd.ts
@@ -5,6 +5,7 @@ import { catchError } from 'rxjs/operators';
import { Storage } from '@ionic/storage';
import { AwsServiceProvider } from '../../../../providers/aws-service/aws-service';
import { Observable, Observer } from 'rxjs';
+import { CameraProvider } from '../camera/camera';
// import {environment} from '../../../../providers/constants/constants'
/*
@@ -21,7 +22,7 @@ apiUrl:string;
available_sections:any;
original_rawData:any;
current_section:any;
- constructor(public http: HttpClient,private constantProvider:ConstantsProvider,private storage:Storage,private aws:AwsServiceProvider) {
+ constructor(public http: HttpClient,private constantProvider:ConstantsProvider,private storage:Storage,private aws:AwsServiceProvider,private cameraService:CameraProvider) {
console.log('Hello SalesPdProvider Provider');
this.apiUrl=this.constantProvider.environment().url
}
@@ -51,6 +52,20 @@ current_section:any;
})
})
}
+ saveSalesPDSection(params){
+ let users:any=localStorage.getItem('user_details')
+ users=JSON.parse(users)
+ params.fk_createdby=users.userid
+ return Observable.create((observer:Observer
)=>{
+ this.getData_fromLocal('sales_pd_id_PRIMARYKEY').then(key_value=>{
+ params.sales_pd_id=key_value
+ return this.http.post(this.apiUrl+'saveSalesPDsection',{records:params}).pipe().subscribe(response=>{
+ observer.next(response)
+ observer.complete()
+ })
+ })
+ })
+ }
api_post_method(api_name:string,params,api_method?){
if(api_method.toUpperCase() == 'POST'){
@@ -124,18 +139,23 @@ current_section:any;
saveSalesPDImage(params): Observable{
return Observable.create((observer:Observer) => {
this.getData_fromLocal('sales_pd_id_PRIMARYKEY').then(key_value=>{
+ this.cameraService.getGeoTag().then(geoCords=>{
+ params.location=geoCords
params.fk_sales_pd_id=key_value,
this.http.post(this.apiUrl+'saveSalesPDImage',{records:params}).pipe().subscribe(result => {
observer.next(result);
observer.complete();
})
})
+ })
})
}
getSalesPdpdf(pdfdetail): Observable {
- return this.http.get(this.apiUrl + "downloadSalesPDReport/" + pdfdetail)
-
+ return this.http.get(this.apiUrl + "downloadSalesPDReport/" + pdfdetail)
+ }
+ getSalesPDSectionData(params){
+ return this.http.post(this.apiUrl+'getSalesPDSectionData',{records:params})
}
}
diff --git a/src/providers/_guard/req-token.interceptor.ts b/src/providers/_guard/req-token.interceptor.ts
index 98430f5..848d06a 100755
--- a/src/providers/_guard/req-token.interceptor.ts
+++ b/src/providers/_guard/req-token.interceptor.ts
@@ -10,7 +10,7 @@ import {
HttpUserEvent
} from '@angular/common/http';
// import { AuthGuard } from './auth.guard';
-import { Observable, of, BehaviorSubject, throwError} from 'rxjs';
+import { Observable, BehaviorSubject, throwError} from 'rxjs';
// import { Router } from '@angular/router';
@@ -151,7 +151,7 @@ intercept(req: HttpRequest, next: HttpHandler): Observable (operation = 'operation', error?: HttpErrorResponse) {
+private handleError (operation = 'operation', error?: HttpErrorResponse) {
// return (error: any): Observable => {
// if(error instanceof HttpErrorResponse){
console.log("Error: " ,error);
diff --git a/www/assets/fonts/ionicons.eot b/www/assets/fonts/ionicons.eot
deleted file mode 100644
index 94ba2be..0000000
Binary files a/www/assets/fonts/ionicons.eot and /dev/null differ
diff --git a/www/assets/fonts/ionicons.scss b/www/assets/fonts/ionicons.scss
deleted file mode 100644
index 436a309..0000000
--- a/www/assets/fonts/ionicons.scss
+++ /dev/null
@@ -1,50 +0,0 @@
-
-// Ionicons Icon Font CSS
-// --------------------------
-// Ionicons CSS for Ionic's element
-// ionicons-icons.scss has the icons and their unicode characters
-
-$ionicons-font-path: $font-path !default;
-
-@import "ionicons-icons";
-@import "ionicons-variables";
-
-
-@font-face {
- font-family: "Ionicons";
- src: url("#{$ionicons-font-path}/ionicons.woff2?v=#{$ionicons-version}") format("woff2"),
- url("#{$ionicons-font-path}/ionicons.woff?v=#{$ionicons-version}") format("woff"),
- url("#{$ionicons-font-path}/ionicons.ttf?v=#{$ionicons-version}") format("truetype");
- font-weight: normal;
- font-style: normal;
-}
-
-ion-icon {
- display: inline-block;
-
- font-family: "Ionicons";
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- font-style: normal;
- font-variant: normal;
- font-weight: normal;
- line-height: 1;
- text-rendering: auto;
- text-transform: none;
- speak: none;
-
- @include rtl() {
- &[aria-label^="arrow"]::before,
- &[flip-rtl]::before {
- transform: scaleX(-1);
- }
-
- &[unflip-rtl]::before {
- transform: scaleX(1);
- }
- }
-
- &::before {
- display: inline-block;
- }
-}
diff --git a/www/assets/fonts/ionicons.svg b/www/assets/fonts/ionicons.svg
deleted file mode 100644
index 908c39b..0000000
--- a/www/assets/fonts/ionicons.svg
+++ /dev/null
@@ -1,2630 +0,0 @@
-
-
-
-
diff --git a/www/assets/fonts/ionicons.ttf b/www/assets/fonts/ionicons.ttf
deleted file mode 100644
index 307ad88..0000000
Binary files a/www/assets/fonts/ionicons.ttf and /dev/null differ
diff --git a/www/assets/fonts/noto-sans-bold.ttf b/www/assets/fonts/noto-sans-bold.ttf
deleted file mode 100644
index 6e00cdc..0000000
Binary files a/www/assets/fonts/noto-sans-bold.ttf and /dev/null differ
diff --git a/www/assets/fonts/noto-sans-bold.woff b/www/assets/fonts/noto-sans-bold.woff
deleted file mode 100644
index 6a67f6e..0000000
Binary files a/www/assets/fonts/noto-sans-bold.woff and /dev/null differ
diff --git a/www/assets/fonts/noto-sans-regular.ttf b/www/assets/fonts/noto-sans-regular.ttf
deleted file mode 100644
index 9dd1019..0000000
Binary files a/www/assets/fonts/noto-sans-regular.ttf and /dev/null differ
diff --git a/www/assets/fonts/noto-sans-regular.woff b/www/assets/fonts/noto-sans-regular.woff
deleted file mode 100644
index 8245f8b..0000000
Binary files a/www/assets/fonts/noto-sans-regular.woff and /dev/null differ
diff --git a/www/assets/fonts/noto-sans.scss b/www/assets/fonts/noto-sans.scss
deleted file mode 100644
index cb8602d..0000000
--- a/www/assets/fonts/noto-sans.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-// Noto Sans Font
-// Google
-// Apache License, version 2.0
-// http://www.apache.org/licenses/LICENSE-2.0.html
-
-$noto-sans-font-path: $font-path !default;
-
-@font-face {
- font-family: "Noto Sans";
- font-style: normal;
- font-weight: 300;
- src: local("Noto Sans"), local("Noto-Sans-Regular"), url("#{$noto-sans-font-path}/noto-sans-regular.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-regular.ttf") format("truetype");
-}
-
-@font-face {
- font-family: "Noto Sans";
- font-style: normal;
- font-weight: 400;
- src: local("Noto Sans"), local("Noto-Sans-Regular"), url("#{$noto-sans-font-path}/noto-sans-regular.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-regular.ttf") format("truetype");
-}
-
-@font-face {
- font-family: "Noto Sans";
- font-style: normal;
- font-weight: 500;
- src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("#{$noto-sans-font-path}/noto-sans-bold.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-bold.ttf") format("truetype");
-}
-
-@font-face {
- font-family: "Noto Sans";
- font-style: normal;
- font-weight: 700;
- src: local("Noto Sans Bold"), local("Noto-Sans-Bold"), url("#{$noto-sans-font-path}/noto-sans-bold.woff") format("woff"), url("#{$noto-sans-font-path}/noto-sans-bold.ttf") format("truetype");
-}
diff --git a/www/assets/fonts/roboto-bold.ttf b/www/assets/fonts/roboto-bold.ttf
deleted file mode 100644
index 4e35166..0000000
Binary files a/www/assets/fonts/roboto-bold.ttf and /dev/null differ
diff --git a/www/assets/fonts/roboto-bold.woff b/www/assets/fonts/roboto-bold.woff
deleted file mode 100644
index 3143de2..0000000
Binary files a/www/assets/fonts/roboto-bold.woff and /dev/null differ
diff --git a/www/assets/fonts/roboto-bold.woff2 b/www/assets/fonts/roboto-bold.woff2
deleted file mode 100644
index e9d591e..0000000
Binary files a/www/assets/fonts/roboto-bold.woff2 and /dev/null differ
diff --git a/www/assets/fonts/roboto-light.ttf b/www/assets/fonts/roboto-light.ttf
deleted file mode 100644
index 5e26ccd..0000000
Binary files a/www/assets/fonts/roboto-light.ttf and /dev/null differ
diff --git a/www/assets/fonts/roboto-light.woff b/www/assets/fonts/roboto-light.woff
deleted file mode 100644
index 1bff3ec..0000000
Binary files a/www/assets/fonts/roboto-light.woff and /dev/null differ
diff --git a/www/assets/fonts/roboto-light.woff2 b/www/assets/fonts/roboto-light.woff2
deleted file mode 100644
index 94a60b9..0000000
Binary files a/www/assets/fonts/roboto-light.woff2 and /dev/null differ
diff --git a/www/assets/fonts/roboto-medium.ttf b/www/assets/fonts/roboto-medium.ttf
deleted file mode 100644
index 0347106..0000000
Binary files a/www/assets/fonts/roboto-medium.ttf and /dev/null differ
diff --git a/www/assets/fonts/roboto-medium.woff b/www/assets/fonts/roboto-medium.woff
deleted file mode 100644
index d3c82e1..0000000
Binary files a/www/assets/fonts/roboto-medium.woff and /dev/null differ
diff --git a/www/assets/fonts/roboto-medium.woff2 b/www/assets/fonts/roboto-medium.woff2
deleted file mode 100644
index 74aaff4..0000000
Binary files a/www/assets/fonts/roboto-medium.woff2 and /dev/null differ
diff --git a/www/assets/fonts/roboto-regular.ttf b/www/assets/fonts/roboto-regular.ttf
deleted file mode 100644
index 05037ed..0000000
Binary files a/www/assets/fonts/roboto-regular.ttf and /dev/null differ
diff --git a/www/assets/fonts/roboto-regular.woff b/www/assets/fonts/roboto-regular.woff
deleted file mode 100644
index 5e353cf..0000000
Binary files a/www/assets/fonts/roboto-regular.woff and /dev/null differ
diff --git a/www/assets/fonts/roboto-regular.woff2 b/www/assets/fonts/roboto-regular.woff2
deleted file mode 100644
index 96a6015..0000000
Binary files a/www/assets/fonts/roboto-regular.woff2 and /dev/null differ
diff --git a/www/assets/fonts/roboto.scss b/www/assets/fonts/roboto.scss
deleted file mode 100644
index ea29707..0000000
--- a/www/assets/fonts/roboto.scss
+++ /dev/null
@@ -1,34 +0,0 @@
-// Roboto Font
-// Google
-// Apache License, version 2.0
-// http://www.apache.org/licenses/LICENSE-2.0.html
-
-$roboto-font-path: $font-path !default;
-
-@font-face {
- font-family: "Roboto";
- font-style: normal;
- font-weight: 300;
- src: local("Roboto Light"), local("Roboto-Light"), url("#{$roboto-font-path}/roboto-light.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-light.woff") format("woff"), url("#{$roboto-font-path}/roboto-light.ttf") format("truetype");
-}
-
-@font-face {
- font-family: "Roboto";
- font-style: normal;
- font-weight: 400;
- src: local("Roboto"), local("Roboto-Regular"), url("#{$roboto-font-path}/roboto-regular.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-regular.woff") format("woff"), url("#{$roboto-font-path}/roboto-regular.ttf") format("truetype");
-}
-
-@font-face {
- font-family: "Roboto";
- font-style: normal;
- font-weight: 500;
- src: local("Roboto Medium"), local("Roboto-Medium"), url("#{$roboto-font-path}/roboto-medium.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-medium.woff") format("woff"), url("#{$roboto-font-path}/roboto-medium.ttf") format("truetype");
-}
-
-@font-face {
- font-family: "Roboto";
- font-style: normal;
- font-weight: 700;
- src: local("Roboto Bold"), local("Roboto-Bold"), url("#{$roboto-font-path}/roboto-bold.woff2") format("woff2"), url("#{$roboto-font-path}/roboto-bold.woff") format("woff"), url("#{$roboto-font-path}/roboto-bold.ttf") format("truetype");
-}
diff --git a/www/build/0.js b/www/build/0.js
new file mode 100644
index 0000000..f58d08d
--- /dev/null
+++ b/www/build/0.js
@@ -0,0 +1 @@
+webpackJsonp([0],{524:function(a,_,c){"use strict";Object.defineProperty(_,"__esModule",{value:!0}),c.d(_,"HomePageModuleNgFactory",function(){return l_});var b=c(0),e=c(267),l=c(390),d=c(391),n=c(392),f=c(393),i=c(394),u=c(395),o=c(396),r=c(397),t=c(398),v=c(288),g=c(399),h=c(400),p=c(401),k=c(402),m=c(403),s=c(404),y=c(16),j=c(3),w=c(13),x=c(14),P=c(59),q=c(29),D=c(289),E=c(287),F=c(207),N=c(9),O=c(52),T=c(51),X=c(50),B=c(270),C=c(116),H=c(6),I=c(290),K=c(2),M=c(117),R=c(32),S=c(101),J=c(202),U=c(274),V=c(102),Y=c(163),z=c(275),A=c(205),G=c(204),L=c(280),Q=c(281),W=c(130),Z=c(10),$=c(47),aa=c(115),_a=c(103),ca=c(155),ba=c(156),ea=c(104),la=c(37),da=c(88),na=c(5),fa=c(33),ia=c(11),ua=c(158),oa=c(166),ra=c(157),ta=c(211),va=c(209),ga=c(12),ha=c(212),pa=c(87),ka=c(268),ma=c(66),sa=c(28),ya=c(38),ja=c(100),wa=c(132),xa=c(271),Pa=c(208),qa=c(36),Da=c(200),Ea=c(210),Fa=c(39),Na=c(67),Oa=c(133),Ta=c(272),Xa=c(61),Ba=c(160),Ca=c(162),Ha=c(203),Ia=c(161),Ka=c(273),Ma=c(40),Ra=c(81),Sa=c(276),Ja=c(164),Ua=c(134),Va=c(277),Ya=c(279),za=c(278),Aa=c(206),Ga=c(283),La=c(284),Qa=c(285),Wa=c(282),Za=c(286),$a=c(118),a_=c(269),__=c(201),c_=c(129),b_=c(165),e_=c(131),l_=b.Y(e.a,[],function(a){return b._12([b._13(512,b.i,b.U,[[8,[l.a,d.a,n.a,f.a,i.a,u.a,o.a,r.a,t.a,v.a,g.a,h.a,p.a,p.b,k.a,m.a,s.a,s.b,s.c,s.d,s.e,s.f,s.g,s.h,s.i,s.j]],[3,b.i],b.t]),b._13(6144,y.b,null,[j.c]),b._13(4608,y.c,y.c,[[2,y.b]]),b._13(5120,b.s,b._11,[[3,b.s]]),b._13(4608,j.l,j.k,[b.s,[2,j.u]]),b._13(4608,w.a,w.a,[]),b._13(4608,x.k,x.k,[w.a]),b._13(4608,x.j,x.j,[x.k,b.v,j.c]),b._13(136192,x.d,x.b,[[3,x.d],j.c]),b._13(5120,x.n,x.m,[[3,x.n],[2,x.l],j.c]),b._13(5120,x.i,x.g,[[3,x.i],b.v,w.a]),b._13(5120,P.c,P.d,[[3,P.c]]),b._13(5120,b.b,b._2,[]),b._13(5120,b.q,b._8,[]),b._13(5120,b.r,b._9,[]),b._13(4608,q.c,q.r,[j.c]),b._13(6144,b.E,null,[q.c]),b._13(4608,q.f,D.a,[]),b._13(5120,q.d,function(a,_,c,b,e){return[new q.k(a,_),new q.o(c),new q.n(b,e)]},[j.c,b.v,j.c,j.c,q.f]),b._13(4608,q.e,q.e,[q.d,b.v]),b._13(135680,q.m,q.m,[j.c]),b._13(4608,q.l,q.l,[q.e,q.m]),b._13(5120,E.a,F.d,[]),b._13(5120,E.c,F.e,[]),b._13(4608,E.b,F.c,[E.a,E.c]),b._13(5120,b.C,F.f,[q.l,E.b,b.v]),b._13(6144,q.p,null,[q.m]),b._13(4608,b.I,b.I,[b.v]),b._13(4608,q.h,q.h,[j.c]),b._13(4608,q.i,q.i,[j.c]),b._13(4608,N.B,N.B,[]),b._13(4608,N.f,N.f,[]),b._13(4608,O.b,F.b,[b.C,q.b]),b._13(5120,T.c,T.a,[[3,T.c],b.v,w.a]),b._13(5120,T.f,T.e,[[3,T.f],w.a,b.v]),b._13(4608,X.i,X.i,[T.c,T.f,b.v,j.c]),b._13(5120,X.e,X.j,[[3,X.e],j.c]),b._13(4608,X.h,X.h,[T.f,j.c]),b._13(5120,X.f,X.m,[[3,X.f],j.c]),b._13(4608,X.c,X.c,[X.i,X.e,b.i,X.h,X.f,b.f,b.p,b.v,j.c]),b._13(5120,X.k,X.l,[X.c]),b._13(5120,B.a,B.b,[X.c]),b._13(4608,C.b,C.b,[]),b._13(4608,H.d,H.d,[]),b._13(5120,j.g,I.c,[j.r,[2,j.a],K.a]),b._13(4608,j.f,j.f,[j.g]),b._13(5120,M.b,M.c,[X.c]),b._13(4608,M.d,M.d,[X.c,b.p,[2,j.f],[2,M.a],M.b,[3,M.d],X.e]),b._13(4608,R.l,R.l,[]),b._13(6144,R.k,null,[R.l]),b._13(4608,R.i,R.i,[R.k]),b._13(6144,R.b,null,[R.i]),b._13(4608,R.j,R.o,[j.c,b.x,R.m]),b._13(4608,R.p,R.p,[R.j,R.n]),b._13(5120,R.a,function(a){return[a]},[R.p]),b._13(5120,R.g,R.q,[R.b,[2,R.a]]),b._13(4608,R.c,R.c,[R.g]),b._13(5120,S.d,S.a,[[3,S.d],[2,R.c],q.c,[2,j.c]]),b._13(4608,J.g,J.g,[]),b._13(5120,J.a,J.b,[X.c]),b._13(5120,U.b,U.d,[X.c]),b._13(6144,H.g,null,[b.s]),b._13(4608,H.c,H.w,[[2,H.g]]),b._13(5120,V.a,V.b,[X.c]),b._13(5120,Y.b,Y.c,[X.c]),b._13(5120,z.b,z.a,[[3,z.b]]),b._13(4608,A.d,A.d,[w.a]),b._13(135680,A.a,A.a,[A.d,b.v]),b._13(4608,G.b,G.b,[X.c,x.n,b.p,A.a,[3,G.b]]),b._13(5120,L.b,L.a,[[3,L.b]]),b._13(4608,Q.a,Q.a,[]),b._13(5120,W.b,W.d,[Z.a,W.a]),b._13(5120,$.a,$.b,[Z.a,W.b,j.f,aa.b,b.i]),b._13(4608,_a.a,_a.a,[Z.a,K.a,$.a]),b._13(4608,ca.a,ca.a,[Z.a,K.a]),b._13(4608,ba.a,ba.a,[Z.a,K.a]),b._13(4608,ea.a,ea.a,[]),b._13(4608,la.a,la.a,[]),b._13(4608,da.a,da.a,[na.a]),b._13(4608,fa.a,fa.a,[K.a,na.a,b.v,ia.a]),b._13(4608,ua.a,ua.a,[Z.a,K.a]),b._13(4608,oa.a,oa.a,[Z.a,K.a,$.a]),b._13(4608,ra.a,ra.a,[Z.a,K.a]),b._13(4608,ta.a,ta.a,[Z.a,K.a,$.a]),b._13(4608,va.a,va.a,[K.a,na.a,ia.a,Z.a,ga.l]),b._13(4608,ha.a,ha.a,[Z.a,K.a]),b._13(4608,pa.a,pa.a,[na.a,K.a]),b._13(5120,ka.a,ka.c,[ka.b]),b._13(4608,ma.a,ma.a,[R.c,sa.a,ka.a,ya.a,ja.a]),b._13(4608,wa.a,wa.a,[R.c,N.f,ma.a]),b._13(512,y.a,y.a,[]),b._13(256,H.e,!0,[]),b._13(512,H.l,H.l,[[2,H.e]]),b._13(512,j.b,j.b,[]),b._13(512,w.b,w.b,[]),b._13(512,x.a,x.a,[]),b._13(512,xa.a,xa.a,[]),b._13(1024,b.l,q.q,[]),b._13(256,K.b,null,[]),b._13(1024,Pa.a,Pa.b,[]),b._13(1024,na.a,na.b,[q.b,Pa.a,b.v]),b._13(1024,K.a,K.c,[K.b,na.a]),b._13(512,ia.a,ia.a,[na.a]),b._13(512,qa.a,qa.a,[]),b._13(512,Z.a,Z.a,[K.a,na.a,[2,qa.a]]),b._13(512,ga.l,ga.l,[Z.a]),b._13(256,W.a,null,[]),b._13(512,b.h,b.h,[]),b._13(512,Da.a,Da.a,[b.h]),b._13(1024,aa.b,aa.c,[Da.a,b.p]),b._13(1024,b.c,function(a,_,c,b,e,l,d,n,f,i,u,o,r){return[q.t(a),Ea.a(_),ea.b(c,b),va.b(e,l,d,n,f),aa.d(i,u,o,r)]},[[2,b.u],K.a,na.a,ia.a,K.a,na.a,ia.a,Z.a,ga.l,K.a,W.a,aa.b,b.v]),b._13(512,b.d,b.d,[[2,b.c]]),b._13(131584,b.f,b.f,[b.v,b.V,b.p,b.l,b.i,b.d]),b._13(512,b.e,b.e,[b.f]),b._13(512,q.a,q.a,[[3,q.a]]),b._13(512,N.y,N.y,[]),b._13(512,N.l,N.l,[]),b._13(512,N.v,N.v,[]),b._13(512,I.a,I.a,[]),b._13(512,F.a,F.a,[]),b._13(512,H.v,H.v,[]),b._13(512,H.t,H.t,[]),b._13(512,H.r,H.r,[]),b._13(512,Fa.g,Fa.g,[]),b._13(512,T.b,T.b,[]),b._13(512,X.g,X.g,[]),b._13(512,B.c,B.c,[]),b._13(512,Na.f,Na.f,[]),b._13(512,C.c,C.c,[]),b._13(512,Oa.c,Oa.c,[]),b._13(512,Ta.a,Ta.a,[]),b._13(512,Xa.d,Xa.d,[]),b._13(512,M.f,M.f,[]),b._13(512,S.c,S.c,[]),b._13(512,J.h,J.h,[]),b._13(512,H.m,H.m,[]),b._13(512,Ba.a,Ba.a,[]),b._13(512,Ca.c,Ca.c,[]),b._13(512,Ha.c,Ha.c,[]),b._13(512,Ia.b,Ia.b,[]),b._13(512,Ka.a,Ka.a,[]),b._13(512,Ma.d,Ma.d,[]),b._13(512,Ra.b,Ra.b,[]),b._13(512,U.c,U.c,[]),b._13(512,H.x,H.x,[]),b._13(512,H.o,H.o,[]),b._13(512,V.d,V.d,[]),b._13(512,Y.d,Y.d,[]),b._13(512,z.c,z.c,[]),b._13(512,Sa.a,Sa.a,[]),b._13(512,Ja.b,Ja.b,[]),b._13(512,Ua.c,Ua.c,[]),b._13(512,Va.b,Va.b,[]),b._13(512,Ya.a,Ya.a,[]),b._13(512,za.a,za.a,[]),b._13(512,A.c,A.c,[]),b._13(512,G.d,G.d,[]),b._13(512,L.c,L.c,[]),b._13(512,Aa.k,Aa.k,[]),b._13(512,Ga.a,Ga.a,[]),b._13(512,La.a,La.a,[]),b._13(512,Qa.a,Qa.a,[]),b._13(512,Wa.d,Wa.d,[]),b._13(512,Q.b,Q.b,[]),b._13(512,R.e,R.e,[]),b._13(512,R.d,R.d,[]),b._13(512,Za.a,Za.a,[]),b._13(512,$a.b,$a.b,[]),b._13(512,a_.a,a_.a,[]),b._13(512,I.b,I.b,[]),b._13(512,__.a,__.a,[]),b._13(512,e.a,e.a,[]),b._13(256,j.a,"/",[]),b._13(256,R.m,"XSRF-TOKEN",[]),b._13(256,R.n,"X-XSRF-TOKEN",[]),b._13(256,U.a,{overlapTrigger:!0,xPosition:"after",yPosition:"below"},[]),b._13(256,H.f,H.i,[]),b._13(256,Y.a,{showDelay:0,hideDelay:0,touchendHideDelay:1500},[]),b._13(256,Va.a,!1,[]),b._13(256,c_.a,b_.a,[]),b._13(256,ka.b,null,[]),b._13(256,aa.a,e_.a,[])])})}});
\ No newline at end of file
diff --git a/www/build/1.js b/www/build/1.js
new file mode 100644
index 0000000..9bdcba3
--- /dev/null
+++ b/www/build/1.js
@@ -0,0 +1 @@
+webpackJsonp([1],{525:function(e,t,r){(function(t,r,a){!function(t,r){e.exports=r()}(0,function(){return function(e){function t(a){if(r[a])return r[a].exports;var i=r[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var r={};return t.m=e,t.c=r,t.d=function(e,r,a){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:a})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var a=Object.create(null);if(t.r(a),Object.defineProperty(a,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var i in e)t.d(a,i,function(t){return e[t]}.bind(null,i));return a},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,"a",r),r},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,r){"use strict";var a=r(1);t.WorkerMessageHandler=a.WorkerMessageHandler},function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.WorkerMessageHandler=t.WorkerTask=void 0;var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},i=function(){return function(e,t){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return function(e,t){var r=[],a=!0,i=!1,n=void 0;try{for(var o,s=e[Symbol.iterator]();!(a=(o=s.next()).done)&&(r.push(o.value),!t||r.length!==t);a=!0);}catch(e){i=!0,n=e}finally{try{!a&&s.return&&s.return()}finally{if(i)throw n}}return r}(e,t);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),n=r(2),o=r(130),s=function(e){return e&&e.__esModule?e:{default:e}}(r(5)),c=r(172),l=r(138),u=function(){function e(e){this.name=e,this.terminated=!1,this._capability=(0,n.createPromiseCapability)()}return e.prototype={get finished(){return this._capability.promise},finish:function(){this._capability.resolve()},terminate:function(){this.terminated=!0},ensureNotTerminated:function(){if(this.terminated)throw new Error("Worker task was terminated")}},e}(),h=function(){function e(e){this._msgHandler=e,this._contentLength=null,this._fullRequestReader=null,this._rangeRequestReaders=[]}function t(e){var t=this;this._msgHandler=e,this._contentLength=null,this._isRangeSupported=!1,this._isStreamingSupported=!1;var r=this._msgHandler.sendWithStream("GetReader");this._reader=r.getReader(),this._headersReady=this._msgHandler.sendWithPromise("ReaderHeadersReady").then(function(e){t._isStreamingSupported=e.isStreamingSupported,t._isRangeSupported=e.isRangeSupported,t._contentLength=e.contentLength})}function r(e,t,r){this._msgHandler=r,this.onProgress=null;var a=this._msgHandler.sendWithStream("GetRangeReader",{begin:e,end:t});this._reader=a.getReader()}return e.prototype={getFullReader:function(){return(0,n.assert)(!this._fullRequestReader),this._fullRequestReader=new t(this._msgHandler),this._fullRequestReader},getRangeReader:function(e,t){var a=new r(e,t,this._msgHandler);return this._rangeRequestReaders.push(a),a},cancelAllRequests:function(e){this._fullRequestReader&&this._fullRequestReader.cancel(e);this._rangeRequestReaders.slice(0).forEach(function(t){t.cancel(e)})}},t.prototype={get headersReady(){return this._headersReady},get contentLength(){return this._contentLength},get isStreamingSupported(){return this._isStreamingSupported},get isRangeSupported(){return this._isRangeSupported},read:function(){return this._reader.read().then(function(e){return e.done?{value:void 0,done:!0}:{value:e.value.buffer,done:!1}})},cancel:function(e){this._reader.cancel(e)}},r.prototype={get isStreamingSupported(){return!1},read:function(){return this._reader.read().then(function(e){return e.done?{value:void 0,done:!0}:{value:e.value.buffer,done:!1}})},cancel:function(e){this._reader.cancel(e)}},e}(),f={setup:function(e,t){var r=!1;e.on("test",function(t){if(!r)if(r=!0,t instanceof Uint8Array){var a=255===t[0];e.postMessageTransfers=a;var i=new XMLHttpRequest,n="response"in i;e.send("test",!!n&&{supportTypedArray:!0,supportTransfers:a})}else e.send("test",!1)}),e.on("configure",function(e){(0,n.setVerbosityLevel)(e.verbosity)}),e.on("GetDocRequest",function(e){return f.createDocumentHandler(e,t)})},createDocumentHandler:function(e,t){function r(){if(p)throw new Error("Worker was terminated")}function s(e){v.push(e)}function f(e){e.finish();var t=v.indexOf(e);v.splice(t,1)}function d(e){var t=(0,n.createPromiseCapability)(),r=function(){Promise.all([m.ensureDoc("numPages"),m.ensureDoc("fingerprint")]).then(function(e){var r=i(e,2);t.resolve({numPages:r[0],fingerprint:r[1]})},a)},a=function(e){t.reject(e)};return m.ensureDoc("checkHeader",[]).then(function(){m.ensureDoc("parseStartXRef",[]).then(function(){m.ensureDoc("parse",[e]).then(r,a)},a)},a),t.promise}function g(e,t){var a,i=(0,n.createPromiseCapability)(),s=e.source;if(s.data){try{a=new o.LocalPdfManager(w,s.data,s.password,t,k),i.resolve(a)}catch(e){i.reject(e)}return i.promise}var c,l=[];try{c=new h(C)}catch(e){return i.reject(e),i.promise}var u=c.getFullReader();u.headersReady.then(function(){if(u.isRangeSupported){a=new o.NetworkPdfManager(w,c,{msgHandler:C,url:s.url,password:s.password,length:u.contentLength,disableAutoFetch:s.disableAutoFetch||u.isStreamingSupported,rangeChunkSize:s.rangeChunkSize},t,k);for(var e=0;e=h.WARNINGS&&console.log("Warning: "+e)}function i(e){throw new Error(e)}function n(e,t){e||i(t)}function o(e){n("string"==typeof e,"Invalid argument for stringToBytes");for(var t=e.length,r=new Uint8Array(t),a=0;ae[2]&&(t[0]=e[2],t[2]=e[0]),e[1]>e[3]&&(t[1]=e[3],t[3]=e[1]),t},e.intersect=function(t,r){function a(e,t){return e-t}var i=[t[0],t[2],r[0],r[2]].sort(a),n=[t[1],t[3],r[1],r[3]].sort(a),o=[];return t=e.normalizeRect(t),r=e.normalizeRect(r),(i[0]===t[0]&&i[1]===r[0]||i[0]===r[0]&&i[1]===t[0])&&(o[0]=i[1],o[2]=i[2],(n[0]===t[1]&&n[1]===r[1]||n[0]===r[1]&&n[1]===t[1])&&(o[1]=n[1],o[3]=n[2],o))},e}(),x=["","C","CC","CCC","CD","D","DC","DCC","DCCC","CM","","X","XX","XXX","XL","L","LX","LXX","LXXX","XC","","I","II","III","IV","V","VI","VII","VIII","IX"],_=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,728,711,710,729,733,731,730,732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8226,8224,8225,8230,8212,8211,402,8260,8249,8250,8722,8240,8222,8220,8221,8216,8217,8218,8482,64257,64258,321,338,352,376,381,305,322,339,353,382,0,8364],A=function(){var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";return function(t,r){if(!(arguments.length>2&&void 0!==arguments[2]&&arguments[2])&&u.URL.createObjectURL){var a=new Blob([t],{type:r});return u.URL.createObjectURL(a)}for(var i="data:"+r+";base64,",n=0,o=t.length;n>2]+e[(3&s)<<4|c>>4]+e[n+1>6:64]+e[n+21&&void 0!==arguments[1]&&arguments[1];n(Number.isInteger(e)&&e>0,"The number should be a positive integer.");for(var r=void 0,a=[];e>=1e3;)e-=1e3,a.push("M");r=e/100|0,e%=100,a.push(x[r]),r=e/10|0,e%=10,a.push(x[10+r]),a.push(x[20+e]);var i=a.join("");return t?i.toLowerCase():i},t.XRefParseException=y,t.FormatError=w,t.arrayByteLength=s,t.arraysToBytes=function(e){if(1===e.length&&e[0]instanceof Uint8Array)return e[0];var t,r,a,i=0,n=e.length;for(t=0;t100){a('getInheritableProperty: maximum loop count exceeded for "'+r+'"');break}t=t.get("Parent")}return l},t.getLookupTableFactory=function(e){var t;return function(){return e&&(t=Object.create(null),e(t),e=null),t}},t.getVerbosityLevel=function(){return f},t.info=function(e){f>=h.INFOS&&console.log("Info: "+e)},t.isArrayBuffer=function(e){return"object"===(void 0===e?"undefined":c(e))&&null!==e&&void 0!==e.byteLength},t.isBool=function(e){return"boolean"==typeof e},t.isEmptyObj=function(e){for(var t in e)return!1;return!0},t.isNum=function(e){return"number"==typeof e},t.isString=function(e){return"string"==typeof e},t.isSpace=function(e){return 32===e||9===e||13===e||10===e},t.isSameOrigin=function(e,t){try{var r=new u.URL(e);if(!r.origin||"null"===r.origin)return!1}catch(e){return!1}var a=new u.URL(t,r);return r.origin===a.origin},t.createValidAbsoluteUrl=function(e,t){if(!e)return null;try{var r=t?new u.URL(e,t):new u.URL(e);if(function(e){if(!e)return!1;switch(e.protocol){case"http:":case"https:":case"ftp:":case"mailto:":case"tel:":return!0;default:return!1}}(r))return r}catch(e){}return null},t.isLittleEndian=function(){var e=new Uint8Array(4);return e[0]=1,1===new Uint32Array(e.buffer,0,1)[0]},t.isEvalSupported=function(){try{return new Function(""),!0}catch(e){return!1}},t.log2=function(e){return e<=0?0:Math.ceil(Math.log2(e))},t.readInt8=function(e,t){return e[t]<<24>>24},t.readUint16=function(e,t){return e[t]<<8|e[t+1]},t.readUint32=function(e,t){return(e[t]<<24|e[t+1]<<16|e[t+2]<<8|e[t+3])>>>0},t.removeNullCharacters=function(e){return"string"!=typeof e?(a("The argument for removeNullCharacters must be a string."),e):e.replace(S,"")},t.ReadableStream=l.ReadableStream,t.URL=u.URL,t.setVerbosityLevel=function(e){Number.isInteger(e)&&(f=e)},t.shadow=function(e,t,r){return Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!1}),r},t.string32=function(e){return String.fromCharCode(e>>24&255,e>>16&255,e>>8&255,255&e)},t.stringToBytes=o,t.stringToPDFString=function(e){var t,r=e.length,a=[];if("þ"===e[0]&&"ÿ"===e[1])for(t=2;t1){var r=!!arguments[1];return this[r?"add":"remove"](t),r}return e(t)}}}}(),String.prototype.includes||a(6),Array.prototype.includes||a(34),Object.assign||a(43),Math.log2||(Math.log2=a(53)),Number.isNaN||(Number.isNaN=a(55)),Number.isInteger||(Number.isInteger=a(57)),n.Promise||(n.Promise=a(60)),n.WeakMap||(n.WeakMap=a(95)),String.codePointAt||(String.codePointAt=a(112)),String.fromCodePoint||(String.fromCodePoint=a(114)),n.Symbol||a(116),Object.values||(Object.values=a(123))}},function(e,t,a){"use strict";e.exports="undefined"!=typeof window&&window.Math===Math?window:void 0!==r&&r.Math===Math?r:"undefined"!=typeof self&&self.Math===Math?self:{}},function(e,t,r){"use strict";var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};e.exports=function(){return"object"===(void 0===a?"undefined":i(a))&&a+""=="[object process]"}},function(e,t,r){"use strict";r(7),e.exports=r(10).String.includes},function(e,t,r){"use strict";var a=r(8),i=r(26);a(a.P+a.F*r(33)("includes"),"String",{includes:function(e){return!!~i(this,e,"includes").indexOf(e,arguments.length>1?arguments[1]:void 0)}})},function(e,t,r){"use strict";var a=r(9),i=r(10),n=r(11),o=r(21),s=r(24),c=function e(t,r,c){var l,u,h,f,d=t&e.F,g=t&e.G,m=t&e.P,p=t&e.B,b=g?a:t&e.S?a[r]||(a[r]={}):(a[r]||{}).prototype,v=g?i:i[r]||(i[r]={}),y=v.prototype||(v.prototype={});g&&(c=r);for(l in c)h=((u=!d&&b&&void 0!==b[l])?b:c)[l],f=p&&u?s(h,a):m&&"function"==typeof h?s(Function.call,h):h,b&&o(b,l,h,t&e.U),v[l]!=h&&n(v,l,f),m&&y[l]!=h&&(y[l]=h)};a.core=i,c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t,r){"use strict";var a=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=a)},function(e,t,r){"use strict";var a=e.exports={version:"2.5.7"};"number"==typeof __e&&(__e=a)},function(e,t,r){"use strict";var a=r(12),i=r(20);e.exports=r(16)?function(e,t,r){return a.f(e,t,i(1,r))}:function(e,t,r){return e[t]=r,e}},function(e,t,r){"use strict";var a=r(13),i=r(15),n=r(19),o=Object.defineProperty;t.f=r(16)?Object.defineProperty:function(e,t,r){if(a(e),t=n(t,!0),a(r),i)try{return o(e,t,r)}catch(e){}if("get"in r||"set"in r)throw TypeError("Accessors not supported!");return"value"in r&&(e[t]=r.value),e}},function(e,t,r){"use strict";var a=r(14);e.exports=function(e){if(!a(e))throw TypeError(e+" is not an object!");return e}},function(e,t,r){"use strict";var a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};e.exports=function(e){return"object"===(void 0===e?"undefined":a(e))?null!==e:"function"==typeof e}},function(e,t,r){"use strict";e.exports=!r(16)&&!r(17)(function(){return 7!=Object.defineProperty(r(18)("div"),"a",{get:function(){return 7}}).a})},function(e,t,r){"use strict";e.exports=!r(17)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t,r){"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t,r){"use strict";var a=r(14),i=r(9).document,n=a(i)&&a(i.createElement);e.exports=function(e){return n?i.createElement(e):{}}},function(e,t,r){"use strict";var a=r(14);e.exports=function(e,t){if(!a(e))return e;var r,i;if(t&&"function"==typeof(r=e.toString)&&!a(i=r.call(e)))return i;if("function"==typeof(r=e.valueOf)&&!a(i=r.call(e)))return i;if(!t&&"function"==typeof(r=e.toString)&&!a(i=r.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},function(e,t,r){"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t,r){"use strict";var a=r(9),i=r(11),n=r(22),o=r(23)("src"),s=Function.toString,c=(""+s).split("toString");r(10).inspectSource=function(e){return s.call(e)},(e.exports=function(e,t,r,s){var l="function"==typeof r;l&&(n(r,"name")||i(r,"name",t)),e[t]!==r&&(l&&(n(r,o)||i(r,o,e[t]?""+e[t]:c.join(String(t)))),e===a?e[t]=r:s?e[t]?e[t]=r:i(e,t,r):(delete e[t],i(e,t,r)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[o]||s.call(this)})},function(e,t,r){"use strict";var a={}.hasOwnProperty;e.exports=function(e,t){return a.call(e,t)}},function(e,t,r){"use strict";var a=0,i=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++a+i).toString(36))}},function(e,t,r){"use strict";var a=r(25);e.exports=function(e,t,r){if(a(e),void 0===t)return e;switch(r){case 1:return function(r){return e.call(t,r)};case 2:return function(r,a){return e.call(t,r,a)};case 3:return function(r,a,i){return e.call(t,r,a,i)}}return function(){return e.apply(t,arguments)}}},function(e,t,r){"use strict";e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t,r){"use strict";var a=r(27),i=r(32);e.exports=function(e,t,r){if(a(t))throw TypeError("String#"+r+" doesn't accept regex!");return String(i(e))}},function(e,t,r){"use strict";var a=r(14),i=r(28),n=r(29)("match");e.exports=function(e){var t;return a(e)&&(void 0!==(t=e[n])?!!t:"RegExp"==i(e))}},function(e,t,r){"use strict";var a={}.toString;e.exports=function(e){return a.call(e).slice(8,-1)}},function(e,t,r){"use strict";var a=r(30)("wks"),i=r(23),n=r(9).Symbol,o="function"==typeof n;(e.exports=function(e){return a[e]||(a[e]=o&&n[e]||(o?n:i)("Symbol."+e))}).store=a},function(e,t,r){"use strict";var a=r(10),i=r(9),n="__core-js_shared__",o=i[n]||(i[n]={});(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:a.version,mode:r(31)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(e,t,r){"use strict";e.exports=!1},function(e,t,r){"use strict";e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t,r){"use strict";var a=r(29)("match");e.exports=function(e){var t=/./;try{"/./"[e](t)}catch(r){try{return t[a]=!1,!"/./"[e](t)}catch(e){}}return!0}},function(e,t,r){"use strict";r(35),e.exports=r(10).Array.includes},function(e,t,r){"use strict";var a=r(8),i=r(36)(!0);a(a.P,"Array",{includes:function(e){return i(this,e,arguments.length>1?arguments[1]:void 0)}}),r(42)("includes")},function(e,t,r){"use strict";var a=r(37),i=r(39),n=r(41);e.exports=function(e){return function(t,r,o){var s,c=a(t),l=i(c.length),u=n(o,l);if(e&&r!=r){for(;l>u;)if((s=c[u++])!=s)return!0}else for(;l>u;u++)if((e||u in c)&&c[u]===r)return e||u||0;return!e&&-1}}},function(e,t,r){"use strict";var a=r(38),i=r(32);e.exports=function(e){return a(i(e))}},function(e,t,r){"use strict";var a=r(28);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==a(e)?e.split(""):Object(e)}},function(e,t,r){"use strict";var a=r(40),i=Math.min;e.exports=function(e){return e>0?i(a(e),9007199254740991):0}},function(e,t,r){"use strict";var a=Math.ceil,i=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?i:a)(e)}},function(e,t,r){"use strict";var a=r(40),i=Math.max,n=Math.min;e.exports=function(e,t){return(e=a(e))<0?i(e+t,0):n(e,t)}},function(e,t,r){"use strict";var a=r(29)("unscopables"),i=Array.prototype;void 0==i[a]&&r(11)(i,a,{}),e.exports=function(e){i[a][e]=!0}},function(e,t,r){"use strict";r(44),e.exports=r(10).Object.assign},function(e,t,r){"use strict";var a=r(8);a(a.S+a.F,"Object",{assign:r(45)})},function(e,t,r){"use strict";var a=r(46),i=r(50),n=r(51),o=r(52),s=r(38),c=Object.assign;e.exports=!c||r(17)(function(){var e={},t={},r=Symbol(),a="abcdefghijklmnopqrst";return e[r]=7,a.split("").forEach(function(e){t[e]=e}),7!=c({},e)[r]||Object.keys(c({},t)).join("")!=a})?function(e,t){for(var r=o(e),c=arguments.length,l=1,u=i.f,h=n.f;c>l;)for(var f,d=s(arguments[l++]),g=u?a(d).concat(u(d)):a(d),m=g.length,p=0;m>p;)h.call(d,f=g[p++])&&(r[f]=d[f]);return r}:c},function(e,t,r){"use strict";var a=r(47),i=r(49);e.exports=Object.keys||function(e){return a(e,i)}},function(e,t,r){"use strict";var a=r(22),i=r(37),n=r(36)(!1),o=r(48)("IE_PROTO");e.exports=function(e,t){var r,s=i(e),c=0,l=[];for(r in s)r!=o&&a(s,r)&&l.push(r);for(;t.length>c;)a(s,r=t[c++])&&(~n(l,r)||l.push(r));return l}},function(e,t,r){"use strict";var a=r(30)("keys"),i=r(23);e.exports=function(e){return a[e]||(a[e]=i(e))}},function(e,t,r){"use strict";e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t,r){"use strict";t.f=Object.getOwnPropertySymbols},function(e,t,r){"use strict";t.f={}.propertyIsEnumerable},function(e,t,r){"use strict";var a=r(32);e.exports=function(e){return Object(a(e))}},function(e,t,r){"use strict";r(54),e.exports=r(10).Math.log2},function(e,t,r){"use strict";var a=r(8);a(a.S,"Math",{log2:function(e){return Math.log(e)/Math.LN2}})},function(e,t,r){"use strict";r(56),e.exports=r(10).Number.isNaN},function(e,t,r){"use strict";var a=r(8);a(a.S,"Number",{isNaN:function(e){return e!=e}})},function(e,t,r){"use strict";r(58),e.exports=r(10).Number.isInteger},function(e,t,r){"use strict";var a=r(8);a(a.S,"Number",{isInteger:r(59)})},function(e,t,r){"use strict";var a=r(14),i=Math.floor;e.exports=function(e){return!a(e)&&isFinite(e)&&i(e)===e}},function(e,t,r){"use strict";r(61),r(63),r(73),r(76),r(93),r(94),e.exports=r(10).Promise},function(e,t,r){"use strict";var a=r(62),i={};i[r(29)("toStringTag")]="z",i+""!="[object z]"&&r(21)(Object.prototype,"toString",function(){return"[object "+a(this)+"]"},!0)},function(e,t,r){"use strict";var a=r(28),i=r(29)("toStringTag"),n="Arguments"==a(function(){return arguments}());e.exports=function(e){var t,r,o;return void 0===e?"Undefined":null===e?"Null":"string"==typeof(r=function(e,t){try{return e[t]}catch(e){}}(t=Object(e),i))?r:n?a(t):"Object"==(o=a(t))&&"function"==typeof t.callee?"Arguments":o}},function(e,t,r){"use strict";var a=r(64)(!0);r(65)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,r=this._i;return r>=t.length?{value:void 0,done:!0}:(e=a(t,r),this._i+=e.length,{value:e,done:!1})})},function(e,t,r){"use strict";var a=r(40),i=r(32);e.exports=function(e){return function(t,r){var n,o,s=String(i(t)),c=a(r),l=s.length;return c<0||c>=l?e?"":void 0:(n=s.charCodeAt(c))<55296||n>56319||c+1===l||(o=s.charCodeAt(c+1))<56320||o>57343?e?s.charAt(c):n:e?s.slice(c,c+2):o-56320+(n-55296<<10)+65536}}},function(e,t,r){"use strict";var a=r(31),i=r(8),n=r(21),o=r(11),s=r(66),c=r(67),l=r(71),u=r(72),h=r(29)("iterator"),f=!([].keys&&"next"in[].keys()),d=function(){return this};e.exports=function(e,t,r,g,m,p,b){c(r,t,g);var v,y,w,k=function(e){if(!f&&e in _)return _[e];switch(e){case"keys":case"values":return function(){return new r(this,e)}}return function(){return new r(this,e)}},S=t+" Iterator",C="values"==m,x=!1,_=e.prototype,A=_[h]||_["@@iterator"]||m&&_[m],P=A||k(m),I=m?C?k("entries"):P:void 0,O="Array"==t?_.entries||A:A;if(O&&(w=u(O.call(new e)))!==Object.prototype&&w.next&&(l(w,S,!0),a||"function"==typeof w[h]||o(w,h,d)),C&&A&&"values"!==A.name&&(x=!0,P=function(){return A.call(this)}),a&&!b||!f&&!x&&_[h]||o(_,h,P),s[t]=P,s[S]=d,m)if(v={values:C?P:k("values"),keys:p?P:k("keys"),entries:I},b)for(y in v)y in _||n(_,y,v[y]);else i(i.P+i.F*(f||x),t,v);return v}},function(e,t,r){"use strict";e.exports={}},function(e,t,r){"use strict";var a=r(68),i=r(20),n=r(71),o={};r(11)(o,r(29)("iterator"),function(){return this}),e.exports=function(e,t,r){e.prototype=a(o,{next:i(1,r)}),n(e,t+" Iterator")}},function(e,t,r){"use strict";var a=r(13),i=r(69),n=r(49),o=r(48)("IE_PROTO"),s=function(){},c=function(){var e,t=r(18)("iframe"),a=n.length;for(t.style.display="none",r(70).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("